/* ===========================
   VARIÁVEIS E CORES
   =========================== */
:root {
    --primary-color: #f5a623;
    --primary-dark: #e0921a;
    --secondary-color: #1dbaae;
    --secondary-dark: #179e93;
    --dark-color: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --light-color: #f9f9f9;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #e8e8e8;
    --gray-medium: #999;
    --whatsapp-color: #25D366;
    --whatsapp-dark: #1ebe5d;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
    --radius: 15px;
    --radius-sm: 8px;
}

/* ===========================
   RESET E ESTILOS GLOBAIS
   =========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark-color); background-color: var(--white); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ===========================
   BARRA DE URGÊNCIA
   =========================== */
.urgency-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 200;
}
.urgency-bar a { color: var(--white); font-weight: 700; text-decoration: underline; margin-left: 5px; }

/* ===========================
   HEADER
   =========================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 37px;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 5px 20px rgba(0,0,0,0.12); }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; gap: 20px; }
.logo img { height: 68px; width: auto; object-fit: contain; max-width: 200px; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav-link { color: var(--dark-color); font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; }
.nav-link:hover { color: var(--primary-color); }
.nav-link:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--gray); font-size: 0.88rem; font-weight: 500; white-space: nowrap; }
.header-phone:hover { color: var(--primary-color); }
.nav-toggle { display: none; flex-direction: column; background: none; border: none; cursor: pointer; gap: 5px; padding: 4px; }
.nav-toggle span { width: 25px; height: 3px; background-color: var(--dark-color); border-radius: 2px; transition: all 0.3s ease; display: block; }

/* ===========================
   BOTÕES
   =========================== */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1.2;
}
.btn-primary { background-color: var(--primary-color); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.35); }
.btn-white { background-color: var(--white); color: var(--primary-color); }
.btn-white:hover { background-color: var(--gray-light); transform: translateY(-2px); }
.btn-whatsapp { background-color: var(--whatsapp-color); color: var(--white); }
.btn-whatsapp:hover { background-color: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--secondary-color); }
.btn-secondary:hover { background-color: var(--secondary-color); transform: translateY(-2px); }
.btn-large { padding: 18px 48px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

/* ===========================
   HERO SECTION
   =========================== */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: #1a2a3a; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,42,58,0.88) 0%, rgba(26,42,58,0.55) 60%, rgba(26,42,58,0.3) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; padding: 80px 20px; }
.hero-text { color: var(--white); }
.hero-text h1 { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-text h1 .highlight { color: var(--primary-color); }
.hero-text p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; line-height: 1.7; }
.hero-benefits-quick { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-benefits-quick span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-content--centered { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; padding: 90px 20px; text-align: center; }
.hero-text--centered h1 { font-size: 2.8rem; }
.hero-text--centered p { max-width: 620px; margin: 0 auto 24px; }
.hero-benefits-quick { justify-content: center; }
.hero-buttons--centered { justify-content: center; }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--gray-light); padding: 28px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.trust-bar-content { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { text-align: center; padding: 0 40px; display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--primary-color); }
.trust-item span { font-size: 0.82rem; color: var(--gray); font-weight: 500; }
.trust-divider { width: 1px; height: 40px; background: var(--gray-light); }

/* ===========================
   PROBLEMA → SOLUÇÃO
   =========================== */
.problem-solution { padding: 80px 20px; background: var(--light-color); }
.ps-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: stretch; }
.ps-arrow { font-size: 3rem; color: var(--primary-color); font-weight: 700; text-align: center; display: flex; align-items: center; }
.ps-problem, .ps-solution { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.ps-problem h2, .ps-solution h2 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.ps-problem h2 { color: #c0392b; }
.ps-solution h2 { color: var(--secondary-color); }
.pain-list, .solution-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pain-list li, .solution-list li { font-size: 0.95rem; line-height: 1.5; color: var(--dark-color); }

/* ===========================
   SECTION BADGES & TITLES
   =========================== */
.section-badge { display: inline-block; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3); color: var(--primary-dark); padding: 7px 20px; border-radius: 50px; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-badge--white { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: var(--white); }
.section-title { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 700; text-align: center; margin-bottom: 16px; color: var(--dark-color); line-height: 1.3; }
.section-subtitle { text-align: center; color: var(--gray); font-size: 1.05rem; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===========================
   COMO FUNCIONA
   =========================== */
.como-funciona { padding: 100px 20px; background: var(--white); text-align: center; }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; }
.step-card { background: linear-gradient(135deg, var(--light-color), var(--white)); border: 2px solid var(--gray-light); border-radius: var(--radius); padding: 40px 28px; text-align: center; transition: all 0.3s ease; }
.step-card:hover { border-color: var(--primary-color); box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.step-number { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(245,166,35,0.3); }
.step-content h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark-color); }
.step-content p { color: var(--gray); font-size: 0.93rem; line-height: 1.6; }
.step-arrow { font-size: 2.5rem; color: var(--primary-color); font-weight: 700; }

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits { padding: 100px 20px; background-color: var(--light-color); text-align: center; }
.benefits-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; text-align: left; }
.benefits-list { display: flex; flex-direction: column; gap: 24px; }
.benefit-item { display: flex; gap: 18px; align-items: flex-start; }
.benefit-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; box-shadow: 0 4px 15px rgba(245,166,35,0.25); }
.benefit-text h4 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--dark-color); }
.benefit-text p { color: var(--gray); font-size: 0.93rem; line-height: 1.6; }
.benefits-visual { display: flex; flex-direction: column; gap: 24px; }
.benefits-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { text-align: center; padding: 28px 20px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: var(--radius); color: var(--white); box-shadow: var(--shadow); }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 6px; display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.9; }
.benefits-cta-card { background: var(--white); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); border: 2px solid rgba(245,166,35,0.2); }
.benefits-cta-card p { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; color: var(--dark-color); }

