/* =========================================
   VARIÁVEIS E RESET (TEMA ESCURO AZULADO)
========================================= */
:root {
    /* Paleta de Fundo (Azuis Profundos) */
    --bg-main: #061121;
    --bg-secondary: #0A192F;
    --bg-card: #112240;
    
    /* Cores de Destaque */
    --gold: #C5A059;
    --gold-hover: #b08d4b;
    --accent-blue: #2F6BFF;
    
    /* Textos */
    --text-title: #FFFFFF;
    --text-body: #A8B2D1;
    
    /* Tipografia */
    --font-title: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* teste */


html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

section[id] {
    scroll-margin-top: 130px;
}

body {
    font-family: var(--font-text);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* =========================================
   UTILITÁRIOS E TIPOGRAFIA
========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--text-title);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, a, li, span {
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.bg-light { background-color: var(--bg-secondary); }
.bg-dark-section { background-color: var(--bg-main); }

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-title);
}

.section-title.dark-text {
    color: var(--text-title);
}

.section-title span {
    color: var(--gold);
}

/* =========================================
   BOTÕES
========================================= */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    padding: 16px;
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-outline-bordo {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline-bordo:hover {
    background-color: var(--gold);
    color: #fff;
}

.btn-dark {
    background-color: var(--gold);
    color: #fff;
}

.btn-dark:hover {
    background-color: var(--gold-hover);
}

/* =========================================
   HEADER / NAVBAR
========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header.scrolled {
    background-color: var(--bg-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
    transition: var(--transition);
}

#header.scrolled .nav-container {
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    font-family: var(--font-title);
}

.logo-image {
    display: block;
    width: auto;
    height: 74px;
    object-fit: contain;
}

.footer-logo {
    display: block;
    width: min(100%, 340px);
    height: auto;
    margin-bottom: 14px;
    object-fit: contain;
}

.footer-monogram {
    width: 58px;
    height: 58px;
    object-fit: contain;
    opacity: 0.9;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-family: var(--font-text);
    color: var(--text-title);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-title);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/img/simbolo_da_justica_advogado.jpg');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #061121;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 17, 33, 0.85), rgba(10, 25, 47, 0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-title);
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-logo {
    width: min(100%, 482px);
    height: auto;
    object-fit: contain;
    margin: 0 auto 24px;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
}

.hero-kicker {
    font-family: var(--font-text);
    font-size: 1.1rem;
    color: var(--text-title);
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-family: var(--font-text);
    max-width: 520px;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-body);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* =========================================
   QUEM SOMOS
========================================= */
.quem-somos-watermark {
    background-color: #0A192F;
    background-image: url('assets/img/Marca_daagua.png');
    background-position: center center;
    background-repeat: no-repeat !important;
    background-size: contain;
    background-blend-mode: multiply;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 72px;
}

.quem-somos-watermark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(10, 25, 47, 0.7) 40%, rgba(10, 25, 47, 1) 100%);
    z-index: 1;
    opacity: 0.95;
}

.content-above {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-title);
}

.benefits-list i {
    color: var(--gold);
    font-size: 1.2rem;
}

.slide-in-right p {
    color: var(--text-body);
}

/* =========================================
   SOLUCOES
========================================= */
.solutions-layout {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.solutions-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: start;
}

.solutions-intro-main {
    max-width: 860px;
}

.solutions-eyebrow {
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.solutions-intro .section-title {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 4.4vw, 4rem);
    line-height: 1.08;
}

.solutions-lead {
    max-width: 920px;
    color: var(--text-title);
    font-size: 1.15rem;
    line-height: 1.78;
}

.solutions-cta {
    margin-top: 30px;
}

