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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Faixa promocional melhorada */
.promo-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    animation: pulse 1.5s infinite;
}

.promo-banner h1 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.banner-subtitle {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Conteúdo principal */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
}

.hero-section {
    text-align: center;
    max-width: 700px;
    width: 100%;
}

/* Badge de exclusividade */
.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Título principal */
.main-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ff6b35;
}

/* Grid de benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.benefit-item i {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 10px;
    display: block;
}

.benefit-item span {
    font-weight: 600;
    font-size: 14px;
}

/* Prova social */
.social-proof {
    margin-bottom: 20px;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.avatar:first-child { 
    margin-left: 0; 
    background-image: url('avatar1.jpg');
}

.avatar:nth-child(2) {
    background-image: url('avatar2.jpg');
}

.avatar:nth-child(3) {
    background-image: url('avatar3.jpg');
}

.avatar:nth-child(4) {
    background-image: url('avatar4.jpg');
}

.avatar-count {
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    margin-left: 10px;
}

.social-proof p {
    font-size: 14px;
    opacity: 0.8;
}

/* Logo da Elly melhorado */
.logo-container {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-box {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: 3px solid #D2691E;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: logoShine 3s infinite;
}

.logo-box:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.elly-name {
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: -5px;
}

.indica-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-transform: uppercase;
}

.trust-badges {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
}

/* Proposta de valor */
.value-proposition {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.value-proposition h3 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.value-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.value-point i {
    color: #25D366;
    font-size: 18px;
    flex-shrink: 0;
}

/* Seção de urgência */
.urgency-section {
    margin: 30px 0;
}

.urgency-box {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    animation: urgencyPulse 2s infinite;
}

.urgency-box h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.urgency-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    height: 100%;
    width: 68%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Botões de ação melhorados */
.cta-buttons {
    margin: 40px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.primary-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    animation: mainCTAPulse 3s infinite;
}

.secondary-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 24px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-main {
    font-size: 16px;
    font-weight: 800;
}

.btn-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
}

.btn-shine {
    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.6s ease;
}

.whatsapp-btn:hover .btn-shine {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.whatsapp-btn.clicked {
    transform: scale(0.98);
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 15px;
}

.security-info i {
    color: #25D366;
}

/* Depoimentos */
.testimonials {
    margin: 40px 0;
    text-align: center;
}

.testimonials h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ff6b35;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stars {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 14px;
}

.testimonial span {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 600;
}

/* FAQ */
.faq-section {
    margin: 40px 0;
    text-align: left;
}

.faq-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #ff6b35;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-item strong {
    color: #ff6b35;
    display: block;
    margin-bottom: 5px;
}

.faq-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA final */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.final-cta h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff6b35;
}

.final-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.final-cta .whatsapp-btn {
    max-width: 350px;
    padding: 18px 30px;
    font-size: 16px;
}

/* Animações */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6); }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes mainCTAPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .promo-banner h1 {
        font-size: 16px;
    }
    
    .banner-subtitle {
        font-size: 12px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .benefit-item {
        padding: 15px 10px;
    }
    
    .logo-box {
        padding: 25px 35px;
    }
    
    .elly-name {
        font-size: 40px;
    }
    
    .value-proposition {
        padding: 20px;
    }
    
    .value-proposition h3 {
        font-size: 18px;
    }
    
    .value-points {
        text-align: center;
    }
    
    .value-point {
        justify-content: center;
        text-align: center;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-content {
        padding: 18px 25px;
    }
    
    .btn-main {
        font-size: 14px;
    }
    
    .btn-sub {
        font-size: 11px;
    }
    
    .main-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 15px;
    }
    
    .promo-banner h1 {
        font-size: 14px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-box {
        padding: 20px 30px;
    }
    
    .elly-name {
        font-size: 36px;
    }
    
    .value-proposition {
        padding: 15px;
    }
    
    .value-proposition h3 {
        font-size: 16px;
    }
    
    .urgency-box {
        padding: 20px;
    }
    
    .urgency-box h4 {
        font-size: 16px;
    }
    
    .final-cta {
        padding: 20px;
    }
    
    .final-cta h3 {
        font-size: 20px;
    }
}

