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

:root {
    --primary-color: #FF5722;
    --primary-dark: #E64A19;
    --secondary-color: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --shadow: 0 4px 20px rgba(255, 87, 34, 0.1);
    --border-radius: 12px;
    --max-width: 600px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container {
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(var(--shadow));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Badge de Urgência */
.urgency-badge {
    background: linear-gradient(135deg, var(--danger-color), #E91E63);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto 20px;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    animation: underlineGrow 1.5s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Contador Regressivo */
.countdown-container {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.time-unit {
    text-align: center;
    min-width: 50px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.time-unit label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    opacity: 0.7;
    animation: blink 1s infinite;
}

/* Escassez/Vagas Limitadas */
.scarcity-container {
    background: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.spots-left {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--danger-color);
    margin-bottom: 15px;
}

.progress-bar {
    background: #e0e0e0;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, var(--danger-color), var(--warning-color));
    height: 100%;
    width: 73%;
    border-radius: 6px;
    animation: progressGlow 2s ease-in-out infinite alternate;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Preços */
.price-container {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--success-color);
    text-transform: uppercase;
}

/* Benefits */
.benefits {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: transform 0.2s ease;
    padding: 8px;
    border-radius: 8px;
}

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

.benefit-item:hover {
    transform: translateX(5px);
    background: #f8f9fa;
}

.benefit-item strong {
    color: var(--primary-color);
    margin-left: 8px;
}

.benefit-item.exclusive {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border: 2px solid var(--success-color);
    font-weight: 600;
}

.benefit-item.guarantee {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border: 2px solid #2196F3;
    font-weight: 600;
}

/* Call to Action */
.cta-container {
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(135deg, var(--success-color), #388E3C);
    color: var(--secondary-color);
    border: none;
    padding: 25px 40px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 800;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.cta-button:hover::before {
    left: 100%;
}

.button-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: normal;
}

.security-badges {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Social Proof Avançado */
.social-proof {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
}

.members-count {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.members-count strong {
    color: var(--primary-color);
}

.live-activity {
    background: #e8f5e8;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--success-color);
}

.activity-item {
    font-size: 0.95rem;
    color: var(--text-dark);
    animation: fadeInScale 0.5s ease-out;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.testimonial {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial.featured {
    border: 2px solid var(--warning-color);
    background: linear-gradient(135deg, #fff9c4, #ffffff);
}

.testimonial em {
    color: var(--text-light);
    display: block;
    margin: 8px 0;
}

.verified {
    color: var(--success-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.stat {
    font-size: 0.9rem;
}

.stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Notificações Pop-up */
.popup-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 300px;
}

.popup-notification {
    background: var(--secondary-color);
    border: 2px solid var(--success-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: slideInRight 0.5s ease-out;
    position: relative;
}

.popup-notification.hide {
    animation: slideOutRight 0.5s ease-out forwards;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.notification-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* CTA Fixo Mobile */
.fixed-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.fixed-cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--success-color), #388E3C);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--warning-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 5px rgba(244, 67, 54, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(244, 67, 54, 0.8);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Desktop específico */
@media (min-width: 769px) {
    .hero {
        padding: 40px 0;
    }

    .scarcity-container {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .social-proof {
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
        min-height: auto;
        justify-content: flex-start;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .benefits {
        padding: 20px;
    }

    .social-proof {
        padding: 20px;
    }

    .cta-button {
        padding: 20px 30px;
        font-size: 1.1rem;
    }

    .testimonials {
        gap: 10px;
    }

    .countdown-timer {
        font-size: 1.2rem;
    }

    .time-unit span {
        font-size: 1.5rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .security-badges {
        font-size: 0.8rem;
        text-align: center;
    }

    .fixed-cta-mobile {
        display: block;
    }

    .popup-notifications {
        left: 15px;
        right: 15px;
        max-width: none;
    }

    body {
        padding-bottom: 80px;
    }

    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .benefit-item {
        font-size: 1rem;
    }

    .cta-button {
        padding: 18px 25px;
        font-size: 1rem;
    }

    .countdown-container {
        padding: 15px;
    }

    .urgency-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.fixed-cta-button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}