/* ===== CSS FINAL - ANIMAÇÕES CORRIGIDAS ===== */

/* CSS RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* HEADER - ALTURA FIXA E CLARA */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* ALTURA FIXA ESPECÍFICA */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    height: 100%;
    padding: 0;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO - POSICIONADO CORRETAMENTE */
.nav__brand {
    flex-shrink: 0;
}

.nav__title {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav__title:hover {
    color: #1d4ed8;
    transform: scale(1.05);
}

/* MENU DESKTOP - SEM BOTÕES */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav__link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #2563eb;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* REMOVER COMPLETAMENTE AÇÕES DO DESKTOP */
.nav__actions {
    display: none !important; /* FORÇAR REMOÇÃO */
}

/* MENU MOBILE - HAMBÚRGUER SEMPRE VISÍVEL COM X */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* ANIMAÇÃO X DO HAMBÚRGUER - CORRIGIDA */
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white; /* BRANCO QUANDO ATIVO */
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white; /* BRANCO QUANDO ATIVO */
}

/* CLASSES DE VISIBILIDADE */
.show-mobile {
    display: none;
}

.hide-mobile {
    display: flex;
}

/* SEÇÃO PRINCIPAL - MARGEM MUITO MAIOR PARA EVITAR SOBREPOSIÇÃO */
.section {
    padding: 100px 0;
}

.section:first-of-type {
    padding-top: 200px !important; /* MARGEM MUITO MAIOR - 200PX */
    margin-top: 0;
}

.section--light {
    background-color: #f8fafc;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 200px !important; /* GARANTIR ESPAÇO DO MENU */
    padding-bottom: 50px; /* REDUZIR ESPAÇO INFERIOR */
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero__text {
    z-index: 2;
}

.hero__title-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin: 0;
}

.hero__title .highlight {
    color: #2563eb;
}

