/* ============================================================
   DRA. BEATRIZ SOUZA — SITE INSTITUCIONAL
   Versão 1.0 · Abril 2025
   ============================================================ */

/* ===== VARIÁVEIS ===== */
:root {
    /* Cores */
    --primary:       #2A6F97;
    --primary-dark:  #1D3557;
    --mint:          #A8DADC;
    --beige:         #F1FAEE;
    --white:         #FFFFFF;
    --gray-light:    #F5F7FA;
    --gray-text:     #4F4F4F;
    --gray-muted:    #8A94A6;
    --cta:           #2EC4B6;
    --cta-hover:     #28B0A4;

    /* Sombras */
    --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md:     0 4px 20px rgba(0, 0, 0, 0.09);
    --shadow-lg:     0 8px 40px rgba(0, 0, 0, 0.12);

    /* Tipografia */
    --font-title:    'Poppins', sans-serif;
    --font-body:     'Inter', sans-serif;
    --font-display:  'Playfair Display', serif;

    /* Bordas */
    --radius-sm:     6px;
    --radius-md:     8px;
    --radius-lg:     12px;
    --radius-xl:     20px;
    --radius-full:   9999px;

    /* Espaçamentos */
    --section-py:    100px;
    --nav-h:         72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== UTILITÁRIOS ===== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-py) 0;
}

.section--gray {
    background: var(--gray-light);
}

.section--beige {
    background: var(--beige);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.servicos .section-header,
.diferenciais .section-header,
.contato .section-header {
    max-width: 800px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-muted);
    line-height: 1.7;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    padding: 11px 22px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--cta);
    color: var(--white);
    border: 2px solid var(--cta);
    box-shadow: 0 4px 14px rgba(46, 196, 182, 0.35);
}
.btn-primary:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--beige);
    border-color: var(--beige);
    transform: translateY(-1px);
}

.btn-sm  { font-size: 0.82rem; padding: 8px 16px; }
.btn-lg  { font-size: 0.95rem; padding: 14px 28px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-size: 1.4rem;
    color: var(--cta);
    line-height: 1;
}

.logo-mark--white { color: rgba(255,255,255,0.6); }

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-name--white { color: var(--white); }

.logo-sub {
    font-size: 0.7rem;
    color: var(--gray-muted);
    line-height: 1;
}

.logo-sub--muted { color: rgba(255,255,255,0.5); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-text);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(42, 111, 151, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--beige) 0%, #e8f4f8 60%, #d4eef4 100%);
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 218, 220, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(42, 111, 151, 0.1);
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--gray-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-wrap {
    position: relative;
    width: 400px;
    aspect-ratio: 4/5;
    height: auto;
}

.hero-photo-blob {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 60%, #152843 100%);
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: blobFloat 6s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
    50%       { border-radius: 44% 56% 54% 46% / 48% 60% 40% 52%; }
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    display: block;
    flex-shrink: 0;
}

.sobre-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    display: block;
    flex-shrink: 0;
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}

.hero-floating-card--top {
    top: 30px;
    right: -30px;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card--bottom {
    bottom: 50px;
    left: -30px;
    animation: floatCard 4s ease-in-out infinite 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.floating-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-icon--green { background: rgba(46,196,182,0.15); color: var(--cta); }
.floating-icon--blue  { background: rgba(42,111,151,0.12); color: var(--primary); }

.hero-deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-circle--1 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    right: 30px;
    background: rgba(168, 218, 220, 0.4);
}

.hero-deco-circle--2 {
    width: 50px;
    height: 50px;
    top: -10px;
    left: 20px;
    background: rgba(46, 196, 182, 0.25);
}

.hero-wave {
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===== SOBRE ===== */
.sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.sobre-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.sobre-photo-blob {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--mint) 0%, var(--primary) 100%);
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-deco-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 220px;
}

.sobre-deco-card .deco-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sobre-deco-card strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

.sobre-deco-card span {
    font-size: 0.72rem;
    color: var(--gray-muted);
}

.sobre-deco-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--mint) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.5;
    z-index: -1;
}

/* Sobre - Texto */
.sobre-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--cta);
}

.sobre-desc {
    font-size: 0.95rem;
    color: var(--gray-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sobre-credentials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 36px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--mint);
}

