/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #040d2a;
    --secondary-dark: #040d2a;
    --accent-cyan: #1368aa;
    --accent-cyan-dark: #008B88;
    --text-white: #FFFFFF;
    --text-gray: #444444;
    --text-dark: #333333;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-dark: rgba(0, 31, 45, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --cyan-shadow: rgba(0, 184, 181, 0.3);
    --cyan-glow: rgba(0, 184, 181, 0.5);
    --dark-shadow: rgba(0, 0, 0, 0.1);
}

/* Fontes e Body */
body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: var(--primary-dark);
    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(0, 184, 181, 0.3);
    border-top-color: var(--accent-cyan);
    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: #040d2a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 184, 181, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: #040d2a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.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;
}

.countdown-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.countdown-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.countdown-separator {
    font-size: 16px;
    color: rgba(0, 184, 181, 0.5);
    margin: 0 3px;
}

.countdown-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
}

/* Botão CTA na Navbar */
.cta-nav-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-cyan);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px var(--cyan-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--cyan-glow);
    background: var(--accent-cyan-dark);
}

/* Hero Section - SEMPRE AZUL */
.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: #1368aa;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 184, 181, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border: none;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    background: #218838;
}

@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-cyan);
        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: var(--accent-cyan);
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--cyan-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--cyan-glow);
    background: var(--accent-cyan-dark);
}

/* Sections - Alternância de cores BRANCO e AZUL */
.section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Seção #revelacao - BRANCO */
#revelacao {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Seção #workshop - AZUL */
#workshop {
    background: linear-gradient(135deg, #040d2a 0%, #0f2f7a 50%, #152b5f 100%);
    color: var(--text-white);
}


/* Seção #para-quem - BRANCO */
#para-quem {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Seção #instrutora - AZUL */
#workshop {
    background: linear-gradient(135deg, #040d2a 0%, #0f2f7a 50%, #152b5f 100%);
    color: var(--text-white);
}

/* Seção #beneficios - BRANCO */
#beneficios {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Seção #garantia - AZUL */
#workshop {
    background: linear-gradient(135deg, #040d2a 0%, #0f2f7a 50%, #152b5f 100%);
    color: var(--text-white);
}


/* Seção #faq - BRANCO */
#faq {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Seção #decisao - AZUL */
#workshop {
    background: linear-gradient(135deg, #040d2a 0%, #0f2f7a 50%, #152b5f 100%);
    color: var(--text-white);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Títulos das seções */
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
}

/* Títulos em seções brancas */
#revelacao .section-title,
#para-quem .section-title,
#beneficios .section-title,
#faq .section-title {
    color: var(--primary-dark);
}

/* Títulos em seções azuis */
#workshop .section-title,
#instrutora .section-title,
#garantia .section-title,
#decisao .section-title {
    color: var(--text-white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
}

.section-featured {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

#workshop .section-featured {
    color: #ffffff;
}

#revelacao .section-featured {
    color: var(--primary-dark);
}

/* Texto em seções brancas */
#revelacao .section-highlight,
#revelacao .info-text,
#revelacao .info-title,
#revelacao p,
#para-quem .section-highlight,
#para-quem .info-text,
#para-quem .info-title,
#para-quem p,
#beneficios .section-highlight,
#beneficios .info-text,
#beneficios .info-title,
#beneficios p,
#faq .section-highlight,
#faq .info-text,
#faq .info-title,
#faq p {
    color: var(--text-dark);
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-card-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.info-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.info-card-image:hover img {
    transform: scale(1.05);
}

.info-grid-horizontal {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.info-grid-horizontal .info-card-image {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    scroll-snap-align: center;
}

.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-cyan);
    border-radius: 10px;
}

/* Cards em seções brancas */
#revelacao .info-card,
#para-quem .info-card,
#beneficios .info-card,
#faq .info-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 184, 181, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

#revelacao .info-card:hover,
#para-quem .info-card:hover,
#beneficios .info-card:hover,
#faq .info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 184, 181, 0.2);
}

