/* ============================================
   BeeMenu Landing Page - Stylesheet
   Visual Fiel ao Design da Stone
   ============================================ */

/* ===== VARIÁVEIS ===== */
:root {
    --green: #24A148;
    --green-dark: #1B7A36;
    --green-light: #3CBF5F;
    --green-tint: #EBF7EE;
    --lime: #CCFF00;
    --dark: #111827;
    --dark-hero: #0B1B0B;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D8D8D8;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --white: #FFFFFF;
    --black: #000000;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tipografia numérica alinhada (preços, estatísticas) */
.stat-num, .plano-amount, .plano-currency {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

/* Scrollbar customizada */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

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

/* ===== BARRA DE OFERTA ===== */
.offer-bar {
    background: var(--lime);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 36px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.offer-scroll {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee var(--marquee-speed, 22s) linear infinite;
}
.offer-track {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
}
.offer-text {
    font-size: 0.8125rem;
    font-weight: 700;
    padding-right: 60px;
    flex-shrink: 0;
    white-space: nowrap;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 18px 0;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}
.navbar.scrolled {
    background: var(--white);
    padding: 12px 0;
    border-bottom-color: rgba(0,0,0,0.05);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
/* Estado "no topo, sobre o hero escuro": logo e links em branco pra manter
   legibilidade. Só vale pro menu horizontal do desktop - no mobile o menu
   vira um drawer com fundo branco, então o texto tem que continuar escuro. */
.navbar:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
.navbar:not(.scrolled) .toggle-icon { color: #fff; }
@media (min-width: 769px) {
    .navbar:not(.scrolled) .nav-link { color: #fff; }
    .navbar:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,0.12); }
    .navbar:not(.scrolled) .nav-login { color: #fff; }
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.04em;
    flex-shrink: 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.nav-menu li { list-style: none; }
.nav-mobile-only { display: none; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
    font-family: var(--font);
    white-space: nowrap;
}
.nav-link:hover {
    background: var(--gray-100);
}
.nav-chevron {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
    flex-shrink: 0;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-login {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--dark);
    padding: 8px 4px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-login:hover { opacity: 0.7; }
.nav-cta-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 100px;
}
.nav-toggle {
    display: none;
    padding: 8px;
}
.toggle-icon { width: 24px; height: 24px; }

.logo-img {
    height: 40px;  /* Ajuste conforme sua logo */
    width: auto;
    display: block;
}

/* Se quiser remover o texto original */
.logo span {
    display: none;
}

/* ===== HERO ===== */
.hero {
    background: var(--dark-hero);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}
.hero-gradient {
    color: var(--green);
}
.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
.hero-benefit svg { width: 18px; height: 18px; color: var(--green); }
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
}
.btn-lime {
    padding: 16px 32px;
    background: var(--lime);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
}
.btn-lime:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 255, 0, 0.3);
}
.hero-phone {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.btn-outline-hero {
    padding: 16px 32px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
}
.btn-outline-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.hero-phone strong {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img-wrapper {
    background: transparent;
    width: 100%;
    max-width: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image {
    max-width: 100%;
    height: auto;
}
.hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.placeholder-text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

/* ===== MARQUEE BANDEIRAS ===== */
.brands-section {
    padding: 50px 0;
    background: var(--gray-100);
    overflow: hidden;
}
.brands-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
    display: flex;
    gap: 24px;
    animation: scroll-brands 22s linear infinite;
    flex-shrink: 0;
    align-items: center;
}
@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    padding: 8px 18px;
    background: var(--white);
    border-radius: 100px;
    border: 1px solid var(--gray-200);
}

/* ===== TAG SEÇÃO ===== */
.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 16px;
}
.section-title-dark {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-title-dark.center { text-align: center; }
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 48px;
}
.section-subtitle.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.highlight { color: var(--green); font-weight: 700; }

/* ===== FALE COM A GENTE ===== */
.fale-section {
    padding: 120px 0;
    background: var(--green);
}
.fale-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.fale-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.fale-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 28px;
}
.fale-list { list-style: none; }
.fale-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}
.fale-icon {
    width: 22px;
    height: 22px;
    color: var(--lime);
    flex-shrink: 0;
}
.fale-section .section-tag { color: var(--lime); }
.fale-form-wrapper {
    display: flex;
    justify-content: center;
}
.fale-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 380px;
}
.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: var(--font);
    margin-bottom: 12px;
    transition: var(--transition);
    outline: none;
}
.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(36, 161, 72, 0.1);
}
.form-input::placeholder { color: var(--gray-400); }
.form-privacy {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 16px 0 20px;
    text-align: center;
}
.form-privacy a { color: var(--green); text-decoration: underline; }
.btn-whatsapp {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ===== MUITO MAIS QUE... ===== */
.mais-section {
    padding: 120px 0;
    background: var(--white);
}
.mais-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mais-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--gray-100);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--gray-200);
}
.mais-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.mais-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===== CAROUSEL ===== */
.cards-section {
    padding: 120px 0;
    background: var(--white);
}
.carousel-header {
    margin-bottom: 40px;
}
.carousel-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.carousel-viewport {
    position: relative;
}
.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 8px 0 24px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.card-item {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    background: var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    flex-shrink: 0;
    transition: var(--transition);
}
.card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.card-icon {
    width: 40px;
    height: 40px;
    color: var(--dark);
    margin-bottom: 20px;
}
.card-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.card-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.carousel-nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark);
}
.carousel-arrow:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.carousel-arrow svg { width: 20px; height: 20px; }

