/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Barra de Notificação Superior */
.top-notification {
    background: linear-gradient(135deg, #ef4444, #ec4899);
    color: white;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.notification-content {
    animation: pulse 2s infinite;
}

.top-notification i {
    margin: 0 8px;
}

/* Contador de Pessoas Online */
.live-viewers {
    position: fixed;
    top: 80px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    animation: pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: ping 1s infinite;
}

.viewers-text {
    font-size: 12px;
}

/* Background Gradient */
.bg-gradient {
    background: linear-gradient(135deg, #fdf2f8, #eff6ff, #faf5ff);
    min-height: 100vh;
    position: relative;
}

/* Elementos Animados de Fundo */
.background-elements {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
}

.element-1 {
    top: 80px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: #f472b6;
    animation: pulse 3s infinite;
}

.element-2 {
    top: 160px;
    right: 80px;
    width: 64px;
    height: 64px;
    background: #60a5fa;
    animation: bounce 2s infinite;
}

.element-3 {
    bottom: 80px;
    left: 80px;
    width: 96px;
    height: 96px;
    background: #a78bfa;
    animation: pulse 2.5s infinite;
}

.element-4 {
    bottom: 160px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: #fbbf24;
    animation: bounce 1.8s infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 48px 16px 80px;
    text-align: center;
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
}

/* Ícone Hero */
.hero-icon-container {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #f472b6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: bounce 2s infinite;
}

.hero-icon i {
    font-size: 48px;
    color: white;
}

.hero-star {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 3s linear infinite;
}

.hero-star i {
    font-size: 16px;
    color: white;
}

/* Título Hero */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-pink {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-red {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-blue {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #374151;
    margin-bottom: 32px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.highlight-pink {
    font-weight: 600;
    color: #ec4899;
}

.highlight-blue {
    font-weight: 600;
    color: #3b82f6;
}

/* Indicadores de Confiança */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    background: white;
    border-radius: 25px;
    padding: 8px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-badge i {
    color: #10b981;
}

.trust-badge .fa-heart {
    color: #ef4444;
}

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

.stars i {
    color: #fbbf24;
    font-size: 12px;
}

/* Caixa de Oferta */
.offer-box {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 32px;
    max-width: 512px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Selo de Oferta Especial */
.special-offer-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #ef4444;
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    transform: rotate(12deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Timer de Contagem Regressiva */
.countdown-timer {
    background: linear-gradient(135deg, #ef4444, #ec4899);
    color: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.countdown-timer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.timer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 10;
}

.timer-icon {
    animation: spin 2s linear infinite;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.time-unit {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    min-width: 70px;
}

.time-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.time-label {
    font-size: 12px;
    margin-top: 4px;
}

.time-separator {
    font-size: 32px;
    font-weight: 700;
}

/* Seção de Preços */
.price-section {
    text-align: center;
    margin-bottom: 24px;
}

.old-price-container {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.old-price {
    font-size: 24px;
    color: #6b7280;
    text-decoration: line-through;
}

.discount-badge {
    background: #fbbf24;
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 25px;
}

.new-price {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
}

.payment-info {
    color: #6b7280;
    font-size: 14px;
}

/* Mensagem de Urgência */
.urgency-message {
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-message i {
    color: #fbbf24;
    font-size: 20px;
}

.urgency-message p {
    color: #92400e;
    font-weight: 500;
    margin: 0;
}

/* Botão CTA */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    padding: 24px 32px;
    border-radius: 16px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.button-arrow {
    animation: bounce 1s infinite;
}

.button-overlay {
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.cta-button:hover .button-overlay {
    opacity: 0.2;
    transform: scaleX(1);
}

/* Badges de Segurança */
.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6b7280;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.security-item i {
    color: #10b981;
}

.security-item:nth-child(2) i {
    color: #3b82f6;
}

.security-item:nth-child(3) i {
    color: #ef4444;
}

/* Prova Social */
.social-proof {
    margin-top: 32px;
    text-align: center;
}

.social-text {
    color: #6b7280;
    margin-bottom: 16px;
}

.social-number {
    color: #10b981;
}

.avatars-container {
    display: flex;
    justify-content: center;
    gap: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f472b6, #a855f7);
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    margin-left: -8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: scale(1.2);
    z-index: 10;
}

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

.white-bg {
    background: #ffffff;
}

.gradient-bg {
    background: linear-gradient(135deg, #eff6ff 0%, #fdf2f8 100%);
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.large-gap {
    gap: 3rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.section-icon i {
    font-size: 3rem;
    color: #ec4899;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #eff6ff 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-card p {
    color: #374151;
    font-size: 1.125rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-header i {
    font-size: 2rem;
    color: #ec4899;
}

.product-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

.feature-item span {
    color: #374151;
}

/* Benefit Cards */
.benefit-card {
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #10b981;
}

.benefit-card p {
    color: #374151;
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.small-testimonials {
    margin-bottom: 2rem;
}

.small-testimonial {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.small-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars,
.small-testimonial .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-card .stars i,
.small-testimonial .stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.small-testimonial .stars i {
    font-size: 1rem;
}

blockquote {
    font-size: 1.125rem;
    color: #374151;
    text-align: center;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.small-testimonial blockquote {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author p {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.small-testimonial .testimonial-author p {
    font-size: 0.75rem;
}

.professional-testimonial {
    background: linear-gradient(135deg, #d1fae5 0%, #dbeafe 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.professional-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.professional-testimonial blockquote {
    font-size: 1.25rem;
}

/* Bonus Section */
.bonus-box {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-item:last-child {
    margin-bottom: 0;
}

.bonus-icon {
    background: #8b5cf6;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon i {
    color: white;
    font-size: 1.5rem;
}

.bonus-item span {
    font-size: 1.125rem;
    color: #374151;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #ec4899 0%, #3b82f6 100%);
    padding: 5rem 1rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.final-offer-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.offer-header {
    margin-bottom: 1.5rem;
}

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.offer-timer i {
    color: #ef4444;
    margin-right: 0.5rem;
}

.offer-timer span {
    color: #dc2626;
    font-weight: 600;
}

.offer-warning {
    color: #6b7280;
    margin-top: 0.5rem;
}

.final-price-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.final-price-section .old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 1.25rem;
}

.final-new-price {
    font-size: 3rem;
    font-weight: bold;
    color: #059669;
    margin: 0.5rem 0;
}

.investment-text {
    color: #6b7280;
}

.final-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #ec4899 0%, #3b82f6 100%);
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.final-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer p {
    color: #9ca3af;
}

/* Animações */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 24px 16px 48px;
    }
    
    .offer-box {
        padding: 24px 16px;
        margin: 0 16px;
    }
    
    .trust-indicators {
        gap: 12px;
    }
    
    .timer-display {
        gap: 8px;
    }
    
    .time-unit {
        padding: 8px;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 20px 24px;
    }
    
    .security-badges {
        gap: 12px;
    }
    
    .avatars-container {
        gap: -4px;
    }
    
    .avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-left: -4px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .final-new-price {
        font-size: 2.5rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .final-cta {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .offer-box,
    .final-offer-box {
        padding: 1.5rem;
    }
    
    .product-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}