/*
 * LANCHER LANDING PAGE
 */

/*
 *
 * Poppins
 *
 * Pesos usados:
 * - 100 (Thin): Disponível
 * - 200 (ExtraLight): Disponível
 * - 300 (Light): Textos secundários
 * - 400 (Regular): Corpo de texto padrão
 * - 500 (Medium): Disponível
 * - 600 (SemiBold): Headings H3, H4, labels
 * - 700 (Bold): Badges, destaques, CTAs
 * - 800 (ExtraBold): Disponível
 * - 900 (Black): Disponível
 *
 */
@import url('../fonts/Poppins/stylesheet.css');

/* ========================================
   VARIÁVEIS CSS - IDENTIDADE VISUAL
   ======================================== */

:root {
    /* Cores da Marca */
    --lancher-red-primary: #C70E1C;
    --lancher-red-dark: #7F1717;
    --lancher-brown: #5D2814;
    --lancher-gray-light: #f8f9f9;
    --lancher-white: #FFFFFF;
    --lancher-black: #000000;

    /* Cores Auxiliares */
    --lancher-bg-light: #f8f9f9;
    --lancher-bg-dark: #1A1A1A;
    --lancher-text-gray: #666666;
    --lancher-border: #E5E5E5;

    /* Tipografia - Google Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Variaveis de Tema - Light Mode (padrao) */
    --theme-bg-primary: #FFFFFF;
    --theme-bg-secondary: #f8f9f9;
    --theme-bg-surface: #FFFFFF;
    --theme-text-primary: #000000;
    --theme-text-secondary: #666666;
    --theme-border-color: #E5E5E5;
    --theme-navbar-bg: #FFFFFF;
}

/* ========================================
   TEMA ESCURO (DARK MODE) - LANDING
   Baseado em Material Design Guidelines
   ======================================== */

:root[data-theme="dark"],
html[data-theme="dark"] {
    /* Backgrounds - Sistema de elevacao Material Design */
    --theme-bg-primary: #121212;      /* Base - Material Design */
    --theme-bg-secondary: #1A1A1A;    /* Elevacao nivel 1 */
    --theme-bg-surface: #1F1F1F;      /* Elevacao nivel 2 */
    --theme-bg-elevated: #262626;     /* Elevacao nivel 3 */

    /* Texto - Evitando branco puro */
    --theme-text-primary: #E8E8E8;    /* ~91% branco */
    --theme-text-secondary: #A8A8A8;  /* ~66% branco */
    --theme-text-muted: #6B6B6B;      /* ~42% branco */

    /* Bordas e UI */
    --theme-border-color: #2E2E2E;
    --theme-border-light: #252525;
    --theme-navbar-bg: #141414;
    --theme-input-bg: #1A1A1A;
    --theme-card-bg: #1A1A1A;

    /* Cores da marca para dark mode */
    --lancher-red-primary: #E63946;   /* Vermelho adaptado */
    --lancher-red-dark: #C70E1C;
    --lancher-red-accent: #FF6B6B;

    /* Ajustes de variaveis existentes */
    --lancher-bg-light: #1A1A1A;
    --lancher-text-gray: #A8A8A8;
    --lancher-border: #2E2E2E;
    --lancher-gray-light: #1F1F1F;

    /* Sombras mais fortes */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ========================================
   DARK MODE - ESTILOS ESPECÍFICOS
   ======================================== */

:root[data-theme="dark"] .hero-section,
html[data-theme="dark"] .hero-section {
    background: var(--lancher-bg-dark) !important;
}

:root[data-theme="dark"] .hero-section::before,
html[data-theme="dark"] .hero-section::before {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.03) 0%, transparent 50%);
}

/* ========================================
   RESET E BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.landing-page {
    font-family: var(--font-body);
    color: var(--theme-text-primary);
    background-color: var(--theme-bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

.landing-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.landing-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    font-weight: 600;
}

.landing-h3 {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    font-weight: 600;
}

.landing-h4 {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.4;
    font-weight: 600;
    color: var(--theme-text-primary);
}

/* Classes utilitárias de texto que respondem ao tema */
.text-theme {
    color: var(--theme-text-primary);
}

.landing-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    font-weight: 400;
    color: var(--theme-text-secondary);
}

.landing-body {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.7;
    font-weight: 300;
    color: var(--theme-text-secondary);
}

.landing-small {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--lancher-text-gray);
}

/* ========================================
   CORES UTILITÁRIAS
   ======================================== */

.text-red {
    color: var(--lancher-red-primary) !important;
}

.text-red-dark {
    color: var(--lancher-red-dark) !important;
}

.text-brown {
    color: var(--lancher-brown) !important;
}

.text-gray {
    color: var(--lancher-text-gray) !important;
}

.text-white {
    color: var(--lancher-white) !important;
}

.text-gold {
    color: #FFD700 !important;
}

.bg-red {
    background-color: var(--lancher-red-primary) !important;
}

.bg-red-dark {
    background-color: var(--lancher-red-dark) !important;
}

.bg-brown {
    background-color: var(--lancher-brown) !important;
}

.bg-light {
    background-color: var(--theme-bg-secondary) !important;
}

.bg-dark {
    background-color: var(--lancher-bg-dark) !important;
}

.bg-white {
    background-color: var(--theme-bg-primary) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--lancher-bg-light);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(199, 14, 28, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(93, 40, 20, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 600;
    color: var(--theme-text-primary);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    color: var(--lancher-text-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.hero-photo {
    width: 75%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-rabisco {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 150%;
    max-width: 600px;
    z-index: 1;
    opacity: 1;
    animation: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   BOTÕES
   ======================================== */

.btn-lancher {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: none;
    box-shadow: var(--shadow-sm);
}

.btn-lancher:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-lancher:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--lancher-red-primary);
    color: var(--lancher-white);
}

.btn-primary:hover {
    background-color: var(--lancher-red-dark);
    color: var(--lancher-white);
}

.btn-secondary {
    background-color: var(--lancher-white);
    color: var(--lancher-black);
}

.btn-secondary:hover {
    background-color: var(--lancher-black);
    color: var(--lancher-white);
}

.btn-outline-red {
    background-color: transparent;
    color: var(--lancher-red-primary);
    border: 2px solid var(--lancher-red-primary);
    box-shadow: none;
}

.btn-outline-red:hover {
    background-color: var(--lancher-red-primary);
    color: var(--lancher-white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8125rem;
}

/* ========================================
   SECTIONS
   ======================================== */

.landing-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.landing-section.bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(199, 14, 28, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(93, 40, 20, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.landing-section.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(199, 14, 28, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(93, 40, 20, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.landing-section.compact {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.section-title {
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.feature-card {
    background: var(--theme-bg-primary);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--theme-border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--lancher-red-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--lancher-white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--lancher-red-dark);
}

.feature-title {
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.feature-description {
    color: var(--theme-text-secondary);
    position: relative;
    z-index: 2;
}

/* ========================================
   BENEFIT LIST
   ======================================== */

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--lancher-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--lancher-red-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lancher-white);
    font-size: 1.5rem;
}

.benefit-text {
    flex: 1;
}

/* ========================================
   BENEFIT GRID - NOVA VERSÃO
   ======================================== */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    margin-right: 34px;
}

.benefit-grid-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--lancher-bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.benefit-grid-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--lancher-red-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lancher-white);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.benefit-grid-item:hover .benefit-grid-icon {
    background: var(--lancher-red-dark);
}

.benefit-grid-text {
    flex: 1;
}

.benefit-grid-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--theme-text-primary);
}

.benefit-grid-text p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--lancher-text-gray);
}

/* Imagem com badge */
.benefit-image-container {
    position: relative;
}

.benefit-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefit-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--lancher-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-badge-icon {
    width: 40px;
    height: 40px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lancher-white);
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-badge-text h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    color: var(--lancher-black);
}

.benefit-badge-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--lancher-text-gray);
}

/* Responsive para mobile */
@media (max-width: 767px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
    }

    .benefit-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }
}

/* ========================================
   TOTEM SECTION
   ======================================== */

.totem-section-row {
    position: relative;
}

.totem-image-col {
    display: flex;
    align-items: stretch;
}

.totem-card-col {
    transition-delay: 0.2s;
    margin-left: -50px;
    z-index: 10;
    display: flex;
}

.totem-image {
    width: 100%;
    height: 90%;
    padding: 10px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: var(--lancher-bg-light);
}

.totem-card {
    background: var(--lancher-black);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    color: var(--lancher-white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.totem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.totem-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.totem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.totem-badge {
    display: inline-flex;
    align-self: flex-start;
    width: fit-content;
    color: var(--lancher-white);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--lancher-white);
    border-radius: var(--radius-xl);
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.totem-fingerprint-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    color: #6abfff;
}

.totem-note {
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.totem-card h2,
.totem-card h4,
.totem-card p,
.totem-card div {
    position: relative;
    z-index: 2;
}

/* Garantir texto branco dentro do totem-card */
.totem-card .landing-h4,
.totem-card .landing-small,
.totem-card .landing-body {
    color: var(--lancher-white);
}

/* Totem - Video */
.totem-video-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.totem-video {
    width: 100%;
    height: 100%;
    max-height: 590px;
    object-fit: contain;
    border-radius: 16px;
}



/* =======================================
   PAYMENT SECTION
   ======================================== */

/* Lista de Features do Pagamento */
.payment-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.payment-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 0.5rem 0;
}

.payment-feature-item i {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.payment-feature-item span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lancher-text-gray);
}

/* Mockup do Pagamento */
.payment-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
}

.payment-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
}

.payment-mockup img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

/* Phone Mockup - Interface de Pagamento */
.payment-phone-mockup {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: mockup-load 0.6s ease-out backwards;
}

@keyframes mockup-load {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.payment-phone-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(199, 14, 28, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Seção Recarga Automática - Largura Completa */
.payment-auto-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(22, 163, 74, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: section-slide-in 0.6s ease-out 0.2s backwards;
    width: 100%;
}

@keyframes section-slide-in {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-auto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    border-radius: var(--radius-md);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
    50% {
        transform: translateY(-50%) scale(1.3);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.payment-auto-section:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(22, 163, 74, 0.12));
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
    transform: translateY(-2px);
    cursor: pointer;
}

.payment-auto-section:hover::before {
    opacity: 0.5;
}

.payment-auto-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
    position: relative;
    z-index: 2;
}

.payment-auto-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #16A34A;
    animation: auto-reload-spin 3s ease-in-out infinite;
}

@keyframes auto-reload-spin {
    0%, 80%, 100% {
        transform: rotate(0deg);
    }
    10%, 70% {
        transform: rotate(360deg);
    }
}

.payment-auto-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.payment-auto-text strong {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--lancher-white);
}

.payment-auto-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.95;
}

/* Toggle Switch */
.payment-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 2;
}

.payment-toggle-active {
    background: var(--lancher-white);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: toggle-glow-pulse 2.5s ease-in-out 1.5s infinite;
}

@keyframes toggle-glow-pulse {
    0%, 100% {
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 24px rgba(255, 255, 255, 0.8), 0 4px 20px rgba(34, 197, 94, 0.5);
    }
}