/* ===== PREÇOS ===== */
.precos-section {
    padding: 120px 0;
    background: var(--white);
}
.precos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.precos-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.precos-list {
    margin: 24px 0 32px;
    list-style: none;
}
.precos-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.6;
}
.precos-icon {
    width: 22px;
    height: 22px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}
.precos-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.precos-placeholder {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--gray-200);
}

/* ===== FUNCIONALIDADES DETALHADAS ===== */
.detalhe-section {
    padding: 120px 0;
    background: var(--gray-100);
}
.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.detail-block:last-child { margin-bottom: 0; }
.detail-reverse .detail-content { order: -1; }
.detail-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 12px;
}
.detail-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
}
.detail-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--white);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--gray-200);
}
.detail-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--dark);
}
.detail-content p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ===== COMO FUNCIONA ===== */
.como-section {
    padding: 120px 0;
    background: var(--green-tint);
}
.como-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}
.como-title.center { text-align: center; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
}
.step-num {
    width: 52px;
    height: 52px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(36, 161, 72, 0.3);
}
.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.step-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== ESTATÍSTICAS ===== */
.stats-section {
    padding: 80px 0;
    background: var(--dark);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-card {
    text-align: center;
}
.stat-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===== COMPARATIVO ===== */
.comparativo-section {
    padding: 120px 0;
    background: var(--white);
}
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
}
.comp-table {
    width: 100%;
    border-collapse: collapse;
}
.comp-table th, .comp-table td {
    padding: 16px 24px;
    text-align: left;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-200);
}
.comp-table th {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    background: var(--gray-100);
}
.comp-table .comp-highlight {
    color: var(--green);
    background: rgba(36, 161, 72, 0.05);
}
.comp-table .comp-yes {
    background: rgba(36, 161, 72, 0.03);
    font-weight: 600;
    color: var(--green);
}
.comp-table .comp-no { color: #DC2626; }
.comp-table td i { width: 18px; height: 18px; }
.comp-table .comp-yes i { color: var(--green); }
.comp-table .comp-no i { color: #DC2626; }
.comp-table tr:last-child td { border-bottom: none; }

/* ===== PLANOS ===== */
.planos-section {
    padding: 120px 0;
    background: var(--gray-100);
}
.planos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}
.plano-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 36px 32px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}
.plano-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.plano-destaque {
    border-color: var(--green);
}
.plano-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.plano-label-featured {
    background: var(--green);
    color: var(--white);
}
.plano-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.plano-currency { font-size: 1rem; font-weight: 700; color: var(--gray-500); }
.plano-amount { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.plano-period { font-size: 0.9375rem; color: var(--gray-500); font-weight: 500; }
.plano-desc { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; }
.plano-list { margin-bottom: 28px; }
.plano-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.9375rem;
}
.plano-list li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.btn-outline-plan {
    width: 100%;
    padding: 14px 24px;
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    transition: var(--transition);
}
.btn-outline-plan:hover {
    border-color: var(--green);
    color: var(--green);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.faq-q:hover { color: var(--green); }
.faq-ico {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-ico { transform: rotate(180deg); color: var(--green); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 22px; font-size: 0.9375rem; color: var(--gray-500); line-height: 1.7; }

/* ===== CTA FINAL ===== */
.cta-section {
    padding: 100px 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.btn-white-cta {
    padding: 18px 40px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 100px;
    display: inline-flex;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 32px;
    background: var(--dark);
    color: var(--gray-400);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    display: block;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
}
.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-ico { width: 16px; height: 16px; color: var(--green); }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.8125rem;
}

/* ===== BOTÕES GERAIS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-green {
    padding: 12px 24px;
    background: var(--green);
    color: var(--white);
    font-size: 0.9375rem;
}
.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(36, 161, 72, 0.3);
}

/* ===== VOLTAR AO TOPO ===== */
.back-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(36, 161, 72, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }
.back-top svg { width: 22px; height: 22px; }

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===== SHADOW ===== */
:root {
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

/* ============================================
   REFINAMENTO PREMIUM
   Dropdown funcional, textura no hero, cards
   elevados e detalhes de acabamento "topo de linha"
   ============================================ */

/* ----- Dropdown de navegação (Produtos) ----- */
.nav-has-dropdown { position: relative; }
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 8px);
    width: 380px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    padding: 10px;
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-premium), transform 0.25s var(--ease-premium), visibility 0.25s;
    z-index: 1002;
}
.nav-has-dropdown:hover .nav-dropdown-panel,
.nav-has-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background 0.2s ease;
}
.nav-dropdown-item:hover { background: var(--gray-100); }
.nav-dropdown-item i {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}
.nav-dropdown-item span { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-item strong { font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.nav-dropdown-item span { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.4; }
.nav-dropdown .nav-chevron { transition: transform 0.25s var(--ease-premium); }
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* ----- Textura premium do hero ----- */
.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--mx, 18%) var(--my, 22%), rgba(36, 161, 72, 0.35) 0%, transparent 42%),
        radial-gradient(circle at 82% 12%, rgba(204, 255, 0, 0.14) 0%, transparent 38%),
        radial-gradient(circle at 70% 85%, rgba(60, 191, 95, 0.22) 0%, transparent 45%);
    pointer-events: none;
    transition: background 0.3s ease-out;
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lime);
    background: rgba(204, 255, 0, 0.08);
    border: 1px solid rgba(204, 255, 0, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-eyebrow i { width: 15px; height: 15px; }
.hero-container, .hero-visual { position: relative; z-index: 1; }

/* ----- Selos flutuantes ao redor do visual ----- */
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 12px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark);
    z-index: 2;
    animation: hero-float-bob 5s ease-in-out infinite;
}
.hero-float i { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.hero-float strong { color: var(--green-dark); }
.hero-float-1 { top: 8%; left: -6%; animation-delay: 0s; }
.hero-float-2 { bottom: 12%; right: -8%; animation-delay: 1.6s; }
@keyframes hero-float-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ----- Botão magnético (leve reação ao cursor) ----- */
.btn-magnetic { position: relative; overflow: hidden; }
.btn-magnetic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.5) 40%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.6s var(--ease-premium);
}
.btn-magnetic:hover::after { transform: translateX(120%); }