/* ===========================
   DEPOIMENTOS
   =========================== */
.depoimentos { padding: 100px 20px; background: var(--white); text-align: center; }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.depoimento-card { background: var(--light-color); border-radius: var(--radius); padding: 36px 28px; text-align: left; box-shadow: var(--shadow); transition: all 0.3s ease; display: flex; flex-direction: column; gap: 16px; border: 2px solid transparent; }
.depoimento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--gray-light); }
.depoimento-card--featured { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); border-color: transparent; }
.depoimento-card--featured .depoimento-texto,
.depoimento-card--featured .depoimento-autor strong,
.depoimento-card--featured .depoimento-autor span { color: var(--white); }
.depoimento-stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; }
.depoimento-card--featured .depoimento-stars { color: rgba(255,255,255,0.9); }
.depoimento-texto { font-size: 0.95rem; line-height: 1.7; color: var(--dark-color); font-style: italic; flex: 1; }
.depoimento-autor { display: flex; align-items: center; gap: 14px; }
.autor-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.depoimento-card--featured .autor-avatar { background: rgba(255,255,255,0.25); }
.depoimento-autor strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--dark-color); }
.depoimento-autor span { font-size: 0.82rem; color: var(--gray); }

/* ===========================
   FORMULÁRIO DE LEAD
   =========================== */
.formulario-section { padding: 100px 20px; background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%); position: relative; overflow: hidden; }
.formulario-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%); border-radius: 50%; }
.formulario-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.formulario-texto { color: var(--white); }
.formulario-texto h2 { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.formulario-texto p { opacity: 0.9; font-size: 1rem; margin-bottom: 28px; line-height: 1.7; }
.formulario-lista { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.formulario-lista li { font-size: 0.95rem; opacity: 0.9; }
.formulario-garantia { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 16px; border: 1px solid rgba(255,255,255,0.15); }
.garantia-icon { font-size: 1.4rem; }
.formulario-garantia p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }
.formulario-card { background: var(--white); border-radius: 20px; padding: 44px 40px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); }
.formulario-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; color: var(--dark-color); text-align: center; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--dark-color); }
.form-group input, .form-group select, .form-group textarea { border: 2px solid var(--gray-light); border-radius: var(--radius-sm); padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--dark-color); transition: border-color 0.3s ease, box-shadow 0.3s ease; background: var(--white); width: 100%; -webkit-appearance: none; appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.form-group input.error, .form-group select.error { border-color: #e74c3c; }
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-group--checkbox input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--primary-color); padding: 0; -webkit-appearance: checkbox; appearance: checkbox; cursor: pointer; }
.form-group--checkbox label { font-size: 0.82rem; font-weight: 400; color: var(--gray); line-height: 1.5; }
.form-group--checkbox label a { color: var(--primary-color); text-decoration: underline; }
.form-disclaimer { text-align: center; font-size: 0.78rem; color: var(--gray-medium); margin-top: 12px; }

/* ===========================
   CTA SECTION
   =========================== */
.cta { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); padding: 90px 20px; text-align: center; }
.cta h2 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--dark-color); color: rgba(255,255,255,0.75); padding: 60px 20px 30px; }
.footer-content { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-section h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-section ul li a, .footer-section p a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-section ul li a:hover, .footer-section p a:hover { color: var(--primary-color); }
.footer-section p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-section--brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; opacity: 0.7; }
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: all 0.3s ease; }
.social-link:hover { background: var(--primary-color); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; opacity: 0.55; }

/* ===========================
   RECURSOS DO APP
   =========================== */