.payment-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #16A34A;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.payment-toggle-active .payment-toggle-slider {
    transform: translateX(20px);
    background: #16A34A;
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.6), 0 0 16px rgba(22, 163, 74, 0.4);
    animation: toggle-activate-initial 0.8s ease-out 0.4s backwards;
}

@keyframes toggle-activate-initial {
    0% {
        transform: translateX(0) scale(1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    30% {
        transform: translateX(8px) scale(1.05);
    }
    60% {
        transform: translateX(20px) scale(1.2);
        box-shadow: 0 2px 12px rgba(22, 163, 74, 0.8), 0 0 20px rgba(22, 163, 74, 0.6);
    }
    100% {
        transform: translateX(20px) scale(1);
        box-shadow: 0 2px 10px rgba(22, 163, 74, 0.6), 0 0 16px rgba(22, 163, 74, 0.4);
    }
}

/* Payment Header */
.payment-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
    animation: header-fade-in 0.5s ease-out backwards;
}

@keyframes header-fade-in {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.payment-saldo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-saldo-icon:hover {
    transform: scale(1.05);
}

.payment-saldo-icon i {
    font-size: 2rem;
    color: var(--lancher-white);
}

.payment-header h3 {
    color: var(--lancher-white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Payment Cards */
.payment-card {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: card-fade-in 0.6s ease-out backwards;
}

.payment-card:nth-child(1) {
    animation-delay: 0.1s;
}

.payment-card:nth-child(2) {
    animation-delay: 0.2s;
}

.payment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

@keyframes card-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos específicos para Pix e Cartão */
.payment-card-pix {
    border-left: 3px solid rgba(34, 197, 94, 0.4);
}

.payment-card-pix:hover {
    border-left-color: rgba(34, 197, 94, 0.7);
}

.payment-card-credit {
    border-left: 3px solid rgba(59, 130, 246, 0.4);
}

.payment-card-credit:hover {
    border-left-color: rgba(59, 130, 246, 0.7);
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card-header i {
    font-size: 1.375rem;
    color: var(--lancher-white);
}

.payment-card-header span {
    color: var(--lancher-white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.payment-card-body {
    color: var(--lancher-white);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.payment-value-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.payment-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-align: left;
}

.payment-value {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--lancher-white);
    margin-bottom: 0;
    text-align: right;
    animation: value-appear 0.5s ease-out 0.3s backwards;
}

@keyframes value-appear {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    animation: status-appear 0.5s ease-out 0.8s backwards;
}

.payment-status-success {
    color: #22C55E;
}

.payment-status-success i {
    font-size: 1rem;
    animation: success-icon-pop 0.5s ease-out 0.8s backwards;
}

@keyframes status-appear {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes success-icon-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Payment Total */
.payment-total {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border: 2px solid rgba(199, 14, 28, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    animation: total-slide-up 0.6s ease-out 1s backwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-total:hover {
    border-color: rgba(199, 14, 28, 0.6);
    box-shadow: 0 4px 16px rgba(199, 14, 28, 0.25);
}

.payment-total-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-align: left;
}

.payment-total-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--lancher-white);
    letter-spacing: -0.02em;
    text-align: right;
    animation: value-count-up 0.8s ease-out 1s backwards;
}

@keyframes total-slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes value-count-up {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Estilos antigos mantidos para compatibilidade */
.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--lancher-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 3px solid var(--lancher-red-primary);
    position: relative;
    overflow: hidden;
}

.payment-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(199, 14, 28, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.payment-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--lancher-red-dark);
}

.payment-feature i {
    color: var(--lancher-red-primary);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.payment-feature:hover i {
    transform: scale(1.1);
}

.payment-feature span {
    position: relative;
    z-index: 2;
}

/* ========================================
   STEP BY STEP
   ======================================== */

/* Seção de Steps - Background Branco/Cinza Claro */
.steps-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.steps-section .section-title {
    color: var(--lancher-black);
    margin-bottom: var(--spacing-xl);
}

/* Grid de Cards Horizontal */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: var(--spacing-md);
}

/* Card Individual */
.step-card {
    background: var(--lancher-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Container Top - Número + Ícone */
.step-top {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* Número do Passo - Grande em Rosa Claro */
.step-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(199, 14, 28, 0.08);
    line-height: 1;
    user-select: none;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
}

/* Ícone do Card - Vermelho Quadrado */
.step-icon {
    width: 64px;
    height: 64px;
    background: var(--lancher-red-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--lancher-white);
}

.step-card:hover .step-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(199, 14, 28, 0.3);
}

/* Container de Conteúdo - Título e Descrição */
.step-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 2;
}

/* Título do Card */
.step-title {
    color: var(--lancher-black);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0;
}

/* Descrição do Card */
.step-description {
    color: var(--lancher-text-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Banner Vermelho no Final */
.steps-banner {
    background: var(--lancher-red-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-banner p {
    color: var(--lancher-white);
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

.result-highlight p {
    color: var(--lancher-text-gray);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.result-highlight p strong {
    color: var(--lancher-black);
    font-weight: 600;
}

/* ========================================
   EFÍ BANK SECTION - NOVO DESIGN
   ======================================== */

/* Badge Efí */
.badge-efi {
    background-color: #d9621e2e;
    color: var(--lancher-red-primary);
    border: 1px solid rgba(199, 14, 28, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-efi i {
    font-size: 1rem;
}

/* Card Rosa Claro - Conta Digital Efí */
.efi-card-light {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.efi-card-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(199, 14, 28, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.efi-card-light:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Ícone da Carteira */
.efi-icon-box {
    width: 60px;
    height: 60px;
    background: var(--lancher-red-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.efi-icon-box i {
    font-size: 1.75rem;
    color: var(--lancher-white);
}

/* Título do Card Rosa */
.efi-card-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lancher-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* Lista de Features - Checkmarks Vermelhos */
.efi-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.efi-features-new li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 0.625rem 0;
}

.efi-features-new li i {
    flex-shrink: 0;
    color: var(--lancher-red-primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.efi-features-new li span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--lancher-black);
}

/* Card Marrom Escuro - Taxas */
.efi-card-dark {
    background: linear-gradient(135deg, #f37124 0%, #621e05 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.efi-card-dark::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.efi-card-dark:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Título do Card Marrom */
.efi-card-title-dark {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lancher-white);
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Cards de Preços Internos */
.efi-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.efi-pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.efi-pricing-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Ícone dos Cards de Preço */
.efi-pricing-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.efi-pricing-icon i {
    font-size: 1.5rem;
    color: var(--lancher-white);
}

/* Label do Card de Preço */
.efi-pricing-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

/* Valor do Card de Preço */
.efi-pricing-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lancher-white);
    letter-spacing: -0.02em;
}

/* Nota no rodapé */
.efi-note {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Features dentro do card escuro - 2 colunas no desktop */
.efi-card-dark .efi-features-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.efi-card-dark .efi-features-new li i {
    color: var(--lancher-white);
}

.efi-card-dark .efi-features-new li span {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Mobile */
@media (max-width: 991px) {
    .efi-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .efi-card-dark .efi-features-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .efi-card-title-new {
        font-size: 1.25rem;
    }

    .efi-card-title-dark {
        font-size: 1.125rem;
    }

    .efi-pricing-value {
        font-size: 1.5rem;
    }

    .efi-icon-box {
        width: 50px;
        height: 50px;
    }

    .efi-icon-box i {
        font-size: 1.5rem;
    }
}

/* ========================================
   CONNECTIVITY SECTION
   ======================================== */

.devices-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    z-index: 2;
}

.device-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

.device-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.connectivity-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.connectivity-image:hover {
    transform: scale(1.02);
}

.connectivity-image-new {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Platform Badges */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.platform-badge:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Button Outline White */
.btn-outline-white {
    background-color: transparent;
    color: var(--lancher-white);
    border: 2px solid var(--lancher-white);
}

.btn-outline-white:hover {
    background-color: var(--lancher-white);
    color: var(--lancher-red-primary);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.testimonial-card {
    background: var(--lancher-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--lancher-red-primary);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at center, rgba(199, 14, 28, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--lancher-red-dark);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--lancher-text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    color: var(--lancher-red-primary);
    font-size: 2rem;
    font-weight: bold;
}

.testimonial-author {
    font-weight: 600;
    color: var(--lancher-black);
    position: relative;
    z-index: 2;
}

.testimonial-school {
    color: var(--lancher-text-gray);
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Logo Wall */
.logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    opacity: 0.7;
}

.logo-wall img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.logo-wall img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   SUPPORT SECTION
   ======================================== */

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.support-grid-card {
    background: #F5F5F7;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.support-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.support-grid-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

.support-card-green .support-grid-icon {
    background: #25D366;
}

.support-card-blue .support-grid-icon {
    background: #4285F4;
}

.support-card-purple .support-grid-icon {
    background: #8B5CF6;
}

.support-card-orange .support-grid-icon {
    background: #FF9500;
}

.support-grid-content {
    flex: 1;
}

.support-grid-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 4px;
}

.support-grid-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.support-main-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Estilos antigos mantidos para compatibilidade */
.support-card {
    background: var(--lancher-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--lancher-border);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(199, 14, 28, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lancher-red-primary);
}

.support-icon {
    font-size: 3rem;
    color: var(--lancher-red-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.support-card:hover .support-icon {
    transform: scale(1.1);
}

/* ========================================
   FORM SECTION - DESTAQUE
   ======================================== */

.form-section {
    background: linear-gradient(135deg, var(--lancher-red-primary) 0%, var(--lancher-red-dark) 100%);
    color: var(--lancher-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.form-benefits {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.form-benefits li {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--lancher-white);
}

.form-benefits i {
    color: var(--lancher-white);
    font-size: 1.25rem;
}

.signup-form {
    background: var(--lancher-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--lancher-black);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--lancher-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--lancher-red-primary);
    box-shadow: 0 0 0 3px rgba(199, 14, 28, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

.landing-footer {
    background: linear-gradient(180deg, var(--lancher-bg-dark) 0%, #0a0a0a 100%);
    color: var(--lancher-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--lancher-red-primary) 50%, transparent 100%);
}

.landing-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(199, 14, 28, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    margin-bottom: var(--spacing-md);
    color: var(--lancher-white);
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--lancher-red-primary);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-links a:hover {
    color: var(--lancher-white);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lancher-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--lancher-red-primary);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.footer-tagline {
    margin-top: var(--spacing-sm);
    font-style: italic;
    background: linear-gradient(90deg, var(--lancher-red-primary), var(--lancher-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

/* ========================================
   BADGES - SISTEMA REUTILIZÁVEL
   ======================================== */

/* Badge Base - Compartilhado por todas as variantes */
.badge-lancher {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 300;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

/* Badge Primary - Vermelho Lancher */
.badge-primary {
    background: var(--lancher-red-primary);
    color: var(--lancher-white);
}

/* Badge Success - Verde */
.badge-success {
    background: #22C55E;
    color: var(--lancher-white);
}

/* Badge Info - Azul */
.badge-info {
    background: #3B82F6;
    color: var(--lancher-white);
}

/* Badge Warning - Amarelo/Laranja */
.badge-warning {
    background: #F59E0B;
    color: var(--lancher-white);
}

/* Badge Light - Branco com borda */
.badge-light {
    background: var(--lancher-white);
    color: var(--lancher-bg-dark);
    border: 1px solid var(--lancher-red-primary);
    box-shadow: none;
}

.badge-light:hover {
    background: var(--lancher-bg-light);
    border-color: var(--lancher-red-dark);
}

/* Badge Dark - Preto */
.badge-dark {
    background: var(--lancher-bg-dark);
    color: var(--lancher-white);
}

/* Badge Brown - Marrom Lancher */
.badge-brown {
    background: var(--lancher-brown);
    color: var(--lancher-white);
}

/* Variante com ícone destacado */
.badge-lancher i {
    font-size: 1rem;
}

/* Tamanhos alternativos */
.badge-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

.badge-lg {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--lancher-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animation-delay-1 {
    animation-delay: 0.1s;
}

.animation-delay-2 {
    animation-delay: 0.2s;
}

.animation-delay-3 {
    animation-delay: 0.3s;
}

.animation-delay-4 {
    animation-delay: 0.4s;
}

.animation-delay-5 {
    animation-delay: 0.5s;
}

.animation-delay-6 {
    animation-delay: 0.6s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Tablets */
@media (max-width: 991px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .hero-section {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-lancher {
        width: 100%;
        justify-content: center;
    }

    .hero-photo {
        max-width: 100%;
    }

    .efi-cards,
    .payment-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    .landing-section {
        padding: var(--spacing-lg) 0;
    }

    .landing-h1 {
        font-size: 2.5rem;
    }

    .landing-h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: var(--spacing-md);
    }

    /* Steps Grid - Tablet */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .step-card {
        padding: var(--spacing-md);
    }

    .step-number {
        font-size: 6rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .steps-banner {
        padding: var(--spacing-sm);
    }

    .steps-banner p {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-photo {
        max-width: 100%;
    }

    .connectivity-image {
        max-width: 100%;
    }

    .payment-text {
        text-align: left;
    }

    .totem-fingerprint-icon {
        font-size: 2rem;
        color: #6abfff;
    }

    .result-highlight {
        padding: var(--spacing-md);
    }
}

/* ========================================
   UTILITIES
   ======================================== */

/* Garantir que conteúdo fique acima dos backgrounds */
.landing-section .container {
    position: relative;
    z-index: 2;
}

.landing-section .row {
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.py-1 {
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
}

.py-2 {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.py-3 {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-4 {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-5 {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.px-1 {
    padding-left: var(--spacing-xs);
    padding-right: var(--spacing-xs);
}

.px-2 {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

.px-3 {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.px-4 {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.px-5 {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: var(--spacing-xs);
}

.gap-2 {
    gap: var(--spacing-sm);
}

.gap-3 {
    gap: var(--spacing-md);
}

.gap-4 {
    gap: var(--spacing-lg);
}

.w-100 {
    width: 100%;
}

/* ========================================
   ESTILOS ESPECÍFICOS DO SISTEMA
   ======================================== */

/* Coluna fixa do lado direito (Caixa) */
.right-column-fixed {
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: white;
}

/* Animation delays para reveal */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* ========================================
   NAVBAR - LANDING PAGE E AUTENTICADO
   ======================================== */

/* Navbar transparente - Estado inicial para usuários autenticados */
.navbar.navbar-transparente {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar brand para usuários autenticados - estado transparente */
.navbar.navbar-transparente #navbar-brand {
    color: white;
    transition: color 0.3s ease;
}

/* Items da navbar para usuários autenticados - estado transparente */
.navbar.navbar-transparente .navbar-item {
    color: white !important;
    transition: color 0.3s ease;
}

.navbar.navbar-transparente .navbar-item:hover {
    color: yellow !important;
}

/* Navbar quando scrolled (landing page e autenticados após scroll) */
.navbar.navbar-scrolled,
.navbar.landing-navbar {
    background-color: var(--theme-navbar-bg) !important;
    border-bottom: 1px solid var(--theme-border-color) !important;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Navbar brand quando scrolled */
.navbar.navbar-scrolled #navbar-brand {
    color: var(--lancher-red-primary) !important;
}

/* Items quando scrolled */
.navbar.navbar-scrolled .navbar-item {
    color: var(--theme-text-secondary) !important;
}

.navbar.navbar-scrolled .navbar-item:hover {
    color: var(--lancher-red-primary) !important;
}

/* Dropdown menus */
.navbar-nav .dropdown-menu {
    border: 1px solid var(--theme-border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background-color: var(--theme-bg-primary);
}

.navbar-nav .dropdown-item {
    padding: 0.5rem 1.5rem;
    color: var(--theme-text-secondary);
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--theme-bg-secondary);
    color: var(--lancher-red-primary);
}

/* Logo da navbar */
#navbar-logo {
    margin-top: -5px;
    height: 30px;
    transition: all 0.3s ease;
}

/* Links da navbar na landing page */
.navbar-nav .nav-link.navbar-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lancher-text-gray);
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link.navbar-item:hover {
    color: var(--lancher-red-primary);
}

/* Efeito de underline ao passar o mouse */
.navbar-nav .nav-link.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--lancher-red-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link.navbar-item:hover::after {
    width: 80%;
}

/* Layout da navbar no desktop */
@media (min-width: 992px) {

    /* Container da navbar - garante que usa todo o espaço disponível */
    .navbar .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
    }

    /* Container flex para controlar o layout */
    .navbar .collapse.navbar-collapse {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        flex: 1;
    }

    /* Links centralizados - ocupam espaço flexível */
    .navbar-nav.mx-auto {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        margin: 0 !important;
    }

    /* Botão no final - alinhado à direita */
    .navbar-nav.ms-auto {
        flex: 0 0 auto;
        margin-left: auto !important;
        margin-right: 0 !important;
    }
}

/* Botão Entrar - Versão pequena e compacta */
.navbar .btn-primary {
    background-color: var(--lancher-red-primary);
    border-color: var(--lancher-red-primary);
    color: var(--lancher-white);
    font-weight: 500;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.navbar .btn-primary i {
    font-size: 0.875rem;
}

.navbar .btn-primary:hover {
    background-color: var(--lancher-red-dark);
    border-color: var(--lancher-red-dark);
    color: var(--lancher-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar .btn-primary:focus,
.navbar .btn-primary:active {
    background-color: var(--lancher-red-dark);
    border-color: var(--lancher-red-dark);
    color: var(--lancher-white);
    box-shadow: var(--shadow-sm);
}

/* Ajustes para mobile */
@media (max-width: 991.98px) {
    .navbar-nav.mx-auto {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .navbar .btn-primary {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
    }

    /* Remove underline effect no mobile */
    .navbar-nav .nav-link.navbar-item::after {
        display: none;
    }

    /* Espaçamento dos itens no mobile */
    .navbar-nav .nav-item {
        padding: 0.25rem 0;
    }
}

/* ========================================
   MELHORIAS DE RESPONSIVIDADE MOBILE
   ======================================== */

/* Tablets e telas médias */
@media (max-width: 991px) {
    /* Totem Section - Remove sobreposição em tablets */
    .totem-card-col {
        margin-left: 0;
    }

    .totem-section-row {
        gap: var(--spacing-md);
    }

    /* Hero Section - Tablets */
    .hero-section {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

    .hero-photo {
        width: 85%;
    }

    .hero-rabisco {
        width: 120%;
        opacity: 1;
    }

    .hero-ctas {
        flex-wrap: wrap;
    }

    /* Benefit grid - Remove margin problemático */
    .benefit-grid {
        margin-right: 0;
    }
}

/* Mobile - Ajustes específicos para telas pequenas */
@media (max-width: 767px) {
    /* Hero Section - Mobile Moderno Full Screen */
    .hero-section {
        min-height: 100svh;
        min-height: 100dvh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section .container-xxl {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100svh;
        min-height: 100dvh;
        padding: 2rem 1.5rem;
    }

    .hero-section .row {
        width: 100%;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        margin-bottom: 1.5rem;
        font-size: 1.75rem;
        line-height: 1.3;
        font-weight: 700;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -ms-hyphens: none !important;
        letter-spacing: -0.01em;
        text-align: center;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1.125rem;
        line-height: 1.6;
        max-width: 100%;
        word-break: normal;
        overflow-wrap: normal;
        hyphens: none;
        color: var(--lancher-text-gray);
        opacity: 1;
    }

    /* Logo mobile antes do título */
    .hero-logo-mobile {
        max-width: 330px;
        height: auto;
        margin-bottom: 2rem;
    }

    /* Modo claro: mostra logo vermelho, esconde branco */
    .hero-logo-light {
        display: block;
    }
    .hero-logo-dark {
        display: none;
    }

    /* Modo escuro: mostra logo branco, esconde vermelho */
    :root[data-theme="dark"] .hero-logo-light,
    html[data-theme="dark"] .hero-logo-light {
        display: none;
    }
    :root[data-theme="dark"] .hero-logo-dark,
    html[data-theme="dark"] .hero-logo-dark {
        display: block;
    }

    /* Imagem oculta em mobile para foco no texto */
    .hero-image {
        display: none;
    }

    .hero-photo {
        display: none;
    }

    .hero-rabisco {
        display: none;
    }

    /* Botões modernos empilhados */
    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin-top: 1rem;
    }

    .hero-ctas a {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
        border-radius: var(--radius-md);
        justify-content: center;
    }

    .hero-ctas a i {
        font-size: 1rem;
    }

    /* Sections - Reduz padding vertical */
    .landing-section {
        padding: var(--spacing-md) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-md);
    }

    /* Feature Cards - Ajusta padding */
    .feature-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    /* Benefit Grid - Ajustes mobile */
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }

    .benefit-grid-item {
        padding: var(--spacing-sm);
    }

    .benefit-grid-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .benefit-grid-text h4 {
        font-size: 0.875rem;
    }

    .benefit-grid-text p {
        font-size: 0.8rem;
    }

    /* Benefit Badge - Ajusta tamanho */
    .benefit-badge {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .benefit-badge-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .benefit-badge-text h5 {
        font-size: 0.75rem;
    }

    .benefit-badge-text p {
        font-size: 0.7rem;
    }

    /* Totem Section - Mobile */
    .totem-section.bg-white {
        background-color: var(--lancher-black) !important;
    }

    .totem-section .totem-card {
        background: transparent;
        box-shadow: none;
    }

    .totem-section-row {
        flex-direction: column;
    }

    .totem-card-col {
        margin-left: 0;
        margin-top: var(--spacing-md);
    }

    .totem-image {
        width: 100%;
        height: 800px;
        object-fit: cover;
        object-position: top center;
    }

    .totem-card {
        padding: var(--spacing-md);
    }

    .totem-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .totem-fingerprint-icon {
        font-size: 2.5rem;
        color: #6abfff;
    }

    /* Payment Section - Mobile */
    .payment-features-list {
        gap: var(--spacing-xs);
    }

    .payment-feature-item {
        padding: 0.375rem 0;
    }

    .payment-feature-item i {
        font-size: 1.125rem;
    }

    .payment-feature-item span {
        font-size: 0.875rem;
    }

    .payment-mockup {
        padding: 0;
        margin-top: var(--spacing-md);
    }

    /* Payment Phone Mockup - Mobile */
    .payment-phone-mockup {
        padding: var(--spacing-md);
        max-width: 100%;
    }

    .payment-auto-section {
        padding: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
        gap: var(--spacing-xs);
    }

    .payment-auto-content i {
        font-size: 1.25rem;
    }

    .payment-auto-text strong {
        font-size: 0.75rem;
    }

    .payment-auto-text span {
        font-size: 0.65rem;
    }

    .payment-toggle {
        width: 38px;
        height: 22px;
    }

    .payment-toggle-slider {
        width: 18px;
        height: 18px;
    }

    .payment-toggle-active .payment-toggle-slider {
        transform: translateX(16px);
    }

    .payment-saldo-icon {
        width: 64px;
        height: 64px;
    }

    .payment-saldo-icon i {
        font-size: 2rem;
    }

    .payment-header h3 {
        font-size: 1.25rem;
    }

    .payment-card {
        padding: var(--spacing-sm);
    }

    .payment-card-header i {
        font-size: 1.25rem;
    }

    .payment-card-header span {
        font-size: 0.875rem;
    }

    .payment-value-row {
        gap: var(--spacing-sm);
    }

    .payment-value {
        font-size: 1.5rem;
    }

    .payment-status {
        font-size: 0.8rem;
    }

    .payment-total {
        gap: var(--spacing-sm);
    }

    .payment-total-value {
        font-size: 2rem;
    }

    /* Payment Features - Mobile */
    .payment-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .payment-feature {
        padding: var(--spacing-sm);
        font-size: 0.875rem;
    }

    .payment-feature i {
        font-size: 1.25rem;
    }

    /* Steps Grid - Mobile (1 coluna) */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .step-card {
        padding: var(--spacing-md);
    }

    .step-number {
        font-size: 5.5rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    /* Efi Section - Mobile */
    .efi-section {
        padding: var(--spacing-lg);
        border-radius: var(--radius-lg);
    }

    .efi-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .efi-card {
        padding: var(--spacing-md);
    }

    .pricing-table {
        overflow-x: auto;
        margin-top: var(--spacing-md);
    }

    .pricing-table table {
        font-size: 0.875rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: var(--spacing-sm);
    }

    .pricing-note {
        padding: var(--spacing-sm);
        font-size: 0.8rem;
    }

    /* Support Cards - Mobile */
    .support-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }

    .support-icon {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-sm);
    }

    /* Support Grid - Mobile */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: var(--spacing-lg);
    }

    .support-grid-card {
        padding: 20px;
    }

    .support-grid-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .support-grid-label {
        font-size: 13px;
    }

    .support-grid-title {
        font-size: 15px;
    }

    .support-main-image {
        margin-top: var(--spacing-lg);
        border-radius: 16px;
    }

    /* Testimonial Cards - Mobile */
    .testimonial-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }

    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 1.5rem;
    }

    /* Form Section - Mobile */
    .signup-form {
        padding: var(--spacing-md);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-control {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .form-benefits li {
        padding: 0.375rem 0;
        font-size: 0.875rem;
    }

    .form-benefits i {
        font-size: 1.125rem;
    }

    /* Botões - Mobile */
    .btn-lancher {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .btn-lancher.btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .btn-lancher.btn-sm {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }

    /* Connectivity Image - Mobile */
    .connectivity-image {
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }

    /* Result Highlight - Mobile */
    .result-highlight {
        padding: var(--spacing-md);
        margin-top: var(--spacing-md);
    }

    /* Footer - Mobile */
    .landing-footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto var(--spacing-sm);
    }

    /* Platform Badges - Mobile */
    .platform-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .platform-badge i {
        font-size: 1rem;
    }

    /* Connectivity Image - Mobile */
    .connectivity-image-new {
        margin-top: var(--spacing-md);
    }
}

/* Telas muito pequenas (smartphones pequenos) */
@media (max-width: 575px) {
    /* Ajustes para telas extra pequenas */
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.75rem;
        --spacing-md: 1.25rem;
        --spacing-sm: 0.875rem;
        --spacing-xs: 0.5rem;
    }

    .landing-h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .landing-h2 {
        font-size: 1.625rem;
    }

    .landing-h3 {
        font-size: 1.375rem;
    }

    .landing-h4 {
        font-size: 1.125rem;
    }

    .landing-section {
        padding: var(--spacing-lg) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-md);
    }

    /* Container com padding reduzido */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Hero Section - Telas extra pequenas */
    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .hero-ctas a {
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
    }

    .hero-ctas a i {
        font-size: 0.7rem;
    }

    /* Feature Cards - Extra Small */
    .feature-card {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    /* Botões ocupam largura total */
    .btn-lancher:not(.btn-sm):not(.btn-lg) {
        width: 100%;
        justify-content: center;
    }

    /* Payment Feature - Quebra linha do ícone */
    .payment-feature {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    /* Payment Cards - Extra Small */
    .payment-value {
        font-size: 1.375rem;
    }

    .payment-total-value {
        font-size: 1.75rem;
    }

    .payment-label {
        font-size: 0.8rem;
    }

    /* Tabela de preços - Fonte menor */
    .pricing-table {
        font-size: 0.8125rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.625rem;
    }

    /* Whatsapp button - Menor */
    .whatsapp-float {
        bottom: 0.75rem;
        right: 0.75rem;
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }

    /* Totem Image - Altura reduzida */
    .totem-image {
        max-height: 750px;
        aspect-ratio: 9/16;
        object-fit: cover;
        object-position: top center;
    }

    /* Steps Grid - Extra Small */
    .steps-grid {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .step-card {
        padding: var(--spacing-sm);
    }

    .step-number {
        font-size: 5rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-icon i {
        font-size: 1.25rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.8125rem;
    }

    .result-highlight::before {
        height: 3px;
    }

    .result-highlight::after {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
        line-height: 36px;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }

    .result-highlight h3 {
        font-size: 1.125rem;
    }

    .result-highlight p {
        font-size: 0.875rem;
    }

    /* Payment Auto Section - Extra Small */
    .payment-auto-section {
        padding: 0.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-xs);
    }

    .payment-auto-content {
        width: 100%;
        gap: var(--spacing-xs);
    }

    .payment-auto-content i {
        font-size: 1.125rem;
    }

    .payment-auto-text strong {
        font-size: 0.7rem;
    }

    .payment-auto-text span {
        font-size: 0.625rem;
    }

    .payment-toggle {
        width: 36px;
        height: 20px;
        align-self: center;
    }

    .payment-toggle-slider {
        width: 16px;
        height: 16px;
    }

    .payment-toggle-active .payment-toggle-slider {
        transform: translateX(16px);
    }
}

/* Landscape mode em mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }

    .hero-photo {
        width: 100%;
        aspect-ratio: 21 / 9;
    }

    .hero-ctas {
        margin-top: var(--spacing-sm);
    }
}

/* ========================================
   AJUSTES BOOTSTRAP 5 GRID MOBILE
   ======================================== */

/* Ajustes gerais de gap para mobile */
@media (max-width: 767px) {
    /* Reduz gaps excessivos do Bootstrap em mobile */
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .row.g-3 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    /* Garante que colunas ocupem largura total em mobile */
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-10,
    .col-md-4,
    .col-md-6,
    .col-md-8 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Centraliza conteúdo em mobile quando necessário */
    .text-lg-start,
    .text-md-start {
        text-align: center !important;
    }

    /* Garante padding adequado nas colunas */
    [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 575px) {
    /* Reduz ainda mais os gaps */
    .row.g-4,
    .row.g-3 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }

    [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Alinhamentos centralizados */
    .d-flex.gap-2,
    .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}

/* Toggler customizado para navbar */
.navbar-toggler {
    border-color: var(--lancher-border);
    padding: 0.375rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar-toggler:hover {
    border-color: var(--lancher-red-primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(199, 14, 28, 0.25);
}

.navbar.landing-navbar .navbar-toggler-icon,
.navbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28102, 102, 102, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.navbar-transparente .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   MENU MOBILE - LANDING PAGE COM OVERLAY
   ======================================== */

/* Overlay escuro (mesmo padrão da sidebar) */
.landing-navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.landing-navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991.98px) {
    /* Container do menu mobile - slide da esquerda */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(280px, 80vw);
        height: 100vh;
        background-color: var(--theme-navbar-bg);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
        z-index: 1050;
        overflow-y: auto;
        transition: left 0.3s ease;
        display: flex !important;
        flex-direction: column;
    }

    /* Menu mobile visível - slide da esquerda */
    .navbar-collapse.show {
        left: 0;
    }

    /* Header do menu mobile */
    .navbar-collapse::before {
        content: 'Menu';
        display: block;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--theme-text-primary);
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 2px solid var(--lancher-red-primary);
    }

    /* Lista de navegação no mobile */
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    /* Itens do menu mobile - sem bordas */
    .navbar-collapse .nav-item {
        width: 100%;
    }

    /* Links do menu mobile com ícones */
    .navbar-collapse .nav-link {
        padding: 0.875rem 0.75rem;
        font-size: 1rem;
        color: var(--theme-text-primary);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        transition: var(--transition-fast);
        border-radius: var(--radius-sm);
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus {
        color: var(--lancher-red-primary);
        background-color: rgba(199, 14, 28, 0.08);
    }

    /* Ícones dos links */
    .navbar-collapse .nav-link-icon {
        font-size: 1.1rem;
        width: 1.25rem;
        text-align: center;
        color: var(--lancher-red-primary);
    }

    /* Separador visual antes do botão e toggle de tema */
    .navbar-collapse .navbar-nav.ms-auto {
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid var(--lancher-border);
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    /* Toggle de tema no mobile */
    .navbar-collapse .theme-toggle-wrapper {
        display: flex;
        justify-content: center;
    }

    /* Botão Entrar no mobile */
    .navbar-collapse .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Garante que navbar tenha z-index acima do overlay */
    .navbar.landing-navbar {
        position: fixed;
        z-index: 1060;
    }

    .navbar .container {
        position: relative;
    }

    /* Estilo do botão hamburger quando menu aberto */
    .navbar-toggler[aria-expanded="true"] {
        border-color: var(--lancher-red-primary);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C70E1C'%3e%3cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3e%3c/svg%3e");
    }
}

/* Ícones dos links - ocultos no desktop */
@media (min-width: 992px) {
    .nav-link-icon {
        display: none;
    }
}

/* ========================================
   TESTIMONIAL CAROUSEL - CARDS BRANCOS
   ======================================== */

.testimonial-carousel-wrapper-new {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-card-white {
    min-width: 100%;
    background: var(--theme-bg-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, background-color 0.3s ease;
}

.testimonial-card-white.active {
    display: block;
    opacity: 1;
}

.testimonial-quote-mark {
    font-size: 100px;
    line-height: 0.8;
    color: var(--lancher-red-primary);
    font-family: Georgia, serif;
    opacity: 0.9;
}

.testimonial-quote-text {
    font-size: 1.35rem;
    color: var(--theme-text-primary);
    line-height: 1.4;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 2px solid var(--theme-border-color);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--lancher-red-primary);
    box-shadow: 0 4px 12px rgba(199, 14, 28, 0.2);
}

.testimonial-author-details {
    flex-grow: 1;
}

.testimonial-author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

:root[data-theme="dark"] .testimonial-author-name,
html[data-theme="dark"] .testimonial-author-name {
    color: var(--lancher-white);
}

.testimonial-author-role {
    font-size: 1.05rem;
    color: var(--lancher-red-primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-author-school {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

:root[data-theme="dark"] .testimonial-author-school,
html[data-theme="dark"] .testimonial-author-school {
    color: #A8A8A8;
}

/* Controles do Carousel Novo */
.testimonial-controls-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-btn-prev,
.testimonial-btn-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.testimonial-btn-prev:hover,
.testimonial-btn-next:hover {
    background-color: var(--lancher-red-primary);
    border-color: var(--lancher-red-primary);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(199, 14, 28, 0.4);
}

.testimonial-dots-new {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot-new {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

.dot-new:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
}

.dot-new.active {
    background-color: var(--lancher-red-primary);
    width: 40px;
    height: 14px;
    border-radius: 7px;
}

@keyframes fadeInTestimonial {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logos das Escolas - Carousel Infinito */
.schools-logos {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #333;
    overflow: hidden;
}

.logos-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 50s linear infinite;
    width: max-content;
}

.logos-carousel-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
}

.school-logo {
    max-height: 90px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-slide:hover .school-logo {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsividade para Depoimentos e Logos */
@media (max-width: 1200px) {
    .testimonial-carousel-wrapper-new {
        max-width: 950px;
    }

    .testimonial-card-white {
        padding: 45px 50px;
    }
}

@media (max-width: 992px) {
    .testimonial-carousel-wrapper-new {
        max-width: 750px;
    }

    .testimonial-card-white {
        padding: 40px 45px;
    }

    .testimonial-quote-text {
        font-size: 1.25rem;
    }

    /* Support Grid - Tablet */
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: var(--spacing-lg);
    }

    .support-main-image {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    /* Ocultar logo no mobile por conta dos notches */
    .landing-navbar .navbar-brand {
        display: none !important;
    }

    .testimonial-carousel-wrapper-new {
        padding: 15px;
    }

    .testimonial-card-white {
        padding: 35px 40px;
    }

    .testimonial-quote-mark {
        font-size: 75px;
    }

    .testimonial-quote-text {
        font-size: 1.15rem;
    }

    .testimonial-author-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 25px;
        margin-top: 25px;
    }

    .testimonial-avatar img {
        width: 80px;
        height: 80px;
    }

    .testimonial-author-name {
        font-size: 1.15rem;
    }

    .testimonial-author-role {
        font-size: 1rem;
    }

    .testimonial-btn-prev,
    .testimonial-btn-next {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .school-logo {
        max-height: 70px;
        max-width: 140px;
    }

    .logo-slide {
        min-width: 140px;
        height: 80px;
    }

    .logos-carousel-track {
        gap: 40px;
    }

    .schools-logos {
        margin-top: 50px;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .testimonial-carousel-wrapper-new {
        padding: 12px;
    }

    .testimonial-card-white {
        padding: 30px 28px;
    }

    .testimonial-quote-mark {
        font-size: 65px;
    }

    .testimonial-quote-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .testimonial-author-section {
        gap: 15px;
        padding-top: 20px;
        margin-top: 20px;
    }

    .testimonial-author-name {
        font-size: 1.05rem;
    }

    .testimonial-author-role {
        font-size: 0.9rem;
    }

    .testimonial-author-school {
        font-size: 0.85rem;
    }

    .testimonial-avatar img {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .testimonial-btn-prev,
    .testimonial-btn-next {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .testimonial-controls-new {
        gap: 20px;
        margin-top: 35px;
    }

    .dot-new {
        width: 12px;
        height: 12px;
    }

    .dot-new.active {
        width: 32px;
        height: 12px;
    }

    .school-logo {
        max-height: 60px;
        max-width: 120px;
    }

    .logo-slide {
        min-width: 120px;
        height: 70px;
    }

    .logos-carousel-track {
        gap: 30px;
    }
}

/* ========================================
   MELHORIAS ADICIONAIS MOBILE - LANCHER
   ======================================== */

/* Melhorias para tablets e mobile */
@media (max-width: 767px) {
    /* Hero - Imagem melhor posicionada */
    .hero-image {
        margin-bottom: var(--spacing-md);
    }

    .hero-photo {
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    /* Badges - Melhor legibilidade mobile */
    .badge-lancher {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .badge-lancher i {
        font-size: 0.875rem;
    }

    /* Benefit Image - Melhor responsividade */
    .benefit-image {
        border-radius: var(--radius-md);
        margin-bottom: var(--spacing-md);
    }

    .benefit-image-container {
        margin-bottom: var(--spacing-md);
    }

    /* Totem Section - Layout mobile otimizado */
    .totem-card {
        text-align: center;
    }

    .totem-fingerprint-icon {
        margin: 0 auto;
    }

    /* Payment Features - Melhor espaçamento */
    .payment-features-list {
        margin-top: var(--spacing-md);
    }

    /* Efi Cards - Melhor padding mobile */
    .efi-card-light,
    .efi-card-dark {
        padding: var(--spacing-md);
    }

    .efi-features-new {
        gap: var(--spacing-xs);
    }

    .efi-pricing-cards {
        gap: var(--spacing-sm);
    }

    /* Platform Badges - Melhor responsividade */
    .platform-badge {
        flex: 1 1 auto;
        min-width: 100px;
        justify-content: center;
    }

    /* Support Grid - 2 colunas em mobile */
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form Section - Melhor espaçamento */
    .signup-form {
        background: white;
        border-radius: var(--radius-lg);
    }

    .form-benefits {
        margin-top: var(--spacing-md);
    }

    /* Container - Melhor padding lateral */
    .container-xxl {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Section Headers - Melhor alinhamento */
    .section-header {
        text-align: center;
    }

    /* Connectivity Section - Melhor layout mobile */
    .connectivity-image-new {
        border-radius: var(--radius-md);
        margin-top: var(--spacing-lg);
    }

    /* Steps Banner - Melhor padding */
    .steps-banner {
        padding: var(--spacing-md);
        font-size: 1rem;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 575px) {
    /* Hero CTAs - Ajuste de texto mobile */
    .hero-ctas a {
        font-size: 0.7rem;
        padding: 0.625rem 0.75rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .hero-ctas a i {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
    }

    /* Benefit Grid - 1 coluna em telas pequenas */
    .benefit-grid {
        gap: var(--spacing-xs);
    }

    .benefit-grid-item {
        padding: var(--spacing-sm);
    }

    /* Support Grid - 1 coluna em telas muito pequenas */
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-grid-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .support-grid-icon {
        flex-shrink: 0;
    }

    /* Payment Phone - Melhor ajuste */
    .payment-phone-mockup {
        padding: var(--spacing-sm);
    }

    .payment-card {
        margin-bottom: var(--spacing-xs);
    }

    /* Efi Section - Melhor espaçamento */
    .efi-card-light,
    .efi-card-dark {
        padding: var(--spacing-sm);
    }

    .efi-pricing-card {
        padding: var(--spacing-sm);
    }

    /* Platform Badges - Stack vertical */
    .platform-badge {
        min-width: auto;
        width: 100%;
    }

    /* Form Benefits - Melhor espaçamento */
    .form-benefits li {
        gap: var(--spacing-xs);
    }

    /* Testimonial - Melhor padding */
    .testimonial-card-white {
        padding: var(--spacing-md);
    }

    .testimonial-quote-text {
        font-size: 1rem;
    }

    /* Logos - Menor tamanho */
    .school-logo {
        max-height: 50px;
        max-width: 100px;
    }

    /* Section Headers - Melhor espaçamento */
    .section-header {
        margin-bottom: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }

    /* Container - Padding ainda mais reduzido */
    .container-xxl {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Feature Cards - Melhor compactação */
    .feature-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    /* Steps Grid - Melhor espaçamento */
    .steps-grid {
        gap: var(--spacing-sm);
    }

    .steps-banner {
        padding: var(--spacing-sm);
        font-size: 0.9375rem;
    }
}

/* Melhorias específicas para landscape em mobile */
@media (max-width: 767px) and (orientation: landscape) {
    /* Hero Section - Reduz altura em landscape */
    .hero-section {
        padding: var(--spacing-md) 0;
    }

    .hero-image {
        margin-bottom: var(--spacing-sm);
    }

    .hero-photo {
        max-height: 300px;
        object-fit: cover;
    }

    /* Sections - Padding reduzido */
    .landing-section {
        padding: var(--spacing-md) 0;
    }

    /* Benefit Image - Altura controlada */
    .benefit-image {
        max-height: 350px;
        object-fit: cover;
    }

    /* Support Image - Altura controlada */
    .support-main-image {
        max-height: 350px;
        object-fit: cover;
    }

    /* Connectivity Image - Altura controlada */
    .connectivity-image-new {
        max-height: 350px;
        object-fit: cover;
    }
}

/* Touch targets melhorados para mobile */
@media (max-width: 767px) {
    /* Botões - Touch target mínimo de 44px */
    .btn-lancher {
        min-height: 44px;
    }

    /* Links - Touch target adequado */
    a:not(.btn-lancher) {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Form inputs - Touch target adequado */
    .form-control,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        min-height: 48px;
        font-size: 12px; /* Evita zoom automático no iOS */
    }

    /* Carousel controls - Touch target adequado */
    .testimonial-btn-prev,
    .testimonial-btn-next {
        min-width: 48px;
        min-height: 48px;
    }

    .dot-new {
        min-width: 12px;
        min-height: 12px;
        cursor: pointer;
    }
}

/* ========================================
   PERFORMANCE E ACESSIBILIDADE MOBILE
   ======================================== */

/* Otimizações de performance para mobile */
@media (max-width: 767px) {
    /* Reduz animações em mobile para melhor performance */
    .fade-in-up,
    .reveal {
        animation-duration: 0.4s;
    }

    /* Otimiza transformações para GPU */
    .hero-rabisco,
    .benefit-badge,
    .feature-icon,
    .btn-lancher {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    /* Reduz motion para usuários que preferem */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .hero-rabisco {
            animation: none !important;
        }
    }

    .text-gray {
        color: #555 !important;
    }

    /* Espaçamento adequado entre elementos clicáveis */
    .hero-ctas {
        gap: var(--spacing-sm);
        row-gap: var(--spacing-sm);
    }

    .payment-features-list .payment-feature-item {
        margin-bottom: var(--spacing-xs);
    }

    /* Melhora foco visível para navegação por teclado */
    a:focus,
    button:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 3px solid var(--lancher-red-primary);
        outline-offset: 2px;
    }

    /* Remove outline para mouse, mantém para teclado */
    a:focus:not(:focus-visible),
    button:focus:not(:focus-visible),
    input:focus:not(:focus-visible) {
        outline: none;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 3px solid var(--lancher-red-primary);
        outline-offset: 2px;
    }

    /* Melhora área de toque dos links de navegação */
    nav a,
    .navbar-nav .nav-link {
        padding: var(--spacing-sm);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Scrolling suave otimizado */
    html {
        scroll-padding-top: 80px; /* Compensa navbar fixa */
    }

    /* Otimiza imagens para mobile */
    img {
        height: auto;
        max-width: 100%;
    }

    .hero-photo,
    .benefit-image,
    .support-main-image,
    .connectivity-image-new {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Ajustes específicos para telas pequenas */
@media (max-width: 575px) {
    /* Títulos com melhor quebra de linha */
    .landing-h1,
    .landing-h2,
    .landing-h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Tabelas responsivas */
    .pricing-table {
        -webkit-overflow-scrolling: touch;
    }

    /* Formulário com melhor usabilidade */
    .form-control:focus {
        border-color: var(--lancher-red-primary);
        box-shadow: 0 0 0 3px rgba(199, 14, 28, 0.1);
    }

    /* Botões com feedback tátil */
    .btn-lancher:active {
        transform: scale(0.98);
    }

    /* Cards com melhor separação visual */
    .feature-card,
    .efi-card-light,
    .efi-card-dark,
    .support-grid-card {
        margin-bottom: var(--spacing-sm);
    }

    /* Melhora legibilidade de listas */
    .payment-features-list,
    .form-benefits,
    .efi-features-new {
        line-height: 1.7;
    }

    /* Espaçamento adequado em grids */
    .benefit-grid,
    .support-grid,
    .steps-grid {
        row-gap: var(--spacing-md);
    }
}

/* Otimizações específicas para iOS */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 767px) {
        /* Corrige padding em inputs iOS */
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select {
            -webkit-appearance: none;
            appearance: none;
        }

        /* Melhora scrolling em iOS */
        body,
        .landing-page {
            -webkit-overflow-scrolling: touch;
        }

        /* Previne zoom em inputs iOS */
        input:focus,
        select:focus,
        textarea:focus {
            font-size: 16px !important;
        }

        /* Otimiza tap highlight */
        a,
        button,
        .btn-lancher {
            -webkit-tap-highlight-color: rgba(199, 14, 28, 0.2);
        }
    }
}

/* Dark mode considerations para mobile */
@media (max-width: 767px) and (prefers-color-scheme: dark) {
    /* Ajustes sutis para dark mode em mobile (se necessário no futuro) */
    /* Por enquanto mantém o design light */
}
/* ========================================
   MINIMALIST FOOTER ENHANCEMENTS
   ======================================== */

/* Footer link hover effects */
.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff !important;
    transform: translateX(3px);
}

/* Social icon enhancements */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-3px);
    color: #fff !important;
}

/* Footer spacing refinements */
.landing-footer {
    background-color: #0a0a0a !important;
}

.landing-footer .container {
    max-width: 1200px;
}

/* Padronizar containers das sections com o footer */
.landing-page .container-xxl,
.landing-page .container-xl,
.landing-page .container-lg,
.landing-section .container-xxl,
.landing-section .container-xl,
.landing-section .container-lg,
.hero-section .container-xxl {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Mobile optimizations */
@media (max-width: 991px) {
    .landing-footer .col-lg-3:first-child {
        text-align: center;
    }

    .landing-footer .footer-social {
        justify-content: center;
    }

    .landing-footer .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 767px) {
    .landing-footer {
        padding: 3rem 0 2rem !important;
    }

    .landing-footer h6 {
        font-size: 0.875rem;
    }

    .landing-footer .small {
        font-size: 0.813rem;
    }

    /* Stack columns on mobile */
    .landing-footer .col-6 {
        width: 50%;
    }

    .landing-footer .col-12 {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 575px) {
    .landing-footer .social-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.875rem;
    }

    .landing-footer .footer-logo {
        max-width: 150px !important;
    }

    /* Ocultar logo no mobile por conta dos notches */
    .landing-navbar .navbar-brand {
        display: none !important;
    }
}

/* ========================================
   GUIA RAPIDO - ACCORDION COMPONENT
   ======================================== */

.guia-rapido-container {
    padding: 10px 0;
}

.guia-rapido-btn {
    width: 100%;
    background-color: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--theme-text-primary);
    transition: var(--transition-fast);
}

.guia-rapido-btn:hover {
    background-color: var(--theme-bg-secondary);
}

.guia-rapido-icon {
    transition: transform 0.3s ease;
    color: var(--theme-text-secondary);
}

.guia-rapido-icon.rotated {
    transform: rotate(180deg);
}

.guia-rapido-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--theme-bg-primary);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border: 1px solid var(--theme-border-color);
    border-top: none;
}

.guia-rapido-content.open {
    max-height: 500px;
}

.guia-rapido-body {
    padding: 20px;
    color: var(--theme-text-primary);
}

.guia-rapido-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.guia-rapido-list li {
    margin-bottom: 12px;
    color: var(--theme-text-secondary);
    transition: color 0.3s ease;
}

.guia-rapido-list li:last-child {
    margin-bottom: 0;
}

.guia-rapido-list li i {
    transition: color 0.3s ease;
}

/* ========================================
   RESPONSIVIDADE - TELAS HD (1280px-1440px)
   Para notebooks e monitores com resolução
   1336x768, 1366x768, 1440x900, etc.
   ======================================== */

@media (max-width: 1440px) and (min-width: 1200px) {
    /* Reduzir espaçamentos gerais */
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    /* Hero Section - Ajustes */
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-photo {
        width: 85%;
    }

    .hero-rabisco {
        width: 130%;
        max-width: 500px;
    }

    /* Sections - Padding reduzido */
    .landing-section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Tipografia ajustada */
    .landing-h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .landing-h2 {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .landing-h3 {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
    }

    .landing-h4 {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }

    .landing-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }

    .landing-body {
        font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    }

    .landing-small {
        font-size: 0.8rem;
    }

    /* Textos específicos */
    .section-subtitle {
        font-size: 0.95rem;
    }

    .badge-lancher {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    /* Botões */
    .btn-lancher {
        font-size: 0.825rem;
        padding: 0.65rem 1.75rem;
    }

    .btn-lancher.btn-sm {
        font-size: 0.775rem;
        padding: 0.45rem 1.25rem;
    }

    .btn-lancher.btn-lg {
        font-size: 0.9rem;
        padding: 0.85rem 2rem;
    }

    /* Feature Cards */
    .feature-card {
        padding: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    /* Benefit Grid */
    .benefit-grid {
        gap: 0.75rem;
        margin-right: 20px;
    }

    .benefit-grid-item {
        padding: 0.75rem;
    }

    .benefit-grid-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .benefit-grid-text h4 {
        font-size: 0.875rem;
    }

    /* Totem Section */
    .totem-card {
        padding: 2rem;
    }

    .totem-card-col {
        margin-left: -30px;
    }

    /* Payment Mockup */
    .payment-phone-mockup {
        padding: 1.25rem;
    }

    .payment-saldo-icon {
        width: 50px;
        height: 50px;
    }

    .payment-saldo-icon i {
        font-size: 1.6rem;
    }

    /* Steps Section */
    .step-card {
        padding: 1.25rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-icon i {
        font-size: 1.6rem;
    }

    /* EFI Section */
    .efi-card-light,
    .efi-card-dark {
        padding: 1.5rem;
    }

    .efi-pricing-card {
        padding: 1rem;
    }

    /* Support Grid */
    .support-grid {
        gap: 12px;
    }

    .support-grid-card {
        padding: 1rem;
    }

    /* Testimonials */
    .testimonial-card-white {
        padding: 35px 40px;
    }

    .testimonial-quote-text {
        font-size: 1.15rem;
    }

    /* Form Cadastro */
    .form-benefits li {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVIDADE - TELAS COM ALTURA LIMITADA
   Para telas 768px de altura ou menos
   ======================================== */

@media (max-height: 800px) and (min-width: 1024px) {
    /* Hero Section - Otimizado para altura */
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .hero-ctas {
        gap: 1rem;
    }

    .hero-photo {
        width: 80%;
    }

    /* Sections com padding reduzido */
    .landing-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    /* Cards mais compactos */
    .feature-card {
        padding: 0.875rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    /* Benefit Grid compacto */
    .benefit-grid-item {
        padding: 0.625rem;
    }

    .benefit-grid-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .benefit-grid-text h4 {
        font-size: 0.825rem;
    }

    /* Totem mais compacto */
    .totem-card {
        padding: 1.5rem;
    }

    .totem-fingerprint-icon {
        font-size: 2.5rem;
        color: #6abfff;
    }

    /* Steps compactos */
    .steps-grid {
        gap: 1rem;
    }

    .step-card {
        padding: 1rem;
    }
}

/* ========================================
   COMBINAÇÃO: TELAS HD COM ALTURA LIMITADA
   Especificamente para 1336x768, 1366x768
   ======================================== */

@media (max-width: 1440px) and (min-width: 1200px) and (max-height: 800px) {
    /* Hero ultra compacto */
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: clamp(1.8rem, 3.5vw, 2.4rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        max-width: 500px;
    }

    .hero-photo {
        width: 90%;
    }

    /* Sections */
    .landing-section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    /* Tipografia compacta */
    .landing-h1 {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .landing-h2 {
        font-size: clamp(1.4rem, 2.2vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .landing-h3 {
        font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    }

    .landing-h4 {
        font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    }

    .landing-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .landing-body {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .landing-small {
        font-size: 0.75rem;
    }

    /* Badges e labels */
    .badge-lancher {
        font-size: 0.75rem;
        padding: 0.35rem 0.875rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    /* Botões */
    .btn-lancher {
        font-size: 0.8rem;
        padding: 0.625rem 1.5rem;
    }

    .btn-lancher.btn-sm {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }

    /* Feature Cards - Mais compactos */
    .feature-card {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        margin-bottom: 0.625rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    /* Benefit Section */
    .benefit-grid {
        gap: 0.5rem;
        margin-right: 15px;
    }

    .benefit-grid-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .benefit-grid-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .benefit-grid-text h4 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .benefit-image {
        border-radius: 12px;
    }

    .benefit-badge {
        padding: 0.5rem 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    /* Totem Section */
    .totem-card {
        padding: 1.25rem;
    }

    .totem-badge {
        padding: 0.375rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .totem-fingerprint-icon {
        font-size: 2rem;
        color: #6abfff;
    }

    .totem-card .landing-h4 {
        font-size: 1rem;
    }

    .totem-note {
        font-size: 0.8rem;
    }

    /* Payment Section */
    .payment-phone-mockup {
        padding: 1rem;
    }

    .payment-header {
        margin-bottom: 1rem;
    }

    .payment-saldo-icon {
        width: 44px;
        height: 44px;
    }

    .payment-saldo-icon i {
        font-size: 1.4rem;
    }

    .payment-header h3 {
        font-size: 1rem;
    }

    .payment-auto-section {
        padding: 0.625rem;
        margin-bottom: 0.75rem;
    }

    .payment-auto-content i {
        font-size: 1.25rem;
    }

    .payment-auto-text strong {
        font-size: 0.8rem;
    }

    .payment-auto-text span {
        font-size: 0.7rem;
    }

    .payment-card {
        padding: 0.625rem;
        margin-bottom: 0.5rem;
    }

    .payment-card-header i {
        font-size: 1.1rem;
    }

    .payment-card-header span {
        font-size: 0.85rem;
    }

    .payment-value {
        font-size: 1.1rem;
    }

    .payment-total {
        padding: 0.625rem;
    }

    .payment-total-value {
        font-size: 1.5rem;
    }

    /* Steps Section */
    .steps-section {
        padding: 2rem 0;
    }

    .steps-grid {
        gap: 0.75rem;
    }

    .step-card {
        padding: 0.875rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .step-icon i {
        font-size: 1.4rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .steps-banner {
        padding: 1rem 1.5rem;
        margin-top: 1.25rem;
    }

    .steps-banner p {
        font-size: 0.9rem;
    }

    /* EFI Section */
    .efi-card-light,
    .efi-card-dark {
        padding: 1.25rem;
    }

    .efi-icon-box {
        width: 48px;
        height: 48px;
    }

    .efi-icon-box i {
        font-size: 1.4rem;
    }

    .efi-card-title-new,
    .efi-card-title-dark {
        font-size: 1.1rem;
    }

    .efi-features-new li {
        font-size: 0.85rem;
        padding: 0.375rem 0;
    }

    .efi-pricing-card {
        padding: 0.75rem;
    }

    .efi-pricing-icon i {
        font-size: 1.3rem;
    }

    .efi-pricing-label {
        font-size: 0.75rem;
    }

    .efi-pricing-value {
        font-size: 1.25rem;
    }

    .efi-note {
        font-size: 0.75rem;
        padding: 0.625rem;
    }

    /* Connectivity Section */
    .platform-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .platform-badge i {
        font-size: 1.1rem;
    }

    /* Testimonials Section */
    #depoimentos {
        padding: 3rem 0;
    }

    .testimonial-card-white {
        padding: 25px 30px;
    }

    .testimonial-quote-mark {
        font-size: 60px;
    }

    .testimonial-quote-text {
        font-size: 1rem;
    }

    .testimonial-author-section {
        padding-top: 15px;
        margin-top: 15px;
    }

    .testimonial-avatar img {
        width: 60px;
        height: 60px;
    }

    .testimonial-author-name {
        font-size: 0.95rem;
    }

    .testimonial-author-role,
    .testimonial-author-school {
        font-size: 0.8rem;
    }

    .schools-logos {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .school-logo {
        max-height: 50px;
    }

    /* Support Section */
    .support-grid {
        gap: 10px;
    }

    .support-grid-card {
        padding: 0.75rem;
    }

    .support-grid-icon i {
        font-size: 1.25rem;
    }

    .support-grid-label {
        font-size: 0.7rem;
    }

    .support-grid-title {
        font-size: 0.85rem;
    }

    /* Form Cadastro */
    #form-cadastro {
        padding: 2.5rem 0;
    }

    .form-benefits {
        margin-top: 1rem;
    }

    .form-benefits li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner-section {
    padding: 0;
    background: var(--lancher-red-primary);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    flex-wrap: wrap;
}

.cta-banner-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lancher-white);
}

.cta-banner .btn-lancher {
    background: var(--lancher-white);
    color: var(--lancher-red-primary);
    border: none;
}

.cta-banner .btn-lancher:hover {
    background: var(--lancher-black);
    color: var(--lancher-white);
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .cta-banner-text {
        font-size: 1.1rem;
    }
}

/* CTA Banner - Variações de Cor */

/* Red (default) */
.cta-banner-red {
    background: var(--lancher-red-primary);
}

.cta-banner-red .btn-lancher {
    background: var(--lancher-white);
    color: var(--lancher-red-primary);
}

.cta-banner-red .btn-lancher:hover {
    background: var(--lancher-black);
    color: var(--lancher-white);
}

/* Dark */
.cta-banner-dark {
    background: var(--lancher-bg-dark);
}

.cta-banner-dark .btn-lancher {
    background: var(--lancher-red-primary);
    color: var(--lancher-white);
}

.cta-banner-dark .btn-lancher:hover {
    background: var(--lancher-white);
    color: var(--lancher-red-primary);
}

/* Brown */
.cta-banner-brown {
    background: #b74f17;
}

.cta-banner-brown .btn-lancher {
    background: var(--lancher-white);
    color: var(--lancher-brown);
}

.cta-banner-brown .btn-lancher:hover {
    background: var(--lancher-red-primary);
    color: var(--lancher-white);
}

/* Red Dark */
.cta-banner-red-dark {
    background: var(--lancher-red-dark);
}

.cta-banner-red-dark .btn-lancher {
    background: var(--lancher-white);
    color: var(--lancher-red-dark);
}

.cta-banner-red-dark .btn-lancher:hover {
    background: var(--lancher-black);
    color: var(--lancher-white);
}

/* ========================================
   COMPARISON SECTION - SEM LANCHER X COM LANCHER
   ======================================== */

.text-green {
    color: #28a745 !important;
}

.comparison-card {
    background: var(--theme-bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.comparison-card-negative {
    border-color: rgba(199, 14, 28, 0.2);
    background: linear-gradient(135deg, rgba(199, 14, 28, 0.03) 0%, transparent 100%);
}

.comparison-card-positive {
    border-color: rgba(40, 167, 69, 0.2);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.03) 0%, transparent 100%);
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-title i {
    font-size: 1.75rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--theme-border-color);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.comparison-list li span {
    color: var(--theme-text-primary);
}

/* Dark mode adjustments */
:root[data-theme="dark"] .comparison-card-negative,
html[data-theme="dark"] .comparison-card-negative {
    background: linear-gradient(135deg, rgba(199, 14, 28, 0.08) 0%, transparent 100%);
}

:root[data-theme="dark"] .comparison-card-positive,
html[data-theme="dark"] .comparison-card-positive {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .comparison-card {
        padding: var(--spacing-md);
    }

    .comparison-title {
        font-size: 1.25rem;
    }

    .comparison-list li {
        font-size: 0.95rem;
        padding: 0.875rem 0;
    }
}

@media (max-width: 576px) {
    .comparison-card {
        padding: 1.5rem;
    }

    .comparison-title {
        font-size: 1.1rem;
    }

    .comparison-title i {
        font-size: 1.5rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .comparison-list li i {
        font-size: 1.1rem;
    }
}

/* ========================================
   FAQ LANDING PAGE
   ======================================== */
.faq-landing-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-landing-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-landing-item:hover {
    border-color: var(--lancher-red-primary);
}

.faq-landing-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-landing-header:hover {
    color: var(--lancher-red-primary);
}

.faq-landing-header[aria-expanded="true"] {
    color: var(--lancher-red-primary);
}

.faq-landing-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--lancher-red-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
}

.faq-landing-question {
    flex: 1;
}

.faq-landing-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 1.25rem;
    color: var(--lancher-red-primary);
}

.faq-landing-header[aria-expanded="true"] .faq-landing-chevron {
    transform: rotate(180deg);
}

/* Collapse customizado para FAQ */
.faq-landing-accordion .collapse,
.faq-accordion .collapse {
    display: none;
    transition: none;
}

.faq-landing-accordion .collapse.show,
.faq-accordion .collapse.show {
    display: block;
}

.faq-landing-body {
    padding: 0 1.5rem 1.25rem 4.5rem;
}

.faq-landing-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-landing-header {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .faq-landing-number {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.75rem;
    }

    .faq-landing-body {
        padding: 0 1.25rem 1rem 3.5rem;
    }

    .faq-landing-body p {
        font-size: 0.9rem;
    }
}

/* ========================================
   FORMULARIO MULTI-ETAPAS - CONTACT PAGE
   ======================================== */

.contact-form-container {
    max-width: 600px;
    width: 100%;
    background: var(--theme-bg-surface, #ffffff);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.contact-form-centered {
    margin: 0 auto;
}

[data-theme="dark"] .contact-form-container {
    background: var(--theme-bg-surface, #1F1F1F);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme-border-color, #E5E5E5);
    color: var(--theme-text-secondary, #666666);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background: var(--lancher-red-primary);
    color: white;
}

.progress-step.completed .step-circle {
    background: #22C55E;
}

.step-label {
    font-size: 0.75rem;
    color: var(--theme-text-secondary, #666666);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label {
    color: var(--lancher-red-primary);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #22C55E;
}

.progress-line {
    width: 60px;
    height: 3px;
    background: var(--theme-border-color, #E5E5E5);
    margin: 0 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.progress-line-fill {
    width: 0%;
    height: 100%;
    background: var(--lancher-red-primary);
    transition: width 0.4s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-text-primary, #000000);
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--theme-text-primary, #000000);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--lancher-red-primary);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--theme-text-secondary, #666666);
    margin-bottom: 0.75rem;
}

.contact-form-container .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--theme-border-color, #E5E5E5);
    border-radius: var(--radius-md);
    background: var(--theme-bg-primary, #ffffff);
    color: var(--theme-text-primary, #000000);
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.contact-form-container .form-control:focus {
    outline: none;
    border-color: var(--lancher-red-primary);
    box-shadow: 0 0 0 3px rgba(199, 14, 28, 0.1);
}

.contact-form-container .form-control::placeholder {
    color: var(--theme-text-secondary, #999999);
}

.contact-form-container .form-control.is-invalid {
    border-color: #DC3545;
}

.invalid-feedback {
    display: none;
    color: #DC3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-group.has-error .invalid-feedback {
    display: block;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--theme-bg-primary, #ffffff);
    border: 2px solid var(--theme-border-color, #E5E5E5);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.radio-option:hover {
    border-color: var(--lancher-red-primary);
    background: rgba(199, 14, 28, 0.02);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--theme-border-color, #CCCCCC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lancher-red-primary);
    transform: scale(0);
    transition: transform 0.2s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--lancher-red-primary);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    transform: scale(1);
}

.radio-option input[type="radio"]:checked ~ .radio-text {
    color: var(--lancher-red-primary);
    font-weight: 500;
}

.radio-text {
    font-size: 0.95rem;
    color: var(--theme-text-primary, #000000);
}

/* Checkbox Buttons */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--theme-bg-primary, #ffffff);
    border: 2px solid var(--theme-border-color, #E5E5E5);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkbox-option:hover {
    border-color: var(--lancher-red-primary);
    background: rgba(199, 14, 28, 0.02);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--theme-border-color, #CCCCCC);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-custom::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--lancher-red-primary);
    border-color: var(--lancher-red-primary);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-text {
    color: var(--lancher-red-primary);
    font-weight: 500;
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--theme-text-primary, #000000);
}

.outro-input-wrapper {
    margin-top: 0.5rem;
    padding-left: 2.75rem;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--theme-border-color, #E5E5E5);
}

.btn-back {
    background: transparent;
    color: var(--theme-text-secondary, #666666);
}

.btn-back:hover {
    background: var(--theme-bg-secondary, #f8f9f9);
    color: var(--theme-text-primary, #000000);
}

.btn-next,
.btn-submit {
    margin-left: auto;
}

.btn-next:disabled,
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Screen */
.form-success-step {
    text-align: center;
    padding: 2rem 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--theme-text-primary, #000000);
    margin: 0;
}

.success-message {
    font-size: 1rem;
    color: var(--theme-text-secondary, #666666);
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}


/* Responsive - Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .progress-indicator {
        margin-bottom: 2rem;
        padding: 0;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .progress-line {
        width: 40px;
        margin: 0 0.5rem;
        margin-bottom: 1.25rem;
    }

    .form-step-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .contact-form-container .form-control {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .radio-option,
    .checkbox-option {
        padding: 0.875rem 1rem;
    }

    .form-navigation {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn-back {
        order: 2;
        width: 100%;
    }

    .btn-next,
    .btn-submit {
        order: 1;
        width: 100%;
        margin-left: 0;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .success-message {
        font-size: 0.95rem;
    }
}

/* Dark Mode Adjustments for Contact Form */
[data-theme="dark"] .radio-option,
[data-theme="dark"] .checkbox-option {
    background: var(--theme-bg-elevated, #262626);
    border-color: var(--theme-border-color, #2E2E2E);
}

[data-theme="dark"] .radio-option:hover,
[data-theme="dark"] .checkbox-option:hover {
    background: rgba(199, 14, 28, 0.1);
}

[data-theme="dark"] .contact-form-container .form-control {
    background: var(--theme-bg-elevated, #262626);
    border-color: var(--theme-border-color, #2E2E2E);
    color: var(--theme-text-primary, #E8E8E8);
}

[data-theme="dark"] .contact-form-container .form-control::placeholder {
    color: var(--theme-text-secondary, #A8A8A8);
}
/* ============================================
   APP SHOWCASE SECTION
   ============================================ */
/* ============================================
   APP SHOWCASE — BASE
   ============================================ */
.app-showcase-section {
    position: relative;
    background: #0a0a0a;
    padding: 100px 0 80px;
    overflow: hidden;
}

.showcase-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.showcase-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.09;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: #C70E1C;
    top: -150px;
    left: -200px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: #C70E1C;
    bottom: -100px;
    right: -100px;
}

.app-showcase-section .container-xxl {
    position: relative;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: 48px;
}

.showcase-subtitle {
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.badge-dark {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Tabs */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
}

.showcase-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .showcase-tab:hover {
        border-color: rgba(255,255,255,0.35);
        color: rgba(255,255,255,0.85);
    }

    .showcase-tab.active {
        background: #C70E1C;
        border-color: #C70E1C;
        color: #fff;
    }

/* ============================================
   CAROUSEL
   ============================================ */
.showcase-carousel-container {
    display: none;
    position: relative;
    width: 100%;
    padding-bottom: 60px;
}

    .showcase-carousel-container.active {
        display: block;
    }

.showcase-viewport {
    overflow: hidden;
    width: 100%;
}

.showcase-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ============================================
   SLIDE
   ============================================ */
.showcase-slide {
    min-width: 100%;
    width: 100%;
    padding: 0 80px;
    box-sizing: border-box;
}

.showcase-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 72px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   iPHONE 16 PRO MAX — BLACK TITANIUM
   ============================================ */
.iphone-mockup {
    flex-shrink: 0;
    width: 260px;
    height: 570px;
    position: relative;
    /* Corpo Black Titanium */
    background: linear-gradient( 160deg, #1a1a1c 0%, #0e0e10 30%, #080808 50%, #0e0e10 70%, #1a1a1c 100% );
    border-radius: 40px;
    box-shadow:
    /* Profundidade / glow vermelho */
    0 40px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(199, 14, 28, 0.12),
    /* Reflexos internos do metal */
    inset 0 1px 0 rgba(255, 255, 255, 0.10), inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    /* Anel metálico externo */
    0 0 0 2px rgba(60, 58, 56, 0.85), 0 0 0 3.5px rgba(25, 23, 21, 0.95);
}

    /* Anel de titânio */
    .iphone-mockup::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 40px;
        background: linear-gradient( 135deg, rgba(80, 78, 76, 0.6) 0%, rgba(40, 38, 36, 0.3) 25%, rgba(20, 18, 16, 0.2) 50%, rgba(60, 58, 56, 0.4) 75%, rgba(80, 78, 76, 0.6) 100% );
        z-index: 0;
        pointer-events: none;
    }

/* Tela */
.iphone-screen {
    position: absolute;
    top: 9px;
    left: 5px;
    right: 5px;
    bottom: 9px;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

    .iphone-screen img {
        width: 100%;
        height: 100%;
/*        object-fit: cover;
*/        object-position: bottom center;
        display: block;
        border-radius: 30px;

    }

/* Placeholder (slides sem screenshot) */
.iphone-screen-placeholder-wrap {
    position: relative;
}

.iphone-screen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, #1c1c1e, #0a0a0a);
    color: rgba(255, 255, 255, 0.2);
    border-radius: 43px;
}

    .iphone-screen-placeholder i {
        font-size: 2.5rem;
    }

    .iphone-screen-placeholder span {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

/* Dynamic Island */
.iphone-dynamic-island {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 23px;
    background: #000;
    border-radius: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

    .iphone-dynamic-island::after {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 35%, #2a2a2a, #0a0a0a);
        box-shadow: 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 2px rgba(0,0,0,0.9);
        flex-shrink: 0;
    }

/* Home indicator */
.iphone-home-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 3px;
    z-index: 10;
}

/* Botão Power (direita) */
.iphone-btn-power {
    position: absolute;
    right: -3.5px;
    top: 110px;
    width: 3.5px;
    height: 72px;
    background: linear-gradient(to right, #1a1a1c, #2c2c2e, #1a1a1c);
    border-radius: 0 3px 3px 0;
    z-index: 1;
    box-shadow: 1px 0 2px rgba(0,0,0,0.6);
}

/* Botão Action (esquerda, topo) */
.iphone-btn-action {
    position: absolute;
    left: -3.5px;
    top: 92px;
    width: 3.5px;
    height: 30px;
    background: linear-gradient(to left, #1a1a1c, #2c2c2e, #1a1a1c);
    border-radius: 3px 0 0 3px;
    z-index: 1;
    box-shadow: -1px 0 2px rgba(0,0,0,0.6);
}

/* Volume + */
.iphone-btn-vol-up {
    position: absolute;
    left: -3.5px;
    top: 132px;
    width: 3.5px;
    height: 56px;
    background: linear-gradient(to left, #1a1a1c, #2c2c2e, #1a1a1c);
    border-radius: 3px 0 0 3px;
    z-index: 1;
    box-shadow: -1px 0 2px rgba(0,0,0,0.6);
}

/* Volume - */
.iphone-btn-vol-down {
    position: absolute;
    left: -3.5px;
    top: 200px;
    width: 3.5px;
    height: 56px;
    background: linear-gradient(to left, #1a1a1c, #2c2c2e, #1a1a1c);
    border-radius: 3px 0 0 3px;
    z-index: 1;
    box-shadow: -1px 0 2px rgba(0,0,0,0.6);
}

/* Reflexo na superfície */
.iphone-reflection {
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    height: 38%;
    border-radius: 43px 43px 60% 60%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.035) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* ============================================
   INFO DO SLIDE (coluna de texto)
   ============================================ */
.showcase-slide-info {
    flex: 1;
    max-width: 420px;
}

.showcase-slide-icon {
    width: 52px;
    height: 52px;
    background: rgba(199, 14, 28, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C70E1C;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.showcase-slide-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.showcase-slide-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 0;
}

/* ============================================
   SETAS
   ============================================ */
.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 30px));
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

    .showcase-arrow:hover {
        background: #C70E1C;
        border-color: #C70E1C;
        color: #fff;
        box-shadow: 0 8px 24px rgba(199,14,28,0.35);
    }

.showcase-arrow-left {
    left: 20px;
}

.showcase-arrow-right {
    right: 20px;
}

/* ============================================
   DOTS
   ============================================ */
.showcase-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .showcase-dot.active {
        background: #C70E1C;
        width: 24px;
    }

    .showcase-dot:hover:not(.active) {
        background: rgba(255,255,255,0.45);
    }

/* CTA */
.showcase-cta {
    text-align: center;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.showcase-cta-text {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1199px) {
    .showcase-slide-inner {
        gap: 48px;
    }
}

@media (max-width: 991px) {
    .showcase-slide {
        padding: 0 60px;
    }

    .showcase-slide-inner {
        gap: 36px;
    }

    .iphone-mockup {
        width: 260px;
        height: 600px;
        border-radius: 42px;
    }

        .iphone-mockup::before {
            border-radius: 45px;
        }

    .iphone-screen {
        border-radius: 35px;
    }

        .iphone-screen img {
            border-radius: 35px;
        }

    .iphone-reflection {
        border-radius: 35px 35px 60% 60%;
    }

    .iphone-screen-placeholder {
        border-radius: 35px;
    }

    .iphone-dynamic-island {
        width: 70px;
        height: 19px;
        top: 5px;
    }

    .iphone-home-bar {
        width: 90px;
        bottom: 8px;
    }

    .showcase-slide-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .app-showcase-section {
        padding: 72px 0 60px;
    }

    .showcase-slide {
        padding: 0 48px;
    }

    .showcase-slide-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    /*.iphone-mockup {
        width: 175px;
        height: 357px;
        border-radius: 36px;
    }*/

        .iphone-mockup::before {
            border-radius: 39px;
        }

    .iphone-screen {
        border-radius: 29px;
    }

        .iphone-screen img {
            border-radius: 29px;
        }

    .iphone-reflection {
        border-radius: 29px 29px 60% 60%;
    }

    .iphone-screen-placeholder {
        border-radius: 29px;
    }

    .iphone-dynamic-island {
        width: 60px;
        height: 16px;
        top: 4px;
    }

    .iphone-btn-power {
        top: 92px;
        height: 60px;
    }

    .iphone-btn-action {
        top: 76px;
        height: 24px;
    }

    .iphone-btn-vol-up {
        top: 110px;
        height: 46px;
    }

    .iphone-btn-vol-down {
        top: 166px;
        height: 46px;
    }

    .showcase-slide-icon {
        margin: 0 auto 16px;
    }

    .showcase-slide-title {
        font-size: 1.25rem;
    }

    .showcase-slide-desc {
        font-size: 0.9rem;
    }

    .showcase-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .showcase-arrow-left {
        left: 6px;
    }

    .showcase-arrow-right {
        right: 6px;
    }

    .showcase-tabs {
        flex-direction: column;
        align-items: center;
    }

    .showcase-tab {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}