/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CORES AMARELO E VERMELHO COM FUNDO ESCURO */
    --primary-color: #ffbd00; /* Amarelo vibrante */
    --secondary-color: #ff0000; /* Vermelho puro */
    --accent-color: #ff6b00; /* Laranja */
    --dark-bg: #0b0a10; /* Fundo escuro quase preto */
    --darker-bg: #07060d; /* Fundo mais escuro */
    --light-text: #ffffff; /* Texto claro */
    --medium-text: #c0c0c0; /* Texto médio */
    --card-bg: rgba(30, 30, 40, 0.8); /* Cards semi-transparentes */
    --border-color: rgba(255, 189, 0, 0.2); /* Borda com amarelo */
    --success-color: #00ff00; /* Verde para o live dot */
    --shadow-color: rgba(255, 0, 0, 0.2); /* Sombra vermelha */
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    background: 
        linear-gradient(rgba(11, 10, 16, 0.9), rgba(11, 10, 16, 0.95)),
        url('https://i.postimg.cc/kM6f1w8j/image.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 189, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundMove 20s infinite alternate;
    z-index: 0;
}

.main-container {
    text-align: center;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(255, 189, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    padding: 10px;
    border: 3px solid var(--primary-color);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 189, 0, 0.3));
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(2deg); 
    }
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

.main-title {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: titleGlow 2s infinite alternate;
    line-height: 1.2;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2);
    }
}

.subtitle {
    color: var(--medium-text);
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle .highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 189, 0, 0.3);
}

/* Imagem no Hero - SEM BORDA */
.hero-image {
    margin: 25px auto;
    max-width: 400px;
    width: 100%;
}

.hero-bonus-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: none; /* REMOVIDA A BORDA */
}

/* Widget de Avaliações FIXO */
.reviews-widget {
    background: rgba(30, 30, 40, 0.8);
    border-radius: 15px;
    padding: 20px 30px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 189, 0, 0.3);
    margin-top: 20px;
    backdrop-filter: blur(10px);
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-text); /* BRANCO */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 189, 0, 0.5);
}

.review-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.review-count {
    font-size: 1.3rem;
    color: var(--medium-text);
}

.review-count span {
    font-weight: 900;
    color: var(--light-text);
    font-size: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-text);
    font-size: 0.9rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulseGreen 1.5s infinite;
    box-shadow: 0 0 10px var(--success-color);
}

@keyframes pulseGreen {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Seções */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    text-shadow: 0 2px 10px rgba(255, 189, 0, 0.3);
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-text);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção de Benefícios */
.benefits-section {
    padding: 80px 20px;
    background: var(--darker-bg);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(255, 189, 0, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid rgba(255, 189, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 189, 0, 0.2);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark-bg);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(255, 189, 0, 0.3);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--medium-text);
    line-height: 1.5;
}

.warning-box {
    background: linear-gradient(45deg, rgba(255, 189, 0, 0.1), rgba(255, 0, 0, 0.1));
    border-left: 5px solid var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.warning-box i {
    color: var(--secondary-color);
    font-size: 2rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.warning-box p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.warning-box strong {
    color: var(--primary-color);
}

/* CARROSSEL INFINITO DE HQs */
.carousel-section {
    padding: 80px 20px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.carousel-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--dark-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.carousel-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--dark-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.carousel-track {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    will-change: transform;
    width: max-content;
}

/* ANIMAÇÃO INFINITA DO CARROSSEL */
@keyframes carouselInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.track-1 {
    animation: carouselInfinite 60s linear infinite;
}

.track-2 {
    animation: carouselInfinite 70s linear infinite reverse;
}

.track-3 {
    animation: carouselInfinite 80s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.carousel-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 189, 0, 0.3);
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Carrossel de Editoras com Imagens */
.publishers-section {
    padding: 80px 20px;
    background: var(--darker-bg);
    border-top: 3px solid var(--secondary-color);
    position: relative;
}

.publishers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.publishers-carousel {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.publishers-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--darker-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.publishers-carousel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--darker-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.publishers-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 20px 0;
    will-change: transform;
    animation: carouselInfinite 120s linear infinite;
}

.publisher-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 150px;
    padding: 20px;
    background: rgba(30, 30, 40, 0.6);
    border-radius: 10px;
    border: 2px solid rgba(255, 189, 0, 0.1);
    transition: all 0.3s ease;
}

.publisher-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 189, 0, 0.2);
    background: rgba(40, 40, 50, 0.8);
}