.recursos-app { padding: 100px 20px; background: var(--white); text-align: center; }

.recursos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 56px;
}
.recurso-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    background: #f8f9fb;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.recurso-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.recurso-card-phone { flex-shrink: 0; display: flex; justify-content: center; align-items: flex-start; }
.phone-frame { width: 120px; border-radius: 22px; background: #111; padding: 6px; box-shadow: 0 0 0 2px #2a2a2a, 0 12px 30px rgba(0,0,0,0.22); position: relative; }
.phone-frame::before { content: ''; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 30px; height: 4px; background: #2a2a2a; border-radius: 10px; z-index: 2; }
.phone-frame img { width: 100%; border-radius: 16px; display: block; }
.recurso-card-texto { flex: 1; min-width: 0; }
.recurso-numero { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: rgba(245,166,35,0.15); line-height: 1; margin-bottom: 2px; }
.recurso-card-texto h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark-color); margin-bottom: 8px; line-height: 1.3; }
.recurso-card-texto p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; margin-bottom: 12px; }
.recurso-lista { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.recurso-lista li { font-size: 0.83rem; color: var(--dark-color); font-weight: 500; }

/* 5º card centralizado quando ficar sozinho na linha */
.recursos-grid .recurso-card--last:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.recurso-destaque { display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; background: linear-gradient(135deg, #1a2a3a, #2d3e50); border-radius: 20px; padding: 50px 52px; margin-top: 80px; text-align: left; color: var(--white); }
.recurso-destaque-icon { font-size: 4rem; line-height: 1; }
.recurso-destaque-texto h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.recurso-destaque-texto p { opacity: 0.88; font-size: 0.97rem; line-height: 1.7; }

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 62px; height: 62px; background: var(--whatsapp-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 25px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s ease; animation: pulse-whatsapp 2.5s infinite; }
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.1); }
@keyframes pulse-whatsapp {
    0%   { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50%  { box-shadow: 0 6px 35px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
}
.whatsapp-tooltip { position: absolute; right: 72px; background: var(--dark-color); color: var(--white); padding: 7px 14px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top { position: fixed; bottom: 100px; right: 32px; width: 42px; height: 42px; background: var(--dark-secondary); color: var(--white); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); transition: all 0.3s ease; z-index: 998; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-color); transform: translateY(-2px); }

/* ===========================
   ANIMAÇÕES
   =========================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVIDADE
   =========================== */
@media (max-width: 1024px) {
    .nav { gap: 20px; }
    .header-phone { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .hero-content--centered { padding: 60px 20px; }
    .hero-text--centered h1 { font-size: 2.1rem; }
    .ps-grid { grid-template-columns: 1fr; }
    .ps-arrow { transform: rotate(90deg); font-size: 2rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .step-arrow { transform: rotate(90deg); }
    .benefits-content { grid-template-columns: 1fr; }
    .formulario-container { grid-template-columns: 1fr; gap: 40px; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .trust-bar-content { gap: 0; }
    .trust-item { padding: 10px 20px; }
    .trust-divider { display: none; }
    .recursos-grid { grid-template-columns: 1fr; gap: 24px; }
    .recurso-card { flex-direction: row; align-items: flex-start; text-align: left; }
    .recurso-destaque { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; gap: 18px; }
    .recurso-destaque .btn { margin: 0 auto; }
}
@media (max-width: 768px) {
    .urgency-bar { font-size: 0.78rem; }
    .header { top: 34px; }
    .nav { display: none; position: fixed; top: 100px; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 20px; gap: 16px; box-shadow: var(--shadow); z-index: 99; border-top: 1px solid var(--gray-light); }
    .nav.active { display: flex; }
    .nav-toggle { display: flex; }
    .header-actions .header-phone { display: none; }
    .hero { min-height: auto; }
    .hero-text p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.9rem; }
    .ps-problem, .ps-solution { padding: 28px 22px; }
    .como-funciona, .benefits, .depoimentos, .formulario-section, .recursos-app { padding: 70px 20px; }
    .formulario-card { padding: 30px 24px; }
    .cta h2 { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .benefits-stats { grid-template-columns: 1fr 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .recurso-card { flex-direction: column; align-items: center; text-align: center; }
    .phone-frame { width: 140px; }
}
@media (max-width: 480px) {
    .hero-text--centered h1 { font-size: 1.65rem; }
    .section-title { font-size: 1.6rem; }
    .stat-number { font-size: 1.8rem; }
    .benefits-stats { grid-template-columns: 1fr; }
    .formulario-card { padding: 24px 18px; }
    .trust-bar-content { flex-direction: column; gap: 12px; }
    .recurso-destaque { padding: 28px 20px; }
}