/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Fundo Escuro Sépia */
    --primary-dark: #000000;
    --secondary-dark: #2b1810;
    --brown-dark: #3d2817;
    
    /* Destaques Dourados */
    --accent-gold: #f99e54;
    --accent-amber: #FFB000;
    --accent-bronze: #CD7F32;
    
    /* Textos */
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-gray: #999999;
    --text-dark: #1a1a1a;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    --bg-dark-gradient: linear-gradient(135deg, #000000 0%, #1a0f08 50%, #2b1810 100%);
    
    /* Glassmorphism */
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-dark: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(212, 175, 55, 0.2);
    
    /* Sombras */
    --gold-shadow: rgba(212, 175, 55, 0.4);
    --gold-glow: rgba(212, 175, 55, 0.6);
    --dark-shadow: rgba(0, 0, 0, 0.3);
}

/* Importar Fonte Serifada Elegante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Fontes e Body */
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: var(--bg-dark-gradient);
    color: var(--text-white);
    line-height: 1.6;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar com Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px var(--dark-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: nowrap;
    gap: 20px;
}

/* Cronômetro no Header */
.countdown-header {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.countdown-text {
    font-size: 18px;
    color: #f99e54;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-number {
    font-size: 20px;
    font-weight: 700;
    color: #f99e54;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.countdown-separator {
    font-size: 16px;
    color: rgba(212, 175, 55, 0.5);
    margin: 0 3px;
}

.countdown-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
    font-weight: 300;
}

/* Botão CTA na Navbar */
.cta-nav-button {
    display: inline-block;
    padding: 10px 20px;
    background: #f99e54;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px var(--gold-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.cta-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--gold-glow);
    background: var(--accent-amber);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.hero-banner {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-cta-button {
    position: absolute;
    left: 199px;
    top: 690px;
    display: inline-block;
    padding: 15px 40px;
    background: #F99E54;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--gold-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
    background: var(--accent-amber);
}

@media (max-width: 768px) {
    .hero-cta-button {
        left: 50%;
        transform: translateX(-50%);
        top: 88%;
        font-size: 13px;
        padding: 10px 09px;
    }
    
    .hero-cta-button:hover {
        transform: translateX(-50%) translateY(-3px);
    }
    
    .info-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-carousel .info-card-image {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .info-carousel::-webkit-scrollbar {
        height: 8px;
    }
    
    .info-carousel::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    
    .info-carousel::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid-horizontal .info-card-image {
        flex: 0 0 85%;
        min-width: 85%;
    }
    
    .beneficios-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none !important;
    }
    
    .beneficios-carousel .info-card-image {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
}

/* CTA Buttons gerais (resto da página) */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: radial-gradient(ellipse at center, #F99E54 0%, #D48845 100%);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--gold-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--gold-glow);
    background: var(--accent-amber);
}

/* Sections - Alternância de cores */
.section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Seções ESCURAS (Fundo Preto/Marrom Sépia) */
#workshop,
#instrutora,
#garantia,
#decisao {
    background: var(--bg-dark-gradient);
    color: var(--text-white);
}

/* Seções BRANCAS */
#revelacao,
#para-quem,
#beneficios,
#faq {
    background: #000000;
    color: #ffffff;
}

/* Seção #oferta - Escuro Elegante */
#oferta {
    background: linear-gradient(135deg, #000000 0%, #1a0f08 50%, #2b1810 100%);
    color: var(--text-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Títulos das seções - FONTE SERIFADA ELEGANTE */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
    letter-spacing: 1px;
}

/* Títulos em seções brancas */
#revelacao .section-title,
#para-quem .section-title,
#beneficios .section-title,
#faq .section-title {
    color: #ffffff;
}

/* Títulos em seções escuras - DOURADO */
#workshop .section-title,
#instrutora .section-title,
#garantia .section-title,
#decisao .section-title {
    color: #f99e54;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #f99e54;
    border-radius: 2px;
}

/* Subtítulos - FONTE SANS-SERIF LEVE */
.section-subtitle {
    text-align: center;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Subtítulos em seções brancas */
#revelacao .section-subtitle,
#para-quem .section-subtitle,
#beneficios .section-subtitle,
#faq .section-subtitle {
    color: #FDB36A;
}

/* Subtítulos em seções escuras */
#workshop .section-subtitle,
#instrutora .section-subtitle,
#garantia .section-subtitle,
#decisao .section-subtitle {
    color: var(--text-light);
}

.section-featured {
    text-align: center;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-grid-horizontal {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin-bottom: 40px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(0, 0, 0, 0.1);
}

.info-grid-horizontal::-webkit-scrollbar {
    height: 8px;
}

.info-grid-horizontal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.info-grid-horizontal::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.info-grid-horizontal::-webkit-scrollbar-thumb:hover {
    background: var(--accent-amber);
}

.info-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--dark-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-bronze));
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.info-card-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.info-card-image {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--dark-shadow);
    transition: all 0.3s ease;
}

.info-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.info-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Checklist */
.checklist {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
}

.checklist li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.checklist li i {
    position: absolute;
    left: 0;
    top: 18px;
    color: var(--accent-gold);
    font-size: 20px;
}

/* Warning Box */
.warning-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #f99e54;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
}

.warning-box p {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.warning-box i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 24px;
}

