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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    min-height: 100vh;
}

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

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.hero .section-title {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.product-mockup {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-mockup:hover {
    transform: scale(1.05);
}

.hero-cta {
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #00bcd4;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Limited Offer Banner */
.limited-offer-banner {
    background: #dc2626;
    padding: 15px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

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

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    }
}

#current-date {
    font-weight: 800;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 10px;
    border-radius: 3px;
    margin-left: 6px;
    font-size: 16px;
}

/* Collection Section */
.collection {
    padding: 80px 0;
    background: white;
}

.collection-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.carousel-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    display: flex;
    width: 800%;
    height: 400px;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    width: 12.5%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.carousel-slide:hover .carousel-image {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffc107;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ffc107;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: #ffc107;
    color: black;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}



/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.single-card-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 450px;
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.single-card {
    background: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    width: 100%;
    max-width: 380px;
}

.pricing-card.dual-card {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.dual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.pricing-card.premium-card {
    border: 2px solid #ffc107;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 10;
}

.social-proof {
    text-align: center;
    margin-top: 15px;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffb300);
    border-radius: 20px 20px 0 0;
}

.original-price-red {
    font-size: 1.2rem;
    color: #dc2626;
    text-decoration: line-through;
    margin-bottom: 5px;
    font-weight: 600;
}

.bonus-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.bonus-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
    text-align: center;
}

.bonus-feature i {
    color: #ffc107 !important;
    font-size: 1.1rem;
}

.dual-card-cta {
    background: #10b981;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    animation: buttonPulse 2s infinite;
}

.dual-card-cta:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.premium-cta {
    background: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.premium-cta:hover {
    background: #059669;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.centered-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.premium-single {
    border: 2px solid #ffc107;
    position: relative;
    max-width: 420px;
}

.premium-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffb300);
}

.premium-single-cta {
    background: #ffc107;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.premium-single-cta:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

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

.pricing-card.premium {
    border-color: #fbbf24;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.price-container {
    text-align: center;
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: #dc2626;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.discount-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 10px;
}

.savings-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.bonus-feature .bonus-text {
    font-weight: bold;
    flex: 1;
}

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

.bonus-feature i.fas.fa-gift {
    color: #ffc107 !important;
}

/* Especificamente para ícones de presente */
i.fa-gift {
    color: #ffc107 !important;
}

/* Preços dos bônus */
.bonus-price {
    color: #dc2626;
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
}

.basic-cta, .single-card-cta {
    background: #10b981;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.single-card-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.single-card-cta:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

/* Section CTA Buttons */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

.section-cta .cta-button {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin: 0 auto;
    display: inline-block;
}

/* Featured Offer Section */


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

.testimonials-container {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.5rem;
    overflow: hidden;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: #f0fdf4;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.guarantee-icon i {
    font-size: 4rem;
    color: #10b981;
}

.guarantee-text h3 {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.guarantee-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3b82f6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #666;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-disclaimer {
    margin: 15px 0;
}

.footer-disclaimer p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright {
    margin-top: 10px;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .product-mockup {
        max-height: 300px;
    }
    
    .hero-image {
        gap: 20px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    #sales-notifications {
        top: 10px;
        right: 10px;
    }
    
    .sales-notification {
        max-width: none;
        margin-bottom: 8px;
    }
    
    .limited-offer-banner {
        padding: 12px 0;
    }
    
    .offer-text {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    #current-date {
        padding: 2px 6px;
        font-size: 13px;
        margin-left: 4px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Sales Notifications */
#sales-notifications {
    position: fixed;
    top: 20px;
    right: 0px;
    z-index: 10000;
    pointer-events: none;
}

.sales-notification {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 3px solid #10b981;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    margin-right: 15px;
    width: 260px;
    transform: translateX(280px);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.sales-notification.hide {
    transform: translateX(280px);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 12px;
}

.notification-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.notification-content {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

.notification-location {
    color: #10b981;
    font-weight: 500;
}

.notification-time {
    color: #999;
    font-size: 10px;
    margin-top: 3px;
}

.notification-package {
    color: #f59e0b;
    font-weight: 500;
}