.credential-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.credential-text strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

.credential-text span {
    font-size: 0.78rem;
    color: var(--gray-muted);
}

/* ===== SERVIÇOS ===== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.servico-card--featured {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.servico-card.servico-card--featured h3 {
    color: var(--white) !important;
}

.servico-card.servico-card--featured p {
    color: rgba(255,255,255,0.95) !important;
}

.servico-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.servico-card--featured .servico-icon-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 4px;
}

.servico-icon-wrap--blue  { background: rgba(42, 111, 151, 0.1);  color: var(--primary); }
.servico-icon-wrap--mint  { background: rgba(168, 218, 220, 0.3); color: var(--primary); }
.servico-icon-wrap--green { background: rgba(46, 196, 182, 0.12); color: var(--cta); }

.servico-card--featured .servico-icon-wrap {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.servico-body { flex: 1; }

.servico-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.servico-card h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.servico-card p {
    font-size: 0.875rem;
    color: var(--gray-muted);
    line-height: 1.7;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 48px;
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diferencial-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background 0.3s, color 0.3s;
}

.diferencial-item:hover .diferencial-icon {
    background: var(--primary);
    color: var(--white);
}

.diferencial-item:nth-child(even) .diferencial-icon {
    color: var(--cta);
}

.diferencial-item:nth-child(even):hover .diferencial-icon {
    background: var(--cta);
    color: var(--white);
}

.diferencial-item h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
}

.diferencial-item p {
    font-size: 0.875rem;
    color: var(--gray-muted);
    line-height: 1.7;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.depoimento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.depoimento-stars {
    display: flex;
    gap: 3px;
}

.depoimento-text {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-light);
    padding-top: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.depoimento-author strong {
    display: block;
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.depoimento-author span {
    font-size: 0.75rem;
    color: var(--gray-muted);
}

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

.contato-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contato-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contato-card--cta {
    background: linear-gradient(135deg, var(--cta) 0%, var(--primary) 100%);
    color: var(--white);
    border-color: transparent;
}

.contato-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.contato-icon-wrap--white {
    background: rgba(255,255,255,0.2);
}

.contato-card h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.contato-card--cta h3 {
    color: var(--white);
}

.contato-card p {
    font-size: 0.875rem;
    color: var(--gray-muted);
    line-height: 1.65;
}

.contato-card--cta p {
    color: rgba(255,255,255,0.8);
}

.contato-card .btn {
    margin-top: 6px;
    align-self: flex-start;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d2136 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-blob {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,196,182,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner-text h2 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: color 0.2s, background 0.2s;
}

.footer-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--cta);
    color: var(--white);
}

.footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 16px 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
    animation: fadeInUp 0.7s ease both;
}

.fade-in-delay {
    animation: fadeInUp 0.7s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-delay   { transition-delay: 0.1s; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.25s; }

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .hero-text { order: 1; }
    .hero-visual { order: 0; }

    .hero-badge { display: inline-flex; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .hero-photo-wrap { width: 320px; }

    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sobre-visual { order: -1; }
    .sobre-photo-wrap { max-width: 320px; }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servico-card--featured {
        grid-column: span 2;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

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

    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --section-py: 64px; }

    /* Nav Mobile */
    .nav-toggle {
        display: flex;
        z-index: 200;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 88px 20px 32px;
        box-shadow: -4px 0 40px rgba(0,0,0,0.12);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 150;
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-links .btn {
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }

    /* Toggle animation */
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Nav overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 100;
    }

    .nav-overlay.is-open { display: block; }

    /* Hero */
    .hero-photo-wrap {
        width: 260px;
        margin: 0 auto;
    }

    .hero-floating-card--top  { right: -10px; }
    .hero-floating-card--bottom { left: -10px; }

    /* Sections */
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card--featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .servico-card--featured .servico-icon-wrap {
        margin-bottom: 12px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .diferencial-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .diferencial-icon {
        flex-shrink: 0;
        margin-top: 2px;
    }

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

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

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-nav {
        gap: 4px;
    }

    .sobre-credentials {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-banner-inner .btn {
        width: 100%;
        justify-content: center;
    }
}