/* FOGUETE AO LADO DO TÍTULO */
.hero__rocket {
    font-size: 40px;
    animation: float 3s ease-in-out infinite;
    margin-top: 8px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero__description {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero__features {
    display: block;
    text-align: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 4px 8px;
}

.feature-badge__icon {
    color: #10b981;
    font-weight: 600;
}

.hero__cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0; /* Removendo a margem inferior */
}

.hero__cta {
    margin-bottom: 12px;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn--large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero__security {
    display: block;
    text-align: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero__security-icon {
    color: #10b981;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto 10px auto;
    justify-content: center;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-card__number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-card__label {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* ANIMAÇÃO RESPONSIVA CORRIGIDA - POSIÇÃO FIXA */
.responsive-demo {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* RESPONSIVIDADE PARA MOBILE - CENTRALIZAÇÃO GARANTIDA */
@media (max-width: 768px) {
    .responsive-demo {
        margin: 0 auto; /* CENTRALIZAÇÃO HORIZONTAL */
        position: relative;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTRALIZAÇÃO DOS FILHOS */
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 0 20px; /* ESPAÇAMENTO LATERAL */
    }
    
    .desktop-device,
    .mobile-device {
        margin: 0 auto; /* CENTRALIZAÇÃO INDIVIDUAL */
    }
}

@media (max-width: 480px) {
    .responsive-demo {
        width: 280px;
        height: 240px; /* AUMENTADO PARA EVITAR CORTE */
        transform: translateY(-15%); /* AJUSTADO PARA MELHOR POSICIONAMENTO */
    }
}

/* MEDIA QUERY ESPECÍFICA PARA RESOLUÇÕES MUITO PEQUENAS */
@media (max-width: 400px) {
    .responsive-demo {
        width: 260px;
        height: 220px;
        transform: translateY(-10%);
    }
}

/* CENTRALIZAÇÃO PARA MOBILE */
@media (max-width: 768px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .responsive-demo {
        margin: 0 auto; /* CENTRALIZAR HORIZONTALMENTE */
        position: relative; /* MUDAR DE STICKY PARA RELATIVE EM MOBILE */
        top: auto;
        transform: none; /* REMOVER TRANSFORM EM MOBILE */
    }
    
    .hero__stats {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-card {
        margin: 0 auto;
        flex: 1;
        min-width: 120px;
    }
}

/* DISPOSITIVOS - POSIÇÃO FIXA PARA EVITAR BUGS */
.device-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 2s ease-in-out; /* TRANSIÇÃO MAIS LENTA E SUAVE */
}

/* DESKTOP DEVICE */
.desktop-device {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.desktop-device.hide {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.desktop-device .device-screen {
    width: 320px;
    height: 200px;
    background: #1f2937;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; /* EVITAR CONTEÚDO ULTRAPASSAR BORDAS */
}

/* RESPONSIVIDADE PARA DESKTOP DEVICE */
@media (max-width: 768px) {
    .desktop-device .device-screen {
        width: 280px;
        height: 175px;
    }
}

@media (max-width: 480px) {
    .desktop-device .device-screen {
        width: 200px; /* LARGURA CORRIGIDA */
        height: 130px; /* ALTURA CORRIGIDA CONFORME TESTE DO USUÁRIO */
        margin-bottom: 10px; /* ESPAÇAMENTO EXTRA PARA EVITAR CORTE */
    }
    
    .mobile-device .device-screen {
        width: 80px; /* REDUZIDO PARA EVITAR CORTE */
        height: 160px; /* REDUZIDO PARA EVITAR CORTE */
    }
    
    .responsive-demo {
        padding: 20px 10px; /* PADDING EXTRA PARA GARANTIR ESPAÇO */
        min-height: 300px; /* ALTURA MÍNIMA PARA EVITAR CORTE */
    }
}

.desktop-device .device-screen::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #374151;
    border-radius: 0 0 8px 8px;
}

.browser-chrome {
    background: #f3f4f6;
    border-radius: 8px 8px 0 0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
}

.browser-dot:nth-child(2) {
    background: #f59e0b;
}

.browser-dot:nth-child(3) {
    background: #10b981;
}

/* BARRA DE ENDEREÇO COM ALTURA FIXA - CORREÇÃO PRINCIPAL */
.address-bar {
    flex: 1;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 12px; /* PADDING VERTICAL FIXO */
    font-size: 12px;
    color: #6b7280;
    font-family: monospace;
    width: 150px; /* LARGURA FIXA PARA NÃO DIMINUIR */
    min-width: 120px; /* TAMANHO MÍNIMO REDUZIDO */
    max-width: 200px; /* TAMANHO MÁXIMO AUMENTADO */
    height: 24px; /* ALTURA FIXA - CORREÇÃO PRINCIPAL */
    min-height: 24px; /* ALTURA MÍNIMA GARANTIDA */
    max-height: 24px; /* ALTURA MÁXIMA PARA CONSISTÊNCIA */
    line-height: 12px; /* LINE-HEIGHT FIXO */
    display: flex;
    align-items: center; /* CENTRALIZAR VERTICALMENTE */
    position: relative;
    overflow: hidden; /* EVITAR TEXTO VAZAR */
    white-space: nowrap; /* EVITAR QUEBRA DE LINHA */
    text-overflow: ellipsis; /* ADICIONAR ... QUANDO TEXTO FOR LONGO */
}

/* RESPONSIVIDADE PARA BARRA DE ENDEREÇO */
@media (max-width: 768px) {
    .address-bar {
        width: 120px;
        min-width: 100px;
        max-width: 140px;
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .address-bar {
        width: 100px;
        min-width: 80px;
        max-width: 120px;
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* CURSOR DE MÃO CLICANDO - ÍCONE SVG LIMPO */
.hand-cursor {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 25;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.8);
    
    /* SVG INLINE SIMPLES DE CURSOR DE MÃO */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 12l2 2 4-4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21 12c0 4.97-4.03 9-9 9s-9-4.03-9-9 4.03-9 9-9 9 4.03 9 9z' stroke='%23000000' stroke-width='2' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* SOMBRA SUTIL PARA DESTAQUE */
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}

.hand-cursor.show {
    opacity: 1;
    transform: scale(1);
}

.hand-cursor.clicking {
    animation: handClick 0.3s ease-in-out;
}

@keyframes handClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* RESPONSIVIDADE PARA CURSOR DE MÃO */
@media (max-width: 768px) {
    .hand-cursor {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hand-cursor {
        width: 18px;
        height: 18px;
    }
}

/* PONTEIRO DO MOUSE REALÍSTICO - USANDO IMAGEM */
.mouse-cursor {
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url('../images/mouse-cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: all 0.8s ease; /* MOVIMENTO MAIS LENTO E SUAVE */
}

.mouse-cursor.show {
    opacity: 1;
}

.website-content {
    background: white;
    height: 140px;
    padding: 8px;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    overflow: hidden; /* EVITAR CONTEÚDO ULTRAPASSAR BORDAS */
}

/* HEADER SIMULADO DO SITE */
.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 16px;
    margin-bottom: 4px;
    opacity: 0; /* INICIA INVISÍVEL */
    /* REMOVIDO: animation automática */
}

.mock-logo {
    width: 30px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
}

.mock-nav {
    display: flex;
    gap: 4px;
}

.mock-nav-item {
    width: 20px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

/* HERO SECTION SIMULADO */
.mock-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    margin-bottom: 4px;
    opacity: 0; /* INICIA INVISÍVEL */
    /* REMOVIDO: animation automática */
}

.mock-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-title {
    width: 80px;
    height: 6px;
    background: #1e293b;
    border-radius: 2px;
}

.mock-subtitle {
    width: 60px;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

.mock-button {
    width: 40px;
    height: 8px;
    background: #10b981;
    border-radius: 4px;
    margin-top: 2px;
}

.mock-hero-image {
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 4px;
    margin-left: 8px;
}

/* CARDS SIMULADOS */
.mock-cards {
    display: flex;
    gap: 4px;
    height: 30px;
    opacity: 0; /* INICIA INVISÍVEL */
    /* REMOVIDO: animation automática */
}

.mock-card {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mock-card-icon {
    width: 12px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
}

.mock-card-text {
    width: 100%;
    height: 3px;
    background: #cbd5e1;
    border-radius: 1px;
}

/* MOBILE DEVICE */
.mobile-device {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.mobile-device.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mobile-device .device-screen {
    width: 160px;
    height: 280px;
    background: #1f2937;
    border-radius: 20px;
    padding: 12px 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden; /* EVITAR CONTEÚDO ULTRAPASSAR BORDAS */
}

/* RESPONSIVIDADE PARA MOBILE DEVICE */
@media (max-width: 768px) {
    .mobile-device .device-screen {
        width: 140px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .mobile-device .device-screen {
        width: 120px;
        height: 200px;
    }
}

.mobile-container {
    background: white;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 2s ease-in-out;
}

.mobile-container.scrolling {
    transform: translateY(-30%);
}

.mobile-chrome {
    background: #f3f4f6;
    padding: 6px 8px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-address-bar {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    color: #6b7280;
    font-family: monospace;
    width: 100px;
    height: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mobile-content {
    padding: 8px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* HEADER MOBILE SIMULADO */
.mock-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 12px;
    margin-bottom: 6px;
    opacity: 0;
}

.mock-mobile-logo {
    width: 20px;
    height: 6px;
    background: #2563eb;
    border-radius: 2px;
}

.mock-mobile-menu {
    width: 12px;
    height: 8px;
    background: #64748b;
    border-radius: 2px;
}

/* HERO MOBILE SIMULADO */
.mock-mobile-hero {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 6px;
    opacity: 0;
}

.mock-mobile-title {
    width: 80%;
    height: 6px;
    background: #1e293b;
    border-radius: 2px;
}

.mock-mobile-subtitle {
    width: 60%;
    height: 4px;
    background: #64748b;
    border-radius: 2px;
}

.mock-mobile-button {
    width: 50%;
    height: 8px;
    background: #10b981;
    border-radius: 4px;
    margin-top: 3px;
}

/* IMAGEM MOBILE SIMULADA */
.mock-mobile-image {
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 4px;
    margin-bottom: 6px;
    opacity: 0;
}

/* CARDS MOBILE SIMULADOS */
.mock-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
    opacity: 0;
}

.mock-mobile-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    gap: 4px;
    align-items: center;
    height: 16px;
}

.mock-mobile-card-icon {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
    flex-shrink: 0;
}

.mock-mobile-card-text {
    flex: 1;
    height: 3px;
    background: #cbd5e1;
    border-radius: 1px;
}

/* FOOTER MOBILE SIMULADO */
.mock-mobile-footer {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 4px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.mock-mobile-footer-text {
    width: 60%;
    height: 3px;
    background: #94a3b8;
    border-radius: 1px;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* STEPS */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.step__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.step__number {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.step__emoji {
    font-size: 32px;
    display: block;
}

.step__title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.step__description {
    color: #64748b;
    line-height: 1.6;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card__icon {
    margin-bottom: 24px;
}

.feature-emoji {
    font-size: 48px;
    display: block;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card__description {
    color: #64748b;
    line-height: 1.6;
}

/* TESTIMONIALS - CORRIGIDO PARA MOBILE */
.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    /* REMOVER MIN-HEIGHT FIXO PARA PERMITIR ALTURA AUTOMÁTICA */
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    /* ALTURA AUTOMÁTICA BASEADA NO CONTEÚDO */
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative; /* MUDAR PARA RELATIVE PARA PERMITIR ALTURA AUTOMÁTICA */
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    /* ALTURA AUTOMÁTICA BASEADA NO CONTEÚDO */
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-card__content {
    margin-bottom: 24px;
}

.testimonial-card__stars {
    margin-bottom: 16px;
}

.testimonial-card__star {
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__author {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.testimonial-card__name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* POSICIONAR LOGO APÓS O CONTEÚDO COM 5PX DE ESPAÇAMENTO */
    margin-top: 5px;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #64748b;
}

.testimonial-nav:hover {
    background: #2563eb;
    color: white;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #2563eb;
}

/* RESPONSIVO PARA TESTIMONIALS - CORRIGIDO PARA MOSTRAR 3 POR VEZ NO MOBILE */
@media (max-width: 768px) {
    .testimonial-slide {
        grid-template-columns: repeat(3, 1fr); /* FORÇAR 3 COLUNAS NO MOBILE */
        gap: 12px; /* REDUZIR GAP PARA CABER MELHOR */
    }
    
    .testimonial-card {
        padding: 16px; /* REDUZIR PADDING PARA CABER MELHOR */
        /* ALTURA AUTOMÁTICA BASEADA NO CONTEÚDO - REMOVER MIN-HEIGHT FIXO */
        height: auto;
    }
    
    .testimonial-card__text {
        font-size: 13px; /* REDUZIR FONTE PARA CABER MELHOR */
        line-height: 1.4;
    }
    
    .testimonial-card__name {
        font-size: 12px;
    }
    
    .testimonial-card__stars {
        margin-bottom: 12px;
        display: flex;
        flex-wrap: nowrap; /* FORÇAR ESTRELAS EM UMA LINHA */
        justify-content: center;
        gap: 2px; /* REDUZIR ESPAÇO ENTRE ESTRELAS */
    }
    
    .testimonial-card__star {
        font-size: 12px; /* REDUZIR TAMANHO DAS ESTRELAS DE 16px PARA 12px */
        margin-right: 0; /* REMOVER MARGIN-RIGHT PARA USAR GAP */
    }
    
    .testimonials-container {
        /* ALTURA AUTOMÁTICA - REMOVER MIN-HEIGHT FIXO */
    }
}

/* RESPONSIVO PARA TESTIMONIALS - MOBILE MUITO PEQUENO */
@media (max-width: 480px) {
    .testimonial-slide {
        grid-template-columns: repeat(3, 1fr); /* MANTER 3 COLUNAS */
        gap: 8px; /* GAP AINDA MENOR */
    }
    
    .testimonial-card {
        padding: 12px; /* PADDING AINDA MENOR */
        /* ALTURA AUTOMÁTICA BASEADA NO CONTEÚDO - REMOVER MIN-HEIGHT FIXO */
        height: auto;
    }
    
    .testimonial-card__text {
        font-size: 12px; /* FONTE AINDA MENOR */
        line-height: 1.3;
    }
    
    .testimonial-card__name {
        font-size: 11px;
    }
    
    .testimonial-card__stars {
        margin-bottom: 8px;
        display: flex;
        flex-wrap: nowrap; /* FORÇAR ESTRELAS EM UMA LINHA */
        justify-content: center;
        gap: 1px; /* ESPAÇO MÍNIMO ENTRE ESTRELAS */
    }
    
    .testimonial-card__star {
        font-size: 11px; /* REDUZIR AINDA MAIS O TAMANHO DAS ESTRELAS */
        margin-right: 0; /* REMOVER MARGIN-RIGHT */
    }
    
    .testimonials-container {
        /* ALTURA AUTOMÁTICA - REMOVER MIN-HEIGHT FIXO */
    }
}

/* PRICING */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card__title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
}

.pricing-card__price {
    margin-bottom: 40px;
}

.pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    display: block;
}

.pricing-card__period {
    color: #64748b;
    font-size: 16px;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item__icon {
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
}

.pricing-card__cta {
    margin-bottom: 24px;
}

/* PAYMENT METHODS */
.payment-methods {
    text-align: center;
    margin-top: 60px;
}

.payment-methods__title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
}

.payment-methods__list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.payment-icon {
    font-size: 24px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #64748b;
    line-height: 1.6;
}

/* CONTACT */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-item__content p {
    color: #64748b;
    margin-bottom: 8px;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.contact-cta p {
    color: #64748b;
    margin-bottom: 32px;
}

/* FOOTER */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 16px;
}

.footer__description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__column-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 8px;
}

.footer__list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #2563eb;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
}

.footer__copyright {
    color: #94a3b8;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ANIMAÇÕES */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-children.animate > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animate > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animate > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animate > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animate > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animate > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.animate > *:nth-child(6) { transition-delay: 0.6s; }

/* RESPONSIVO - MOBILE */
@media (max-width: 768px) {
    /* HEADER MOBILE - HAMBÚRGUER SEMPRE VISÍVEL */
    .nav__container {
        padding: 0 16px; /* REDUZIR PADDING PARA CABER MELHOR */
    }
    
    .nav__toggle {
        display: flex !important; /* FORÇAR VISIBILIDADE */
        margin-right: 0; /* GARANTIR QUE ESTÁ NA BORDA */
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
    
    /* MENU MOBILE SOFISTICADO */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(29, 78, 216, 0.95) 100%);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
    }
    
    .nav__list li {
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav__menu.show-menu .nav__list li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav__link {
        color: white;
        font-size: 24px;
        font-weight: 600;
        padding: 16px 32px;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        min-width: 200px;
    }
    
    .nav__link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    /* HERO MOBILE - MARGEM AINDA MAIOR */
    .hero {
        padding-top: 150px !important;
    }
    
    .section:first-of-type {
        padding-top: 150px !important;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__title-container {
        justify-content: center;
    }
    
    .hero__rocket {
        font-size: 32px;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* RESPONSIVE DEMO MOBILE - POSIÇÃO FIXA E BORDAS CORRETAS */
    .responsive-demo {
        width: 300px;
        height: 250px;
        position: relative; /* MUDAR PARA RELATIVE NO MOBILE */
        top: auto;
        transform: none;
        z-index: 10; /* GARANTIR QUE FIQUE ACIMA */
    }
    
    .desktop-device .device-screen {
        width: 240px;
        height: 150px;
        overflow: hidden; /* GARANTIR QUE CONTEÚDO NÃO ULTRAPASSE */
    }
    
    .mobile-device .device-screen {
        width: 140px;
        height: 250px;
        overflow: hidden; /* GARANTIR QUE CONTEÚDO NÃO ULTRAPASSE */
    }
    
    .website-content {
        height: 100px; /* REDUZIR ALTURA NO MOBILE */
        padding: 12px; /* REDUZIR PADDING */
    }
    
    .mobile-content {
        height: 180px; /* REDUZIR ALTURA NO MOBILE */
        padding: 12px; /* REDUZIR PADDING */
    }
    
    /* BARRAS DE ENDEREÇO MOBILE - TAMANHOS AJUSTADOS */
    .address-bar {
        width: 120px;
        min-width: 120px;
        max-width: 120px;
        height: 20px;
        min-height: 20px;
        max-height: 20px;
        font-size: 10px;
        line-height: 10px;
    }
    
    .mobile-address-bar {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        height: 18px;
        min-height: 18px;
        max-height: 18px;
        font-size: 9px;
        line-height: 9px;
    }
    
    /* SEÇÕES MOBILE */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .payment-methods__list {
        gap: 16px;
    }
    
    .btn--large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px; /* PADDING AINDA MENOR */
    }
    
    .nav__container {
        padding: 0 12px; /* PADDING AINDA MENOR */
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .responsive-demo {
        width: 250px;
        height: 200px;
    }
    
    .desktop-device .device-screen {
        width: 200px;
        height: 120px;
    }
    
    .mobile-device .device-screen {
        width: 120px;
        height: 200px;
    }
    
    .website-content {
        height: 80px;
        padding: 8px;
    }
    
    .mobile-content {
        height: 140px;
        padding: 8px;
    }
    
    /* BARRAS DE ENDEREÇO AINDA MENORES */
    .address-bar {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        height: 18px;
        min-height: 18px;
        max-height: 18px;
        font-size: 9px;
        line-height: 9px;
    }
    
    .mobile-address-bar {
        width: 80px;
        min-width: 80px;
        max-width: 80px;
        height: 16px;
        min-height: 16px;
        max-height: 16px;
        font-size: 8px;
        line-height: 8px;
    }
}

@media (max-width: 480px) {
    .responsive-demo {
        height: auto; /* Permite que a altura se ajuste automaticamente */
        min-height: 280px; /* Define uma altura mínima para evitar corte */
        padding-bottom: 20px; /* Adiciona um padding na parte inferior */
    }

    .desktop-device .device-screen {
        height: 150px; /* Ajusta a altura do desktop device */
    }

    .mobile-device .device-screen {
        height: 180px; /* Ajusta a altura do mobile device */
    }
}

