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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 50%, #A855F7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

.feature i {
    color: #10B981;
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #10B981, #059669);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.price {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.product-showcase {
    position: relative;
    text-align: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.floating-badge span {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
}

.floating-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #F8FAFC;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1F2937;
}

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

.problem-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item i {
    font-size: 3rem;
    color: #EF4444;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1F2937;
}

.problem-cta {
    text-align: center;
    background: linear-gradient(135deg, #6B46C1, #9333EA);
    color: white;
    padding: 50px;
    border-radius: 20px;
}

.problem-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-subtitle {
    font-size: 1.5rem;
    color: #6B46C1;
    margin-bottom: 20px;
    font-weight: 600;
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4B5563;
    line-height: 1.8;
}

.benefits-list {
    space-y: 20px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit i {
    color: #FBBF24;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.benefit span {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.beauty-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Results Section */
.results {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.result-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #6B46C1, #9333EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.result-icon i {
    font-size: 2rem;
    color: white;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1F2937;
}

.result-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #6B46C1;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #FBBF24;
    margin-right: 5px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #4B5563;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: #1F2937;
}

.testimonial-author span {
    color: #10B981;
    font-size: 0.9rem;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.urgency-content {
    text-align: center;
}

.urgency h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.urgency-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.urgency-item i {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F2937, #374151);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.price-section {
    margin-bottom: 40px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #9CA3AF;
    margin-right: 15px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
    margin-right: 15px;
}

.discount {
    background: #EF4444;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.cta-button-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #10B981, #059669);
    color: white;
    padding: 30px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.6);
}

.button-subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 8px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
}

.badge i {
    margin-right: 10px;
    color: #10B981;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button, .cta-button-large {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}

