body {
    font-family: 'Inter', sans-serif;
    background-color: #000000; /* Fundo ainda mais escuro para o estilo Netflix */
    color: #f0f0f0; /* Texto claro */
    overflow-x: hidden; /* Evita rolagem horizontal */
}
/* Animação geral de fade-in e slide-up */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para o título principal (entra ao carregar a página) */
.hero-title, .hero-subtitle, .hero-paragraph, .hero-button, .hero-image {
    opacity: 0; /* Começa invisível */
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.hero-title { animation-delay: 0.3s; }
.hero-subtitle { animation-delay: 0.5s; }
.hero-paragraph { animation-delay: 0.7s; }
.hero-button { animation-delay: 0.9s; }
.hero-image { animation-delay: 1.1s; } /* Atraso para a imagem aparecer */

/* Animação para botões */
.button-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
/* Estilo para cards de benefício */
.benefit-card {
    transition: all 0.3s ease-in-out;
}
.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.25); /* Sombra vermelha ao hover */
}
/* Estilos do modelo Netflix-like */
.netflix-shadow {
    box-shadow: 0 8px 40px rgba(220, 38, 38, 0.35); /* Sombra vermelha mais intensa */
}
.glass-card {
    background: rgba(255, 255, 255, 0.08); /* Mais visível */
    backdrop-filter: blur(12px); /* Blur mais forte */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Borda mais definida */
}
.gradient-border {
    border-image: linear-gradient(to right, #dc2626, #ef4444, #f87171) 1;
    border-width: 2px;
    border-style: solid;
}

/* Classes para animação ao rolar (scroll-triggered) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Para itens com animação escalonada (staggered) */
.staggered-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.staggered-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo para o modal de sucesso */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #1a1a1a;
    margin: auto;
    padding: 40px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    position: relative;
}
.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-button:hover,
.close-button:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-left-color: #ef4444; /* Cor do spinner (vermelho) */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Estilo para o ícone do FAQ */
.faq-icon.rotate-45 {
    transform: rotate(45deg);
}
/* Estilo para o badge de plano popular */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #ef4444, #dc2626);
    color: white;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 0.875rem; /* 14px */
    font-weight: bold;
}