.publisher-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 2px solid rgba(255, 189, 0, 0.3);
    transition: all 0.3s ease;
}

.publisher-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.publisher-item:hover .publisher-logo {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 189, 0, 0.3);
}

.publisher-name {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    font-size: 0.9rem;
}

/* Seção de Bônus COM IMAGENS */
.bonus-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0d0a1a 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 189, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 189, 0, 0.2);
}

.bonus-header {
    margin-bottom: 15px;
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bonus-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
    text-align: center;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    flex-grow: 1;
}

/* Correções nas imagens dos bônus - SEM CONTORNO */
.bonus-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    border: none; /* REMOVIDO O CONTORNO */
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* AJUSTADO PARA NÃO CORTAR */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

.bonus-description {
    color: var(--medium-text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: auto;
}

.bonus-description strong {
    color: var(--light-text);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

/* Seção de Prova Social - STORY FORMAT */
.story-proof-section {
    padding: 80px 20px;
    background: var(--darker-bg);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.story-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.story-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.story-item {
    flex: 0 0 auto;
    width: 300px;
    height: 530px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 189, 0, 0.2);
}

.story-content {
    width: 100%;
    height: 100%;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Seção do App - Demonstração */
.app-demo-section {
    padding: 80px 20px;
    background: var(--dark-bg);
    border-top: 3px solid var(--secondary-color);
}

.app-demo-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    background: #000;
}

.app-video {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid var(--primary-color);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 189, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.play-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 189, 0, 0.4);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(30, 30, 40, 0.6);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 189, 0, 0.2);
    transition: all 0.3s ease;
}

.app-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(40, 40, 50, 0.8);
    box-shadow: 0 10px 20px rgba(255, 189, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-text p {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Seção "Por que escolher?" ATUALIZADA */
.why-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(30, 30, 40, 0.5);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(40, 40, 50, 0.7);
    transform: translateX(5px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-text h3 {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.why-text p {
    color: var(--medium-text);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Oferta Principal ATUALIZADA */
.offer-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1a0b0b 100%);
    position: relative;
}

.offer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.offer-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 3px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.offer-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 189, 0, 0.1) 50%,
        transparent 70%
    );
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.offer-badge {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Timer Limpo */
.clean-timer {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.15), rgba(255, 189, 0, 0.15));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-unit {
    min-width: 80px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.time-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-text);
    text-shadow: 0 0 15px rgba(255, 189, 0, 0.5);
    line-height: 1;
    font-family: 'Courier New', monospace;
    display: block;
    text-align: center;
}

.time-colon {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-top: -10px;
}

.price-container {
    text-align: center;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.old-price {
    font-size: 1.8rem;
    color: var(--medium-text);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 
        0 0 20px rgba(255, 189, 0, 0.5),
        2px 2px 0 rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    line-height: 1;
    position: relative;
}

.price::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.price-note {
    color: var(--medium-text);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Bloco de Urgência Limpo */
.clean-urgency {
    background: linear-gradient(45deg, rgba(255, 189, 0, 0.1), rgba(255, 0, 0, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid var(--primary-color);
    text-align: center;
    backdrop-filter: blur(5px);
}

.clean-urgency h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.clean-urgency p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Resumo dos Bônus PROFISSIONAL */
.professional-summary {
    background: linear-gradient(45deg, rgba(255, 189, 0, 0.1), rgba(255, 0, 0, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid rgba(255, 189, 0, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.professional-summary h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.summary-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.summary-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 900;
}

.summary-text {
    color: var(--light-text);
    font-weight: 500;
}

/* Benefícios PROFISSIONAIS */
.professional-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.pro-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 189, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.pro-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 900;
}

.pro-text {
    color: var(--light-text);
}

/* Botão Principal */
.main-btn {
    display: block;
    width: 100%;
    padding: 25px 40px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    z-index: 1;
}

.main-btn i {
    margin-right: 10px;
    animation: bolt 2s infinite;
}

@keyframes bolt {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
        transform: scale(1.02);
    }
}

.main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
}

/* Garantia */
.guarantee {
    background: linear-gradient(45deg, rgba(255, 189, 0, 0.1), rgba(255, 0, 0, 0.1));
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 2px solid var(--primary-color);
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.guarantee-header i {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 189, 0, 0.3);
}

.guarantee h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 189, 0, 0.3);
}

.guarantee p {
    color: var(--medium-text);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: var(--darker-bg);
    border-top: 3px solid var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 189, 0, 0.2);
    backdrop-filter: blur(5px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(40, 40, 50, 0.5);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 189, 0, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--medium-text);
    line-height: 1.5;
    background: rgba(30, 30, 40, 0.5);
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, var(--darker-bg), #0a0a0a);
    color: var(--medium-text);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 189, 0, 0.3);
}

