/* ============================================
   VARIÁVEIS — EMERALD FLAME (pagina_vendas_v9 style)
   ============================================ */
:root {
    --verde:        #00D98E;
    --verde-escuro: #00A86B;
    --verde-claro:  #00F5A0;
    --verde-glow:   rgba(0, 217, 142, 0.3);
    --navy:         #0A192F;
    --navy-mid:     #1a3a52;
    --navy-card:    rgba(26, 58, 82, 0.6);
    --branco:       #FFFFFF;
    --cinza-claro:  #F5F5F5;
    --cinza-medio:  #E0E0E0;
    --cinza-texto:  #9CA3AF;
    --wa-green:     #25D366;
    --shadow:       0 10px 40px rgba(0,0,0,0.35);
    --radius:       14px;
    --radius-lg:    22px;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--verde-glow); }
    50%       { box-shadow: 0 0 50px rgba(0,217,142,0.6); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes rotateBg {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.97); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50%       { opacity: 0.3; transform: translateY(6px); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--navy);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--verde);
    color: var(--navy);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 0.1px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 38px;
    z-index: 999;
    background: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 217, 142, 0.12);
    transition: box-shadow 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    background: var(--verde);
    color: var(--navy);
    font-weight: 900;
    font-size: 0.85rem;
    padding: 5px 8px;
    border-radius: 8px;
    letter-spacing: 1px;
}
.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--branco);
}
.logo-accent { color: var(--verde); }

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link:hover {
    color: var(--verde);
    background: rgba(0,217,142,0.08);
}
.nav-cta {
    background: var(--verde);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--verde-claro);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--verde-glow);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--branco);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(0,217,142,0.1);
    gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-mobile-link:hover { color: var(--verde); background: rgba(0,217,142,0.08); }
.nav-mobile-cta {
    margin-top: 8px;
    background: var(--verde);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 20px 60px;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
    pointer-events: none;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,217,142,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-duration: 14s;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,217,142,0.1) 0%, transparent 70%);
    bottom: -80px; right: -60px;
    animation-duration: 18s; animation-delay: -4s;
}
.hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0,168,107,0.12) 0%, transparent 70%);
    top: 40%; left: 60%;
    animation-duration: 10s; animation-delay: -7s;
}
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,217,142,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,217,142,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,217,142,0.1);
    border: 1px solid rgba(0,217,142,0.25);
    color: var(--verde);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
    animation: fadeInDown 0.7s ease;
}
.badge-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--verde);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--branco);
    margin-bottom: 24px;
    line-height: 1.18;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease 0.1s both;
}
.highlight {
    color: var(--verde);
    position: relative;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--verde), transparent);
    border-radius: 2px;
}
.hero-subtitle {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.75);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.75;
    animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-subtitle strong { color: var(--verde); font-weight: 800; }

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.3s both;
    margin-bottom: 24px;
}
.hero-guarantee {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    font-weight: 500;
    animation: fadeIn 1s ease 0.5s both;
}

.scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--verde);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   CTA BUTTONS (shared)
   ============================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}
.cta-button.large { padding: 17px 48px; font-size: 1.05rem; }
.cta-button.btn-full { width: 100%; }

.cta-primary {
    background: var(--verde);
    color: var(--navy);
    box-shadow: 0 8px 24px var(--verde-glow);
}
.cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.18);
    transition: left 0.5s ease;
}
.cta-primary:hover::before { left: 100%; }
.cta-primary:hover {
    background: var(--verde-claro);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,217,142,0.5);
}
.cta-primary:active { transform: translateY(0); }

.cta-secondary {
    background: transparent;
    color: var(--verde);
    border: 2px solid var(--verde);
}
.cta-secondary:hover {
    background: var(--verde);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--verde-glow);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--navy);
    border-top: 1px solid rgba(0,217,142,0.1);
    border-bottom: 3px solid var(--verde);
    padding: 40px 20px;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 10px 24px;
}
.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--verde);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    display: block;
    font-size: 0.77rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(0,217,142,0.18);
    flex-shrink: 0;
}

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    background: rgba(0,217,142,0.1);
    color: var(--verde);
    border: 1px solid rgba(0,217,142,0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.section-tag.light {
    background: rgba(0,217,142,0.15);
    border-color: rgba(0,217,142,0.3);
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title.white { color: var(--branco); }
.section-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.6); }
.section-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
    padding: 100px 20px;
    background: #f4f6f8;
    background-image: radial-gradient(circle, rgba(0,217,142,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.value-card {
    background: var(--branco);
    border-left: 4px solid var(--verde);
    border-radius: var(--radius);
    padding: 28px;
    text-align: left;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: all 0.3s;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,217,142,0.15);
}
.value-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 0.91rem;
    color: #555;
    line-height: 1.7;
}
.sobre .section-cta { border-top-color: var(--cinza-medio); }

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.orb-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: orbFloat 18s ease-in-out infinite;
}
.orb-servicos {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,217,142,0.12) 0%, transparent 70%);
    top: -200px; right: -200px;
}
.orb-faq {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,168,107,0.1) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation-delay: -6s;
}
.orb-final-1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(0,217,142,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.orb-final-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0,168,107,0.1) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    animation-delay: -9s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,217,142,0.15);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--verde), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
    background: rgba(0,217,142,0.07);
    border-color: rgba(0,217,142,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 54px; height: 54px;
    background: rgba(0,217,142,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: rgba(0,217,142,0.18);
    transform: scale(1.08);
}
.service-body { flex: 1; }
.service-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--verde);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.service-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-body p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 14px;
}
.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--verde);
    transition: color 0.2s, gap 0.2s;
}
.service-link:hover { color: var(--verde-claro); }

