/* Variaveis e Reset */
:root {
    /* Paleta de Cores Gourmet */
    --laranja-terra: #C76A3A;  /* CTA, Destaques */
    --areia-gourmet: #E7D5C4;  /* Fundos Secundários */
    --coco-bambu: #F3EDE8;     /* Fundo Principal */
    --cinza-sal: #8F918D;      /* Textos Secundários, Ícones */
    --marrom-pimenta: #6B3F2E; /* Títulos, Preços */

    /* Mapeamento Semântico */
    --primary-color: var(--laranja-terra);
    --bg-main: var(--coco-bambu);
    --bg-secondary: var(--areia-gourmet);
    --text-title: var(--marrom-pimenta);
    --text-body: var(--cinza-sal);
    
    /* Legacy Vars Mapped */
    --terracota: var(--laranja-terra);
    --verde-agua: var(--cinza-sal);
    --azul-petroleo: var(--marrom-pimenta);
    --bege-off: var(--areia-gourmet);
    --branco-gelo: var(--bg-main);
    --text-dark: var(--marrom-pimenta);
    --text-light: var(--cinza-sal);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-title);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-title);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--terracota);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--terracota);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(199, 106, 58, 0.4);
}

.cta-button:hover {
    background-color: #A0552D; /* Darker Terra */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 106, 58, 0.6);
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

/* Animation Pulse */
.pulse {
    animation: pulse-animation 2s infinite;
}

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

/* Hero Section */
.hero {
    background-color: var(--bg-secondary); /* Areia Gourmet */
    color: var(--text-title); /* Marrom */
    padding: 4rem 0 5rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    display: inline-block;
    background: rgba(199, 106, 58, 0.1);
    color: var(--terracota);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-title);
}

.hero .highlight {
    color: var(--terracota);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body); /* Cinza */
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(107, 63, 46, 0.15);
    margin-bottom: 2.5rem;
    border: 4px solid #fff;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-price-info {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.4;
}

.old-price-small {
    text-decoration: line-through;
    opacity: 0.8;
}

.hero-price-info strong {
    color: var(--terracota); /* Or Marrom */
    font-size: 1.1rem;
}

/* Intro Course */
.intro-course {
    padding: 5rem 0;
    background-color: var(--bg-main); /* Coco Bambu */
}

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

.benefit-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--terracota); /* Destaque */
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-title);
}

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

/* Curriculum */
.curriculum {
    padding: 5rem 0;
    background-color: var(--bg-secondary); /* Areia */
}

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

.module {
    border: 1px solid rgba(143, 145, 141, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-main);
}

.module-header {
    background-color: var(--text-title); /* Marrom */
    color: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--terracota);
    font-weight: 700;
    line-height: 1;
}

.module-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.module-content {
    list-style: none;
    padding: 1.5rem;
}

.module-content li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-body);
}

.module-content li i {
    color: var(--terracota);
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Gallery */
.gallery {
    padding: 4rem 0;
    background-color: var(--bg-main); /* Coco Bambu */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media(min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Lucratividade / Bonus */
.lucratividade, .bonus {
    padding: 5rem 0;
    background-color: var(--bg-secondary); /* Areia */
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-main);
}

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

.testimonial-card {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(143, 145, 141, 0.1);
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(199, 106, 58, 0.2);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.stars {
    color: #f1c40f;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--terracota);
    text-align: right;
}

.client-feedback-section {
    text-align: center;
    margin-top: 3rem;
}

.feedback-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.feedback-grid img {
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    scroll-snap-align: center;
    border: 1px solid #eee;
}

.feedback-grid::-webkit-scrollbar {
    height: 8px;
}
.feedback-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.feedback-grid::-webkit-scrollbar-thumb {
    background: var(--terracota);
    border-radius: 10px;
}

/* Offer */
.offer {
    padding: 6rem 0;
    background-color: var(--bg-secondary); /* Areia */
    color: var(--text-body);
    text-align: center;
}

.offer-box {
    background: var(--bg-main);
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--terracota);
}

.offer-label {
    display: inline-block;
    background: var(--terracota);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-box h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-title);
}

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

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-title);
    line-height: 1;
}

.installments {
    display: block;
    font-size: 1.1rem;
    color: var(--terracota);
    font-weight: 600;
    margin-top: 0.5rem;
}

.offer-features {
    list-style: none;
    text-align: left;
    max-width: 350px;
    margin: 0 auto 2.5rem;
}

.offer-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features i {
    color: var(--terracota);
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-main);
}

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

details {
    background: var(--bg-main);
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-title);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--terracota);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-body);
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--text-title); /* Marrom */
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 0.5rem;
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Responsividade Mobile - Copiado e ajustado */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .hero { padding: 3rem 0 4rem; }
    .hero h1 { font-size: 1.8rem; line-height: 1.3; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; line-height: 1.5; margin-bottom: 2rem; }
    .tagline { font-size: 0.75rem; margin-bottom: 0.8rem; }
    .video-wrapper { margin-bottom: 2rem; }
    .section-title { font-size: 1.75rem; margin-bottom: 1.5rem; }
    .section-subtitle { font-size: 1rem; margin-top: -1rem; }
    .cta-button { width: 100%; text-align: center; padding: 1rem 1.5rem; font-size: 1rem; white-space: normal; line-height: 1.3; }
    .intro-course, .curriculum, .lucratividade, .testimonials, .offer, .faq, .gallery { padding: 3rem 0; }
    .benefits-grid, .modules-container, .testimonials-grid { gap: 1.5rem; }
    .module-header h3 { font-size: 1.1rem; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-card p { font-size: 0.95rem; }
    .feedback-grid img { height: 300px; width: auto; }
    .offer-box h2 { font-size: 1.8rem; }
    .new-price { font-size: 3rem; }
}
