/* ===== VARIABLES ===== */
:root {
    --primary: #A58D5C;
    --primary-dark: #7A6843;
    --primary-light: #C4A96E;
    --secondary: #212529;
    --secondary-light: #333;
    --bg: #FFFFFF;
    --bg-soft: #F9F9F9;
    --bg-alt: #F0EBE1;
    --bg-dark: #212529;
    --text: #212529;
    --text-light: #4F4F4F;
    --text-muted: #808080;
    --border: #DDD5C8;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(165, 141, 92, 0.10);
    --shadow-lg: 0 12px 40px rgba(165, 141, 92, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.highlight { color: var(--primary); }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--bg-alt);
    border-radius: 50px;
}
.section-desc {
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--text-light);
    font-size: 1.05rem;
}
h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
section { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 12px 0;
}
.header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transition: var(--transition);
}
.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition);
}
.header.scrolled .logo img {
    height: 40px;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}
.header.scrolled .logo-text {
    font-size: 1.4rem;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}
.nav a:hover { color: var(--primary); }
.nav-cta {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem !important;
}
.nav-cta:hover { background: #000 !important; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(15, 11, 8, 0.72) 0%, rgba(10, 8, 6, 0.66) 40%, rgba(20, 16, 12, 0.78) 100%),
        url('../assets/images/hero-recepcao.jpg') center center / cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(165, 141, 92, 0.18) 0%, transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.10) 50%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 0 100px;
}
.hero-selo {
    display: block;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 8px 24px rgba(165, 141, 92, 0.35));
    animation: heroSeloFade 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes heroSeloFade {
    from { opacity: 0; transform: translateY(-10px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(165, 141, 92, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(165, 141, 92, 0.3);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.hero .highlight { color: var(--primary); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.hero-sub strong { color: var(--primary); }
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero .btn-primary {
    background: var(--primary);
    color: var(--secondary);
}
.hero .btn-primary:hover {
    background: var(--primary-light);
}
.hero .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}
.hero-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.hero-info-item svg { flex-shrink: 0; stroke: var(--primary); }

/* ===== PROVA SOCIAL ===== */
.prova-social {
    padding: 40px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.prova-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.prova-item {
    padding: 8px;
}
.prova-stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.prova-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}
.prova-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}
@media (max-width: 768px) {
    .prova-social-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .prova-num { font-size: 1.4rem; }
}

/* ===== SERVIÇOS ===== */
.servicos { padding: 100px 0; background: var(--bg); }
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}
.servico-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.servico-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.servico-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}
.servico-card:hover .servico-icon {
    background: var(--secondary);
}
.servico-icon svg { stroke: var(--primary); transition: var(--transition); }
.servico-card:hover .servico-icon svg { stroke: var(--primary); }
.servico-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}
.servico-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}
.servico-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== SOBRE ===== */
.sobre { padding: 100px 0; background: var(--bg-soft); }
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sobre-content { text-align: left; }
.sobre-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}
.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.sobre-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}
.sobre-feature svg { flex-shrink: 0; }
.sobre-image {
    position: relative;
}
.sobre-placeholder {
    width: 100%;
    height: 450px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.sobre-placeholder span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.sobre-foto {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}
.sobre-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais { padding: 80px 0; background: var(--bg-dark); color: #fff; }
.diferenciais h2 { color: #fff; }
.diferenciais .section-label { background: rgba(196,149,106,0.15); color: var(--primary); }
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 32px;
}
.diferencial {
    text-align: left;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.diferencial:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(165, 141, 92, 0.3);
    box-shadow: 0 8px 32px rgba(165, 141, 92, 0.1);
}
.diferencial-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}
.diferencial h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #fff;
}
.diferencial p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg-soft); }
.faq-list {
    max-width: 720px;
    margin: 32px auto 0;
    text-align: left;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--bg);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 16px;
    font-family: var(--font-body);
}
.faq-question svg {
    flex-shrink: 0;
    transition: var(--transition);
    stroke: var(--text-muted);
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao { padding: 100px 0; background: var(--bg); }
.localizacao-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
    margin-top: 32px;
}
.localizacao-map iframe { border-radius: var(--radius-lg); }
.info-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
}
.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.info-item:last-child { margin-bottom: 0; }
.info-item svg { flex-shrink: 0; margin-top: 2px; }
.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.info-item p { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.info-item a { color: var(--primary-dark); font-weight: 500; }
.info-item a:hover { text-decoration: underline; }

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #000 100%);
    color: #fff;
}
.cta-final h2 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.cta-final p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.cta-final .btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 16px rgba(165, 141, 92, 0.3);
}
.cta-final .btn-primary:hover {
    background: var(--primary-light);
    color: var(--secondary);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    text-align: left;
}
.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { fill: #fff; }
.footer-links h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding: 24px 0;
    font-size: 0.85rem;
}
.footer-bottom a { color: var(--primary); font-weight: 500; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wpp 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
@keyframes pulse-wpp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .localizacao-grid { grid-template-columns: 1fr; }
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre-content { text-align: center; }
    .sobre-features { justify-items: center; }
}

