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

/* Variables */
:root {
    --primary: #E08E45; /* Laranja ouro forte - botões principais */
    --primary-hover: #C77432; /* Hover para botões primários */
    --secondary: #F7C873; /* Amarelo suave - botões secundários */
    --title-color: #3D2C2E; /* Marrom escuro - títulos */
    --text-primary: #3D2C2E; /* Texto principal */
    --text-secondary: #5A4B4C; /* Cinza amarronzado - descrições */
    --success: #4CAF50; /* Verde para preços e elementos positivos */
    --background: #FFF6F2; /* Bege claro */
    --surface: #FFFFFF; /* Branco */
    --surface-alt: #FFF6F2; /* Bege amarelado */
    --border: #E9E3E1; /* Bordas suaves cinza claro */
    
    /* Gradients atualizados */
    --gradient-primary: linear-gradient(135deg, #E08E45 0%, #C77432 100%);
    --gradient-secondary: linear-gradient(135deg, #F7C873 0%, #E5B55E 100%);
    --shadow-light: 0 2px 10px rgba(61,44,46,0.1);
    --shadow-medium: 0 4px 20px rgba(61,44,46,0.15);
    --shadow-heavy: 0 8px 30px rgba(61,44,46,0.2);
}

/* Base Styles */
body {
    font-family: 'Inter', 'Roboto', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

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

/* Typography */
h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--title-color);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--title-color);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--gradient-primary);
    color: var(--surface);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--title-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #E5B55E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* FAQ Button Override */
.faq .btn-secondary {
    background: var(--secondary);
    color: var(--title-color);
}

.faq .btn-secondary:hover {
    background: #E5B55E;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: var(--primary);
    color: var(--surface);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.btn-package:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-package.premium {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-package.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: lightBeam 2s infinite;
    transition: all 0.3s ease;
}

.btn-package.premium:hover {
    background: linear-gradient(135deg, #F1C40F 0%, #B7950B 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-package.premium:hover::before {
    animation: lightBeam 1.5s infinite;
}

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

.cta-center {
    text-align: center;
    margin: 3rem 0;
}

/* Hero Section */
.hero {
    background: var(--surface);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-alt);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    text-align: center;
    max-width: 100%;
}

.hero-badge i {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-cta {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--surface-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid var(--border);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--surface);
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background: var(--surface);
}

.showcase-single {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.showcase-main {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    max-width: 100%;
}

.showcase-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.showcase-main {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 25%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--surface-alt);
}

.rating-display {
    text-align: center;
    margin-bottom: 3rem;
}

.stars {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.testimonial-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Limited Offer */
.limited-offer {
    padding: 15px 0;
    background: #dc3545;
}

.offer-banner {
    text-align: center;
}

.limited-offer .offer-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Packages */
.packages {
    padding: 80px 0;
    background: var(--surface);
}

.packages-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--surface);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid var(--border);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary);
}

.package-card.premium {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.package-card.premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(90,59,29,0.3);
}

.package-badge {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--surface);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price-container {
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.discount {
    display: inline-block;
    background: #dc3545;
    color: var(--surface);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 0.5rem;
}

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

.offer-text {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.installment-price {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-divider {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.payment-options {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
    margin-top: -0.5rem;
}

.and-more-section h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 0 2rem;
}

.included-text {
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.package-features i {
    color: var(--success);
    font-size: 1.1rem;
    min-width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-features {
    border-top: 2px dashed var(--primary);
    padding-top: 1rem;
    margin-top: 1rem;
}

.bonus-features li {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.bonus-features i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.bonus-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #dc3545;
    margin-left: 10px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.bonus-content span {
    line-height: 1.4;
}

.package-footer {
    padding: 1rem 2rem 2rem;
}

.social-proof {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.what-you-receive h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exclusive-bonus {
    background: linear-gradient(135deg, rgba(224, 142, 69, 0.1) 0%, rgba(199, 116, 50, 0.1) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid var(--primary);
}

.bonus-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.bonus-item i {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 20px;
    flex-shrink: 0;
}

.bonus-item span {
    flex: 1;
}

/* Additional CTA Section */
.additional-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--primary);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.access-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--surface);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--surface);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--surface-alt);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--surface);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    

    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-main {
        max-width: 60%;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .showcase-main {
        max-width: 80%;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .package-card {
        margin: 0 10px;
    }
    

    
    .current-price {
        font-size: 2.2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 15px 25px;
    }
}