.solutions-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.solutions-note {
    padding: 30px 30px 28px;
    background: rgba(8, 21, 37, 0.52);
    border: 1px solid rgba(197, 160, 89, 0.16);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.solutions-note h3 {
    margin-bottom: 18px;
    font-family: var(--font-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.solutions-note p {
    margin: 0;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.solution-card {
    min-height: auto;
    padding: 32px 32px 28px;
    background: rgba(17, 34, 64, 0.92);
    border: 1px solid rgba(78, 114, 177, 0.22);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.solution-card h3 {
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 2vw, 2.15rem);
    line-height: 1.15;
}

.solution-card p {
    margin: 0 0 16px;
    color: var(--text-body);
    font-size: 0.96rem;
    line-height: 1.66;
}

.solution-card p:last-child {
    margin-bottom: 0;
}

.solution-card-featured {
    background: rgba(35, 45, 60, 0.94);
}

#metodo {
    padding-top: 72px;
}

/* =========================================
   ÁREAS DE ATUAÇÃO
========================================= */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.area-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-align: left;
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    transition: width 0.4s ease-in-out;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background-color: #142540;
    border-color: rgba(47, 107, 255, 0.15);
}

.area-card:hover::before {
    width: 100%;
}

.area-icon {
    width: 65px;
    height: 65px;
    background: rgba(47, 107, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.05);
}

.area-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-title);
    font-weight: 600;
}

.area-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   DIFERENCIAIS
========================================= */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.diff-card {
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-secondary);
}

.diff-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: var(--transition);
}

.diff-card h4 {
    font-size: 1.1rem;
    color: var(--text-title);
    margin-bottom: 10px;
}

.diff-card p {
    color: var(--text-body);
    font-size: 0.85rem;
}

/* =========================================
   EQUIPE DE ADVOGADOS (Design Premium 2 Sócios)
========================================= */
/* =========================================
   EQUIPE DE ADVOGADOS (Design Premium 2 Sócios)
========================================= */
.team-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Grid de duas colunas perfeitamente simétricas */
    gap: 60px; /* Gap grande e limpo para sofisticação */
    max-width: 900px; /* Mantém os cards num tamanho imponente, mas elegante */
    margin: 0 auto;
}

.team-card-premium {
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.team-card-premium:hover {
    transform: translateY(-10px);
}

.team-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    /* Força uma proporção de imagem vertical (Portrait) idêntica para ambos */
    aspect-ratio: 3 / 4; 
    /* Garante um fundo escuro e consistente se a foto não carregar */
    background-color: #0A192F; /* Azul profundo Navy do site */
}

.team-img-wrapper img {
    width: 100%;
    height: 100%; /* Fotos preenchem o wrapper mantendo o aspect-ratio */
    object-fit: cover; /* CRUCIAL: Preenche o espaço sem distorcer ou cortar a cabeça */
    filter: grayscale(80%); /* Ar corporativo sofisticado */
    transition: all 0.5s ease;
}

.team-card-premium:hover .team-img-wrapper img {
    filter: grayscale(0%); /* Revela as cores originais ao passar o mouse */
    transform: scale(1.03); /* Leve zoom */
}

/* Camada de hover padronizada */
.team-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card-premium:hover .team-overlay {
    opacity: 1;
}

.view-profile {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    padding: 12px 24px;
    border-radius: 4px;
    background: rgba(47, 107, 255, 0.2);
    backdrop-filter: blur(4px);
}

.team-info-premium {
    padding: 25px 0;
}

.team-info-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsividade Mobile para a Equipe */
@media (max-width: 768px) {
    .team-grid-premium {
        grid-template-columns: 1fr; /* Coluna única no mobile */
        gap: 30px;
    }
    .team-img-wrapper img {
        height: 450px; /* Reduz a altura imponente no celular mantendo o enquadramento inteiro */
    }
}

/* =========================================
   MODAIS DA EQUIPE (Janela Pop-up)
========================================= */
.team-modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 2000; /* Acima de tudo no site */
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto; /* Permite rolar se o texto for gigante */
}

.team-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-card);
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    width: 90%;
    max-width: 950px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.team-modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-body);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover { color: var(--gold); }

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.modal-img img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px 0 0 4px;
    background-color: #0A192F;
}

.modal-text {
    padding: 50px;
    text-align: left;
}

/* Responsividade Mobile para a Equipe e Modais */
@media (max-width: 991px) {
    .modal-grid { grid-template-columns: 1fr; }
    .modal-img img { border-radius: 4px 4px 0 0; height: 350px; min-height: unset; }
    .modal-text { padding: 30px; }
}
@media (max-width: 768px) {
    .team-grid-premium { grid-template-columns: 1fr; }
    .team-img-wrapper img { 
        height: 450px; /* Reduz a altura imponente no celular mantendo o enquadramento inteiro */
    }
}
/* =========================================
   CTA
========================================= */
.cta-section {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at top, rgba(197, 160, 89, 0.12), transparent 45%),
        linear-gradient(180deg, #081525 0%, #0a192f 100%);
    overflow: hidden;
}