/* ----- Cards de funcionalidades (carousel) — acabamento premium ----- */
.card-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.card-item:hover {
    border-color: rgba(36, 161, 72, 0.35);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.1);
}
.card-icon-chip {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 161, 72, 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.card-item:hover .card-icon-chip {
    background: var(--green);
}
.card-icon { width: 22px; height: 22px; color: var(--green); margin-bottom: 0; transition: var(--transition); }
.card-item:hover .card-icon { color: var(--white); }

/* ----- Plano em destaque — anel de brilho ----- */
.plano-destaque {
    position: relative;
    box-shadow: 0 20px 48px rgba(36, 161, 72, 0.16);
}
.plano-destaque::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--green), var(--lime));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ----- Tabela comparativa — coluna destacada com leve profundidade ----- */
.comp-table .comp-highlight { position: relative; }
.table-wrapper { box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08); }

/* ----- Detalhe das imagens placeholder — moldura premium ----- */
.detail-placeholder, .precos-placeholder, .mais-placeholder {
    background: linear-gradient(160deg, var(--gray-100) 0%, var(--white) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), var(--shadow-sm);
}

/* ----- Foco acessível reforçado nos itens de dropdown ----- */
.nav-dropdown-item:focus-visible { outline-offset: -2px; }

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-benefits { justify-content: center; }
    .hero-cta-row { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-img-wrapper { max-width: 340px; margin: 0 auto; }
    .hero-float { display: none; }
    .fale-inner { grid-template-columns: 1fr; gap: 40px; }
    .mais-inner { grid-template-columns: 1fr; gap: 40px; }
    .precos-inner { grid-template-columns: 1fr; gap: 40px; }
    .detail-block { grid-template-columns: 1fr; gap: 32px; }
    .detail-reverse .detail-content { order: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .offer-bar { height: 30px; }
    .offer-text { font-size: 0.6875rem; }
    .navbar { top: 30px; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 8px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 998;
        border-left: 1px solid var(--gray-200);
    }
    .nav-menu.open { right: 0; }
    .nav-menu li {
        width: 100%;
    }
    .nav-mobile-only { display: block; }
    .nav-mobile-divider { border-top: 1px solid var(--gray-200); margin-top: 8px; padding-top: 8px; }
    .nav-link-cta { color: var(--green) !important; font-weight: 700; }
    .nav-menu { overflow-y: auto; }
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        font-size: 1rem;
    }
    .nav-toggle { display: flex; }
    .nav-dropdown-panel {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-100);
        margin-top: 4px;
        max-height: 0;
        padding: 0 10px;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 0.3s var(--ease-premium), padding 0.3s ease;
    }
    .nav-has-dropdown:hover .nav-dropdown-panel { max-height: 0; }
    .nav-has-dropdown.is-open .nav-dropdown-panel { max-height: 400px; padding: 10px; }
    .nav-has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
    .nav-actions {
        display: none;
    }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: 2.75rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .planos-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2.25rem; }
    .hero-cta-row { flex-direction: column; }
    .btn-lime { width: 100%; text-align: center; }
    .card-item { min-width: 260px; max-width: 260px; }
    .back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* ===== FOCUS ===== */
*:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
    border-radius: 4px;
}
::selection { background: rgba(36, 161, 72, 0.2); color: var(--dark); }
