* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #ff1493 0%, #ff69b4 30%, #da70d6 60%, #9370db 100%);
    min-height: 100vh;
    padding-bottom: 40px;
    position: relative;
    overflow-x: hidden;
}

/* Faixa Superior */
.top-banner {
    background: linear-gradient(135deg, #7ed321 0%, #5fb300 100%);
    color: #000;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: pulse 2s ease-in-out infinite;
}

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

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

/* Logo */
.logo-container {
    text-align: center;
    margin: 30px 0;
    animation: fadeInDown 0.8s ease;
}

.logo {
    max-width: 350px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

/* Headline */
.headline {
    text-align: center;
    margin: 30px 0 25px 0;
    animation: fadeInUp 0.8s ease;
}

.headline h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

/* Subheadline Container */
.subheadline-container {
    text-align: center;
    margin: 20px 0 30px 0;
    animation: fadeIn 1s ease;
}

.subheadline {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.subheadline strong {
    font-weight: 700;
    color: #ffeb3b;
}

/* Caixa de Urgência */
.urgency-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #ff1493;
    animation: shake 1s ease infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-3px);
    }
    75% {
        transform: translateX(3px);
    }
}

.urgency-text {
    font-size: 18px;
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 10px;
}

.vagas-number {
    font-size: 72px;
    font-weight: 900;
    color: #ff1493;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 3px 3px 0 #ffd700;
}

.vagas-text {
    font-size: 24px;
    font-weight: 800;
    color: #000;
}

/* Botão Principal */
.cta-button {
    display: block;
    background: linear-gradient(135deg, #7ed321 0%, #5fb300 100%);
    color: #000;
    text-align: center;
    padding: 22px 40px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    margin: 25px 0 20px 0;
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.5),
                0 0 30px rgba(126, 211, 33, 0.3);
    transition: all 0.3s ease;
    animation: buttonGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(126, 211, 33, 0.5),
                    0 0 30px rgba(126, 211, 33, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(126, 211, 33, 0.7),
                    0 0 50px rgba(126, 211, 33, 0.5);
        transform: scale(1.05);
    }
}

.cta-button:active {
    transform: scale(0.98);
}

/* Prova Social */
.social-proof {
    text-align: center;
    margin: 20px 0;
    animation: fadeIn 1s ease;
}

.members-count {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.members-count span {
    font-weight: 800;
    color: #ffd700;
    font-size: 17px;
}

/* Texto Final */
.final-text {
    text-align: center;
    margin: 35px 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    animation: fadeIn 1.2s ease;
}

.final-text p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}

.final-text strong {
    color: #ffd700;
    font-weight: 700;
}

/* Benefícios */
.benefits {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.8s ease;
}

.benefit-icon {
    font-size: 32px;
}

.benefit-item p {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Notificações Flutuantes */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #7ed321 0%, #5fb300 100%);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 90%;
    text-align: center;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Animações */
@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 fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsivo */
@media (max-width: 400px) {
    .headline h1 {
        font-size: 22px;
    }
    
    .subheadline {
        font-size: 14px;
    }
    
    .vagas-number {
        font-size: 60px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 20px 35px;
    }
    
    .final-text p {
        font-size: 16px;
    }
}