@media (max-width: 768px) {
    /* --- Menu mobile --- */
    .nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }
    .nav.active { display: flex; }
    .nav a { font-size: 1.2rem; }
    .menu-toggle { display: flex; z-index: 1001; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* --- Header: respiração da logo + safe-area iOS --- */
    .logo { line-height: 1; display: flex; align-items: center; }
    .logo img { height: 64px; display: block; }
    .header {
        padding: 12px 0 14px;
        padding-top: calc(12px + env(safe-area-inset-top, 0px));
        overflow: visible;
    }
    .header .container { min-height: 64px; }
    .header.scrolled { padding: 8px 0 10px; padding-top: calc(8px + env(safe-area-inset-top, 0px)); }
    .header.scrolled .logo img { height: 52px; }

    /* --- Hero compacto --- */
    .hero { min-height: auto; }
    .hero-content { padding: 130px 0 56px; }
    .hero h1 { font-size: 2.1rem; line-height: 1.15; margin-bottom: 16px; }
    .hero-sub { font-size: 1rem; line-height: 1.55; margin-bottom: 24px; }
    .hero-selo { width: 100px; height: 100px; margin-bottom: 14px; }
    .hero-badge { font-size: 0.78rem; padding: 6px 14px; margin-bottom: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; padding: 0 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-info { flex-direction: column; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.85rem; }

    /* --- Botões maiores (touch target 48px+) --- */
    .btn { padding: 14px 28px; min-height: 48px; }
    .btn-lg { padding: 16px 32px; }

    /* --- Seções com espaçamento consistente --- */
    section { padding: 56px 0; }
    .prova-social { padding: 28px 0; }
    .hero { padding: 0; }

    /* --- Containers e tipografia --- */
    .container { padding: 0 18px; }
    h2 { font-size: 1.65rem; margin-bottom: 12px; line-height: 1.25; }
    .section-label { font-size: 0.72rem; letter-spacing: 1.5px; padding: 5px 12px; margin-bottom: 10px; }
    .section-desc { margin: 0 auto 32px; font-size: 0.95rem; line-height: 1.6; }

    /* --- Prova social 2x2 com números legíveis --- */
    .prova-social-grid { gap: 14px; }
    .prova-num { font-size: 1.4rem; }
    .prova-label { font-size: 0.78rem; line-height: 1.3; }

    /* --- Serviços em coluna --- */
    .servicos-grid { grid-template-columns: 1fr; gap: 14px; max-width: 420px; margin: 12px auto 0; }
    .servico-card { padding: 28px 22px; }
    .servico-card h3 { font-size: 1.15rem; }

    /* --- Sobre --- */
    .sobre-features { grid-template-columns: 1fr; }
    .sobre-placeholder { height: 260px; }
    .sobre-foto { height: 320px; object-position: center 30%; }
    .sobre-image::after { display: none; }

    /* --- Diferenciais --- */
    .diferenciais-grid { grid-template-columns: 1fr; gap: 14px; }
    .diferencial { padding: 22px; }

    /* --- Em Breve --- */
    .em-breve-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .em-breve-card { padding: 28px 22px; }

    /* --- FAQ --- */
    .faq-list { margin-top: 8px; }
    .faq-question { font-size: 0.95rem; padding: 16px; }
    .faq-answer { font-size: 0.92rem; line-height: 1.6; }

    /* --- Localização --- */
    .localizacao-map iframe { height: 280px !important; }
    .info-card { padding: 20px; }

    /* --- CTA final --- */
    .cta-final { padding: 56px 0; }
    .cta-final h2 { font-size: 1.6rem; }

    /* --- Footer --- */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .footer-logo { margin-left: auto; margin-right: auto; height: 62px; }
    .footer-brand p { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 0 24px; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }

    /* --- WhatsApp float touch-friendly + safe-area --- */
    .whatsapp-float {
        width: 56px; height: 56px;
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        right: 16px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-selo { width: 90px; height: 90px; }
    h2 { font-size: 1.5rem; }
    .btn { padding: 13px 24px; font-size: 0.9rem; }
    .btn-lg { font-size: 0.95rem; padding: 15px 28px; }
    .prova-num { font-size: 1.25rem; }
    .prova-label { font-size: 0.72rem; }
    section { padding: 48px 0; }
    .prova-social { padding: 24px 0; }
    .cta-final { padding: 48px 0; }
    .servico-card { padding: 24px 18px; }
    .em-breve-card { padding: 24px 18px; }
    .diferencial { padding: 18px; }
    .logo img { height: 58px; }
    .header.scrolled .logo img { height: 48px; }
}

/* ===== EM BREVE ===== */
.em-breve { padding: 80px 0; background: var(--bg); }
.em-breve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 32px auto 0;
}
.em-breve-card {
    padding: 40px 32px;
    background: var(--bg-soft);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.em-breve-card::before {
    content: 'EM BREVE';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.em-breve-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text);
}
.em-breve-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.em-breve-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 50%;
    margin: 0 auto 20px;
}
.em-breve-icon svg { stroke: var(--primary); }

@media (max-width: 600px) {
    .em-breve-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE PAGES ===== */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2A1F1A 0%, #1A1A1A 100%);
    color: #fff;
    text-align: center;
}
.service-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.service-hero .highlight { color: var(--primary); }
.service-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

.service-content {
    padding: 80px 0;
    text-align: left;
}
.service-content h2 {
    font-family: var(--font-display);
    text-align: left;
    margin-bottom: 20px;
}
.service-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.service-content ul {
    margin: 16px 0 24px 0;
}
.service-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}
.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.service-cta {
    padding: 60px 0;
    background: var(--bg-soft);
    text-align: center;
}
.service-cta h2 { text-align: center; }
.service-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}
