/* 
   Auditoria Financeira - Estilos Principais
   Paleta de cores:
   - Btrúquiz: #004F5D (principal)
   - Areia: #F0E5D8 (secundário)  
   - Fúcsia: #DA2079 (acento)
   - Amarelo-dourado: #F2B134 (acento)
   - Cinza-fumaça: #4F4F4F (acento)
   - Texto: #111111 (preto) ou #FFFFFF (branco em fundos escuros)
*/

/* Reset e Estilos Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #111111;
    background-color: #FFFFFF;
}

section[id] {
    scroll-margin-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #004F5D;
    transition: color 0.3s ease;
}

a:hover {
    color: #DA2079;
}

ul, ol {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #004F5D;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #DA2079;
    margin: 1rem auto;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #DA2079;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #b81865;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #F2B134;
    color: #111111;
}

.btn-secondary:hover {
    background-color: #e09f21;
    color: #111111;
}

.btn-outline {
    background-color: transparent;
    color: #004F5D;
    border: 2px solid #004F5D;
}

.btn-outline:hover {
    background-color: #004F5D;
    color: #FFFFFF;
}

/* Header e Navegação */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #004F5D;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 9px;
}

.menu-icon span:last-child {
    bottom: 0;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    font-weight: 600;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../img/Db4M8.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 79, 93, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    animation: fadeIn 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.sobre-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Vantagens Section */
.vantagens {
    padding: 5rem 0;
    background-color: #F0E5D8;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vantagem-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.vantagem-card:hover {
    transform: translateY(-5px);
}

.vantagem-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0E5D8;
    color: #004F5D;
    border-radius: 50%;
}

/* Serviços Section */
.servicos {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servico-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
}

.servico-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servico-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}
.policy-header{
    margin-top: 5.7rem;
}
.servico-card p {
    padding: 0 1.5rem 1.5rem;
}

.servico-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* Contato Section (Formulário) */
.contato {
    padding: 5rem 0;
    background-color: #004F5D;
    color: #FFFFFF;
}

.contato h2 {
    color: #FFFFFF;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #004F5D;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    color: #111111;
}

/* Depoimentos Section */
.depoimentos {
    padding: 5rem 0;
    background-color: #F0E5D8;
}

.depoimentos-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.depoimento {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.depoimento-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.depoimento-content::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: #F0E5D8;
    line-height: 1;
    font-family: Georgia, serif;
}

.depoimento-author {
    margin-top: 1rem;
}

.depoimento-author strong {
    display: block;
    color: #004F5D;
}

.depoimento-author span {
    font-size: 0.875rem;
    color: #4F4F4F;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #F0E5D8;
    color: #004F5D;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #FFFFFF;
}

.faq-answer p {
    padding: 1.5rem;
}

.faq-toggle:checked + .faq-question::after {
    content: '-';
}

.faq-toggle:checked + .faq-question {
    background-color: #004F5D;
    color: #FFFFFF;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

/* Localização Section */
.localizacao {
    padding: 5rem 0;
    background-color: #F0E5D8;
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mapa {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.mapa iframe {
    border-radius: 8px;
}

.contato-info ul {
    margin-bottom: 2rem;
}

.contato-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contato-info svg {
    flex-shrink: 0;
    color: #004F5D;
}

.horario h4 {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    padding: 5rem 0 2rem;
    background-color: #004F5D;
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #F2B134;
    margin-top: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #F0E5D8;
}

.footer-links a:hover {
    color: #F2B134;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #FFFFFF;
    padding: 1rem;
    z-index: 9999;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-content a {
    color: #F2B134;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .localizacao-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .menu-icon {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 80px 1.5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:last-child {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    
    .sobre-content,
    .depoimentos-slider {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .container {
        width: 95%;
    }
} 