/* ============================================
   PROCESSO
   ============================================ */
.processo {
    padding: 100px 20px;
    background: #f4f6f8;
    background-image: radial-gradient(circle, rgba(0,217,142,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--verde);
    color: var(--navy);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 0 24px var(--verde-glow);
    animation: glow 3s ease-in-out infinite;
    transition: all 0.3s;
}
.step:hover .step-number {
    transform: scale(1.1);
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.step p {
    font-size: 0.91rem;
    color: #555;
    line-height: 1.75;
}
.step-arrow {
    font-size: 2rem;
    color: var(--verde);
    padding-top: 22px;
    flex-shrink: 0;
    display: none;
}
@media (min-width: 768px) { .step-arrow { display: block; } }
.processo .section-cta { border-top-color: var(--cinza-medio); }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,217,142,0.15);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(6px);
}
.faq-item:hover, .faq-item.open {
    border-color: rgba(0,217,142,0.4);
    background: rgba(0,217,142,0.05);
}
.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
}
.faq-header h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1.4;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--verde);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}
.faq-item.open .faq-body {
    max-height: 300px;
    padding: 0 24px 22px;
}
.faq-body p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    border-top: 1px solid rgba(0,217,142,0.1);
    padding-top: 16px;
}
.faq-body p strong { color: var(--verde); }
.faq-footer-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.faq-section .section-cta { border-top-color: rgba(255,255,255,0.08); }

/* ============================================
   CONTATO
   ============================================ */
.contato-section {
    padding: 100px 20px;
    background: #f4f6f8;
    background-image: radial-gradient(circle, rgba(0,217,142,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}
.contato-section .section-title { color: var(--navy); }

/* Tabs */
.contact-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.contact-tabs {
    display: inline-flex;
    background: var(--branco);
    border: 2px solid var(--cinza-medio);
    border-radius: 12px;
    padding: 6px;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background: none;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.tab-btn.active {
    background: var(--verde);
    color: var(--navy);
    box-shadow: 0 4px 16px var(--verde-glow);
}
.tab-btn:not(.active):hover { background: rgba(0,217,142,0.08); color: var(--navy); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }

/* Contact card (shared) */
.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--branco);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--cinza-medio);
}

/* WhatsApp tab */
.wa-icon-circle {
    width: 72px; height: 72px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    animation: glow 3s ease-in-out infinite;
}
.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 12px;
}
.contact-card > p {
    text-align: center;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.wa-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.wa-status {
    font-size: 0.88rem;
    font-weight: 600;
    color: #25D366;
}
.wa-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}

/* Email form */
.email-card { max-width: 800px; }
.config-alert {
    background: #FFF8E6;
    border: 1px solid #F5A623;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.86rem;
    color: #7A5700;
    margin-bottom: 28px;
    line-height: 1.6;
}
.config-alert a { color: var(--verde-escuro); font-weight: 700; text-decoration: underline; }
.config-alert code { background: rgba(0,0,0,0.08); padding: 2px 6px; border-radius: 4px; font-size: 0.82rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--cinza-medio);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: #FAFAFA;
    transition: all 0.3s;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde);
    background: var(--branco);
    box-shadow: 0 0 0 3px rgba(0,217,142,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0B0B0; }
.error-msg {
    display: block;
    color: #E53E3E;
    font-size: 0.82rem;
    margin-top: 5px;
    min-height: 16px;
}
.form-feedback {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px;
    margin-top: 16px;
}
.form-feedback.success { background: rgba(0,217,142,0.1); color: var(--verde-escuro); border: 1px solid rgba(0,217,142,0.3); }
.form-feedback.error   { background: rgba(229,62,62,0.08); color: #C53030; border: 1px solid rgba(229,62,62,0.25); }
.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 14px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-inner {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,217,142,0.2);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(6px);
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.75;
}
.cta-footer-text {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    margin-top: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    border-top: 3px solid var(--verde);
    padding: 64px 20px 32px;
}
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    max-width: 360px;
    line-height: 1.6;
}
.footer-links-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,217,142,0.1);
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--verde);
    margin-bottom: 6px;
}
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--verde); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.82rem;
    color: var(--verde);
    font-weight: 600;
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--verde-claro); text-decoration: underline; }

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.1s; }
.reveal:nth-child(6) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .footer-links-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 0.78rem; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-button { width: 100%; max-width: 340px; }

    .section-title { font-size: 1.9rem; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; align-items: center; }
    .step { max-width: 100%; }

    .form-row { grid-template-columns: 1fr; }
    .contact-card { padding: 28px 24px; }

    .final-cta-inner { padding: 48px 24px; }
    .footer-links-row { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .faq-grid { grid-template-columns: 1fr; }
    .stat-divider { display: none; }
    .stat-item { min-width: 120px; }

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

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero { padding: 60px 20px 50px; }
    .section-title { font-size: 1.6rem; }
    .cta-button.large { padding: 15px 36px; font-size: 1rem; }
    .contact-tabs { flex-direction: column; width: 100%; max-width: 340px; }
    .tab-btn { justify-content: center; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-group input, .form-group textarea { font-size: 16px; /* prevent iOS zoom */ }
}
