/* Paleta de Cores Premium */
:root {
    --primary-color: #0f172a;
    /* Azul Navy (Títulos e Cards) */
    --secondary-color: #334155;
    /* Texto Secundário */
    --accent-color: #c5a059;
    /* Dourado Premium */
    --accent-hover: #b08d4b;
    --text-color: #334155;
    /* Texto Geral Escuro */
    --bg-light: #ffffff;
    /* Fundo Principal Claro */
    --bg-offwhite: #f8fafc;
    /* Fundo Secundário Claro */
    --card-bg: #0f172a;
    /* Fundo dos Cards (Azul Marinho) */
    --success-color: #25d366;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    /* Fundo Claro de volta */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #0f172a;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.large-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.full-width {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header */
.header {
    background-color: var(--bg-light);
    /* Header Branco */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    /* Padding reduzido para compensar logo maior */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 120px;
    /* Logo Aumentada conforme solicitado */
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
    /* Links escuros */
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.social-icon-header {
    font-size: 1.3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.social-icon-header:hover {
    color: var(--accent-color) !important;
}

.btn-cta-header {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cta-header:hover {
    background-color: var(--primary-color);
    color: var(--bg-light) !important;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('img/office_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Quem Somos */
.quem-somos {
    background-color: var(--bg-light);
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.quem-somos-text p {
    margin-bottom: 15px;
    text-align: justify;
    color: var(--text-color);
}

.quem-somos-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--accent-color);
}

/* Missão, Visão, Valores */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARDS MVV AZUL MARINHO (SOLICITADO) */
.mvv-card {
    background-color: var(--card-bg);
    /* Azul Marinho */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    /* Texto Branco */
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.mvv-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    /* Título Branco */
}

.mvv-card p,
.valores-list li {
    font-size: 0.95rem;
    color: #e2e8f0;
    /* Texto Claro */
}

.valores-list {
    text-align: left;
    padding-left: 15px;
}

.valores-list li {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* Áreas de Atuação */
.atuacao {
    background-color: var(--bg-offwhite);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* CARDS AZUL MARINHO (SOLICITADO) */
.area-card {
    background-color: var(--card-bg);
    /* Azul Marinho */
    color: #ffffff;
    /* Texto Branco */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    /* Alinhamento à esquerda para listas */
    display: flex;
    flex-direction: column;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.area-header {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    
    /* MODIFICAÇÃO ESSENCIAL */
    height: 120px; /* Defina uma altura fixa que caiba a maioria dos ícones e títulos curtos */
    /* FIM DA MODIFICAÇÃO */
}

.area-header i,
.area-header img {
    font-size: 2rem;
    color: var(--accent-color);
    width: 40px;
    height: auto;
}

.area-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: #ffffff;
    /* Título Branco */
    flex-shrink: 1;
}

.area-body {
    padding: 25px;
    flex-grow: 1;
}

.area-body p {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--accent-color);
    /* Destaque Dourado */
}

.area-body ul {
    padding-left: 20px;
}

.area-body li {
    list-style-type: disc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #e2e8f0;
    /* Texto da lista claro */
}

/* Depoimentos */
.depoimentos {
    background-color: var(--bg-light);
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.depoimento-card {
    background-color: var(--bg-offwhite);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    text-align: left;
}

.depoimento-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #475569;
}

.depoimento-card cite {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
    display: block;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
    justify-content: center;
}

.g-icon {
    font-size: 1.8rem;
    color: #4285F4;
}

.rating-score {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}

.total-reviews {
    font-size: 0.9rem;
    color: #64748b;
}

/* Contato */
.contato {
    background-color: var(--bg-offwhite);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contato-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: #475569;
}

.cta-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-box p {
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-color);
}

.cta-box .btn-primary {
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 10px;
}

.logo-img-footer {
    height: 150px;
    width: auto;
    filter: brightness(1) invert(1);
}

.footer-contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #cbd5e1;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-right: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.developer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.developer-credit a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsividade */
@media (max-width: 992px) {

    .quem-somos-grid,
    .contato-wrapper {
        grid-template-columns: 1fr;
    }

    .quem-somos-img,
    .contato-img {
        order: -1;
        max-height: 400px;
        overflow: hidden;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        margin-top: 20px;
        background-color: var(--bg-light);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}