/* Mentoras Banner */
.mentoras-banner {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--dark-shadow);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.price-info {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Guarantee Badge */
.guarantee-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.guarantee-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Options */
.options {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.option {
    flex: 0 0 calc(50% - 20px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.option-recommended {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.option:hover {
    transform: translateY(-5px);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.option-icon i {
    color: rgba(255, 255, 255, 0.3);
}

.option-recommended .option-icon i {
    color: var(--accent-gold);
}

.option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.option p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.final-button {
    font-size: 20px;
    padding: 18px 50px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--dark-shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-arrow {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animações */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
    .countdown-header {
        font-size: 12px;
        gap: 4px;
    }
    
    .countdown-number {
        font-size: 18px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .cta-nav-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }
    
    .countdown-header {
        flex-direction: row;
        justify-content: center;
        text-align: center;
        font-size: 10px;
        gap: 3px;
    }
    
.countdown-header .countdown-text {
    display: block;
    font-size: 14px;
}
    
    .countdown-number {
        font-size: 16px;
    }
    
    .countdown-label {
        font-size: 9px;
    }
    
    .countdown-separator {
        font-size: 14px;
        margin: 0 2px;
    }
    
    .cta-nav-button {
        padding: 10px 20px;
        font-size: 11px;
        width: 100%;
        text-align: center;
    }

.hero {
        padding-top: 80px;
        height: 100vh;
        min-height: 500px;
        max-height: 700px;
    }

    .section {
        padding: 60px 20px;
    }

    .instructor-section {
        padding: 40px 20px;
        text-align: center;
        flex-direction: column;
    }

    .instructor-photo {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .options {
        flex-direction: column;
        align-items: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .guarantee-badge {
        padding: 30px 20px;
    }
}

/* Seção Oferta */
.oferta-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.oferta-left {
    flex: 0 0 300px;
}

.oferta-question {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.oferta-center {
    flex: 0 0 400px;
}

.oferta-box {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.oferta-header {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.oferta-body {
    padding: 40px 30px;
    text-align: center;
}

.oferta-promo {
    color: var(--accent-bronze);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.oferta-price {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.oferta-installment {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.oferta-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 20px var(--gold-shadow);
}

.oferta-button:hover {
    background: var(--accent-amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.oferta-payment-methods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.oferta-payment-methods img {
    height: 30px;
    opacity: 0.7;
}

.oferta-right {
    flex: 0 0 350px;
}

.oferta-benefits {
    list-style: none;
}

.oferta-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.oferta-benefits li i {
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--accent-gold);
    font-size: 10px;
}

/* Destaque sutil do texto final da seção revelação */
.section-highlight {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

#revelacao .section-highlight {
    color: #ffffff;
}

@media (max-width: 768px) {
    .section-highlight {
        font-size: 18px;
        margin-top: 40px;
    }
}

/* Remove botão e aumenta cronômetro SOMENTE NO MOBILE */
@media (max-width: 768px) {
    
    .oferta-container {
        flex-direction: column;
    }
    
    .oferta-left,
    .oferta-center,
    .oferta-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .oferta-question {
        font-size: 28px;
        text-align: center;
    }
    
    .oferta-box {
        margin: 20px 0;
    }
    
    .oferta-benefits li {
        font-size: 14px;
    }
    .cta-nav-button {
        display: none !important;
    }
    
    .countdown-number {
        font-size: 24px !important;
    }
    
    .countdown-label {
        font-size: 12px !important;
    }
    
    .countdown-separator {
        font-size: 18px !important;
    }
    

}

/* Carrossel de Trabalhos */
.trabalhos-carousel-container {
    background: transparent;
    padding: 10px 0;
    overflow: hidden;
}

.trabalhos-carousel {
    display: flex;
    width: 100%;
}

.trabalhos-track {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    animation: scrollTrabalhos 40s linear infinite;
    flex-shrink: 0;
}
.trabalho-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    border: 2px solid var(--accent-gold);
}

@keyframes scrollTrabalhos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .trabalhos-carousel-container {
        padding: 10px 0;
    }
    
    .trabalho-img {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }
    
    .trabalhos-track {
        gap: 20px;
    }
}


/* Seção Mentora */
.mentora-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mentora-foto {
    flex: 0 0 350px;
}

.foto-cris {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--dark-shadow);
    border: 3px solid var(--accent-gold);
}

.mentora-texto {
    flex: 1;
    min-width: 300px;
}

.mentora-citacao {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.mentora-autoridade {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

.mentora-autoridade li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--accent-gold);
}

.mentora-autoridade li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--accent-gold);
    font-size: 18px;
}

@media (max-width: 768px) {
    .mentora-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mentora-foto {
        flex: 0 0 250px;
        margin: 0 auto;
    }
    
    .mentora-citacao {
        font-size: 16px;
    }
    
    .mentora-autoridade li {
        font-size: 16px;
        text-align: left;
    }
}


/* Carrossel Marquee - Resinas Estéticas */
.marquee-container {
    background: transparent;
    padding: 05px 0;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: scrollMarquee 30s linear infinite;
    flex-shrink: 0;
    white-space: nowrap;
}

.marquee-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 18px;
    }
    
    .marquee-track {
        gap: 30px;
    }
}