.footer p {
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* Efeitos extras */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 189, 0, 0.1), transparent 70%);
    border-radius: 50%;
    animation: floatAround 20s infinite linear;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .main-container {
        padding: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-item {
        width: 150px;
    }
    
    .carousel-item img {
        height: 225px;
    }
    
    .main-btn {
        padding: 20px;
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .offer-header {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-widget {
        flex-direction: column;
        gap: 15px;
    }
    
    .rating-badge {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .carousel-item {
        width: 140px;
    }
    
    .carousel-item img {
        height: 210px;
    }
    
    .publishers-track {
        gap: 25px;
    }
    
    .publisher-item {
        min-width: 130px;
        padding: 15px;
    }
    
    .publisher-logo {
        width: 70px;
        height: 70px;
    }
    
    .carousel-container::before,
    .carousel-container::after,
    .publishers-carousel::before,
    .publishers-carousel::after {
        width: 50px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        padding: 15px;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-image {
        height: 160px;
    }
    
    .story-item {
        width: 250px;
        height: 440px;
    }
    
    .timer-display {
        gap: 5px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .time-number {
        font-size: 2.2rem;
    }
    
    .time-colon {
        font-size: 1.8rem;
    }
    
    .summary-list {
        grid-template-columns: 1fr;
    }
    
    .professional-benefits {
        grid-template-columns: 1fr;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .carousel-item {
        width: 120px;
    }
    
    .carousel-item img {
        height: 180px;
    }
    
    .main-btn {
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .publisher-item {
        min-width: 110px;
        padding: 12px;
    }
    
    .publisher-logo {
        width: 60px;
        height: 60px;
    }
    
    .publisher-name {
        font-size: 0.8rem;
    }
    
    .publishers-track {
        gap: 20px;
    }
    
    .bonus-card h3 {
        font-size: 1.2rem;
    }
    
    .bonus-image {
        height: 140px;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .story-item {
        width: 200px;
        height: 353px;
    }
    
    .timer-display {
        gap: 3px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px;
    }
    
    .time-number {
        font-size: 1.8rem;
    }
    
    .time-colon {
        font-size: 1.5rem;
    }
    
    .clean-urgency h3 {
        font-size: 1.4rem;
    }
    
    .clean-urgency p {
        font-size: 0.95rem;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .carousel-item {
        width: 100px;
    }
    
    .carousel-item img {
        height: 150px;
    }
    
    .publisher-item {
        min-width: 90px;
        padding: 8px;
    }
    
    .publisher-logo {
        width: 50px;
        height: 50px;
    }
    
    .publisher-name {
        font-size: 0.7rem;
    }
    
    .bonus-image {
        height: 120px;
    }
    
    .story-item {
        width: 170px;
        height: 300px;
    }
    
    .time-unit {
        min-width: 50px;
        padding: 8px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .time-colon {
        font-size: 1.2rem;
    }
}
/* Carrossel de Feedbacks Infinito */
.story-carousel-container {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.story-carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--darker-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.story-carousel-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--darker-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.story-track {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    will-change: transform;
    width: max-content;
}

.story-item {
    flex: 0 0 auto;
    width: 300px;
    height: 530px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 189, 0, 0.2);
}

.story-content {
    width: 100%;
    height: 100%;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade para o carrossel de feedbacks */
@media (max-width: 768px) {
    .story-item {
        width: 250px;
        height: 440px;
    }
    
    .story-carousel-container::before,
    .story-carousel-container::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .story-item {
        width: 200px;
        height: 353px;
    }
}

@media (max-width: 360px) {
    .story-item {
        width: 170px;
        height: 300px;
    }
}