.cta-monogram {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.92;
}

.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.cta-section p {
    max-width: 640px;
    margin: 0 auto;
}

/* =========================================
   CONTATO E FORMULÁRIO
========================================= */
.contact {
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.address-block {
    margin-bottom: 30px;
}

.address-block h4 {
    color: var(--text-title);
    margin-bottom: 5px;
    font-family: var(--font-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-body);
}

.contact-details i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.col-ddd {
    flex: 0 0 80px;
}

.col-phone {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: var(--font-text);
    font-size: 0.9rem;
    background-color: var(--bg-secondary);
    color: var(--text-title);
    transition: var(--transition);
    margin-bottom: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6c7a9c;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--bg-main);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: #030811;
    color: var(--text-body);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-title);
    margin-bottom: 20px;
    font-family: var(--font-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    color: var(--text-title);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--gold);
}

.footer-bottom {
    background-color: #02050b;
    padding: 20px 0;
    font-size: 0.8rem;
    text-align: center;
}

/* =========================================
   WHATSAPP FLUTUANTE
========================================= */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

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

/* =========================================
   ANIMAÇÕES DE ENTRADA
========================================= */
body.js-active .fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

body.js-active .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

body.js-active .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

body.js-active .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.appear {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media (max-width: 1024px) {
    .hero-logo {
        width: min(100%, 446px);
    }

    .hero-kicker {
        font-size: 1rem;
    }

    .areas-grid {
        gap: 20px;
    }

    .area-card {
        flex: 0 0 calc(50% - 10px);
        max-width: 100%;
    }

    .team-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .solutions-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solutions-intro-main,
    .solutions-lead {
        max-width: 100%;
    }

    .solutions-grid {
        gap: 28px;
    }

    .solution-card {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-img img {
        border-radius: 4px 4px 0 0;
        height: 350px;
        min-height: unset;
    }

    .modal-text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #061121;
        flex-direction: column;
        padding: 30px 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 25px;
    }

    .nav-container {
        height: 88px;
    }

    #header.scrolled .nav-container {
        height: 76px;
    }

    .logo-image {
        height: 58px;
    }

    .hero {
        min-height: 80vh;
        background-size: cover;
        background-position: center center;
    }

    .hero-logo {
        width: min(100%, 366px);
        margin-bottom: 20px;
    }

    .hero-kicker {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 26px;
    }

    .about-grid,
    .contact-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .areas-grid {
        display: flex;
        flex-direction: column;
    }

    .area-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid-premium {
        grid-template-columns: 1fr;
    }

    .team-img-wrapper img {
        height: 450px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-monogram {
        width: 54px;
        height: 54px;
    }

    .social-icons {
        justify-content: center;
    }

    .quem-somos-watermark {
        padding-top: 80px;
        padding-bottom: 52px;
        background-size: cover;
        background-position: center;
    }

    .quem-somos-watermark::before {
        background: radial-gradient(circle, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 1) 100%);
    }

    .solutions-layout {
        gap: 40px;
    }

    #metodo {
        padding-top: 52px;
    }

    .solutions-intro {
        gap: 26px;
    }

    .solutions-intro .section-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .solutions-lead,
    .solutions-note p,
    .solution-card p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .solutions-note,
    .solution-card {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .solutions-cta {
        margin-top: 24px;
    }

    .solution-card h3 {
        font-size: 1.95rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: min(100%, 297px);
    }

    .hero-kicker {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .logo-image {
        height: 50px;
    }

    .footer-logo {
        width: min(100%, 300px);
        height: auto;
    }

    .cta-monogram,
    .footer-monogram {
        width: 64px;
        height: auto;
    }

    .cta-section h2 {
        font-size: 1.9rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .col-ddd {
        flex: unset;
        width: 100%;
    }

    .team-card {
        flex: 0 0 100%;
    }
}