/* Cards em seções azuis */
#workshop .info-card,
#instrutora .info-card,
#garantia .info-card,
#decisao .info-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card {
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
}

.info-icon {
    font-size: 60px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-text {
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.price-info {
    font-size: 20px;
    margin-bottom: 30px;
}

#revelacao .price-info,
#para-quem .price-info,
#beneficios .price-info {
    color: var(--text-dark);
}

/* Check List */
.checklist {
    list-style: none;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.checklist li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#para-quem .checklist li {
    color: var(--text-dark);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

#workshop .checklist li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.checklist li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--accent-cyan);
    font-size: 24px;
}

/* Warning Box */
.warning-box {
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#para-quem .warning-box {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

#workshop .warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.warning-box p {
    font-size: 18px;
    text-align: center;
}

.warning-box i {
    color: #ff4444;
    margin-right: 10px;
}

/* Instructor Section */
.instructor-section {
    border-radius: 30px;
    padding: 60px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Mentoras Banner */
#instrutora {
    padding: 0;
}

#instrutora .container {
    max-width: 100%;
    padding: 0;
}

.mentoras-banner {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1920px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mentoras-banner {
        max-width: 768px;
    }
}

/* Guarantee Badge */
.guarantee-badge {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--text-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px auto;
    max-width: 600px;
    box-shadow: 0 10px 40px var(--cyan-shadow);
    position: relative;
    overflow: hidden;
}

.guarantee-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.guarantee-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#faq .faq-item {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

#faq .faq-question {
    color: var(--text-dark);
}

.faq-question:hover {
    background: rgba(0, 184, 181, 0.1);
}

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
    color: var(--accent-cyan);
}

.faq-arrow i {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 25px;
    line-height: 1.6;
}

#faq .faq-answer-content {
    color: var(--text-dark);
}

.faq-item.active .faq-arrow i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Options */
.options {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.option {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

#decisao .option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-recommended {
    border-color: var(--accent-cyan) !important;
    background: linear-gradient(135deg, rgba(0, 184, 181, 0.1) 0%, transparent 100%) !important;
}

.option-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.option-icon i {
    color: #ff4444;
}

.option-recommended .option-icon i {
    color: var(--accent-cyan);
}

.option h3 {
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.option p {
    color: rgba(255, 255, 255, 0.9);
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 50px;
}

.urgency-text {
    font-size: 24px;
    color: #ff4444;
    margin-bottom: 30px;
    font-weight: 600;
}

.final-button {
    font-size: 20px;
    padding: 10px 18px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

.animate-on-scroll[data-delay="0.1"] {
    animation-delay: 0.1s;
}

.animate-on-scroll[data-delay="0.2"] {
    animation-delay: 0.2s;
}

.animate-on-scroll[data-delay="0.3"] {
    animation-delay: 0.3s;
}

.animate-on-scroll[data-delay="0.4"] {
    animation-delay: 0.4s;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* 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: none;
    }
    
    .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 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
}

.oferta-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.oferta-left {
    flex: 0 0 300px;
}

.oferta-question {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    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.3);
}

.oferta-header {
    background: #d32f2f;
    color: var(--text-white);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.oferta-body {
    padding: 40px 30px;
    text-align: center;
}

.oferta-promo {
    color: #d2691e;
    font-size: 18px;
    margin-bottom: 20px;
}

.oferta-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.oferta-installment {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.oferta-button {
    display: inline-block;
    background: #28a745;
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
}

.oferta-button:hover {
    background: #218838;
    transform: translateY(-2px);
}

.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);
}

.oferta-benefits li i {
    position: absolute;
    left: 0;
    top: 13px;
    color: #d2691e;
    font-size: 10px;
}

/* Destaque sutil do texto final da seção revelação */
.section-highlight {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

#revelacao .section-highlight {
    color: var(--text-dark);
}

@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;
}

@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;
    }
}

/* 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: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 18px;
    }
    
    .marquee-track {
        gap: 30px;
    }
}