/* ==================================================
   RESET, VARIÁVEIS E BASE
   ================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --color-bg-dark: #000000;
    --color-bg-header: #050505;
    --color-primary: #FF6600; 
    --color-text-light: #ffffff;
    --color-text-gray: #cccccc;
    --color-highlight: #e0b063; 
    --color-btn-green: #1ed760; 
    --color-red-dark: #7a0000;
    --color-red-light: #d60000;
    --font-primary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.5;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ==================================================
   BOTÕES GERAIS
   ================================================== */
.btn {
    display: inline-block; padding: 10px 20px; text-decoration: none;
    font-weight: 700; border-radius: 4px; text-align: center; text-transform: uppercase;
}
.btn-primary { background-color: var(--color-btn-green); color: #000; }
.btn-highlight-green {
    background-color: var(--color-btn-green); color: #000; font-size: 1.2rem;
    font-weight: 900; width: 100%; max-width: 450px; margin: 30px 0;
    display: block; padding: 18px; transition: 0.3s ease;
}
.btn-highlight-green:hover { background-color: #1abc54; transform: scale(1.02); }

/* ==================================================
   SESSÃO 1: CABEÇALHO, URGÊNCIA E HERO
   ================================================== */
.urgency-bar { background-color: var(--color-bg-header); padding: 10px 0; border-bottom: 2px solid #222; }
.urgency-content { display: flex; justify-content: center; align-items: center; gap: 15px; }
.urgency-content p { font-weight: 900; font-size: 0.8rem; letter-spacing: 1px; }
.progress-container { width: 150px; height: 10px; background-color: #333; border-radius: 10px; overflow: hidden; }
.progress-bar { width: 68%; height: 100%; background: repeating-linear-gradient(45deg, var(--color-red-light), var(--color-red-light) 10px, var(--color-red-dark) 10px, var(--color-red-dark) 20px); }

.header { background-color: var(--color-bg-header); padding: 15px 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.mobile-logo { display: none; }

.hero { position: relative; padding-top: 60px; padding-bottom: 60px; background-color: #000; }
.hero-content { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; gap: 40px; }
.hero-text { flex: 1.2; max-width: 650px; }
.hero-image { flex: 1; display: flex; justify-content: flex-end; }
.hero-image img { width: 100%; max-width: 700px; height: 650px; object-fit: cover; mask-image: linear-gradient(to right, transparent 0%, black 25%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%); }

.hero-text h1 { font-size: 3rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px; }
.highlight-text { color: var(--color-highlight); border-bottom: 5px solid var(--color-highlight); }
.highlight-box { background-color: var(--color-highlight); color: #000; padding: 2px 10px; display: inline-block; margin-top: 8px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 15px; }
.hero-subtext { font-size: 1.1rem !important; color: var(--color-text-gray); margin-bottom: 30px; }
.hero-info p { font-size: 0.9rem; color: var(--color-text-gray); letter-spacing: 2px; }

.countdown-section { background: linear-gradient(to bottom, var(--color-red-dark), var(--color-red-light)); text-align: center; padding: 30px 0; position: relative; z-index: 5; }
.countdown-title { color: #fff; font-weight: 900; font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 1px; }
.timer-container { display: flex; justify-content: center; gap: 15px; }
.time-box { background-color: #0a0a0a; padding: 15px; border-radius: 4px; min-width: 70px; border: 1px solid #222; }
.time-box span { display: block; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.time-box small { font-size: 0.7rem; color: #888; font-weight: 700; }

/* ==================================================
   SESSÃO 2: DORES E IDENTIFICAÇÃO
   ================================================== */
.identification-section { background-color: var(--color-bg-dark); padding: 80px 0; text-align: center; border-top: 1px solid #111; }
.identification-content { max-width: 950px; margin: 0 auto; }
.section-title { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; line-height: 1.4; margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-gray); margin-bottom: 50px; letter-spacing: 0.5px; }
.gold-subtitle { color: var(--color-highlight); font-size: 1.1rem; font-weight: 900; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }
.pain-points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 40px; text-align: left; }
.pain-point-item { display: flex; align-items: flex-start; gap: 15px; }
.quote-icon { font-size: 3.5rem; color: #222; line-height: 0.7; font-family: serif; }
.pain-point-text h4 { font-size: 1.1rem; font-weight: 900; color: var(--color-text-light); margin-bottom: 10px; line-height: 1.3; }
.pain-point-text p { font-size: 0.95rem; color: var(--color-red-light); font-weight: 700; line-height: 1.4; }

/* ==================================================
   SESSÃO 3: PROVA SOCIAL (COLAGEM DE IMAGENS)
   ================================================== */
.proof-section { background-color: var(--color-red-dark); padding: 150px 0 100px 0; position: relative; z-index: 1; }
.proof-content { display: flex; align-items: center; justify-content: space-between; position: relative; }
.image-collage-container { position: relative; width: 50%; height: 500px; margin-top: -250px; z-index: 10; }
.collage-card { position: absolute; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.4); border: 4px solid #fff; }
.collage-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-1 { width: 240px; height: 320px; top: 0; left: 20px; z-index: 2; transform: rotate(-3deg); }
.card-2 { width: 280px; height: 200px; top: 40px; left: 220px; z-index: 3; transform: rotate(2deg); }
.card-3 { width: 220px; height: 260px; top: 220px; left: 0; z-index: 4; transform: rotate(4deg); }
.card-4 { width: 260px; height: 260px; top: 180px; left: 180px; z-index: 1; transform: rotate(-2deg); }
.proof-text-content { width: 45%; color: var(--color-text-light); text-align: left; padding-left: 30px; }
.proof-title { font-size: 2.8rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; margin-bottom: 20px; }

/* ==================================================
   SESSÃO 4: CARROSSEL DE MÓDULOS (SLIDER PREMIUM)
   ================================================== */
.modules-carousel-section {
    background-color: var(--color-bg-header); /* Mantém o fundo escuro integrado */
    padding: 100px 0;
    overflow: hidden; /* Garante que a rolagem lateral não quebre a página inteira */
}

.carousel-wrapper {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 20px;
}

/* A trilha onde os cards correm */
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;
    padding-bottom: 30px; 
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab; /* NOVO: Deixa o mouse com ícone de "mão aberta" no PC */
}

/* NOVO: Quando o usuário clica, a mãozinha "fecha" segurando o card */
.carousel-track:active {
    cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Oculta a barra no Chrome/Safari */
}

/* O Card Individual */
.carousel-card {
    /* Mostra exatos 3 cards por vez no PC */
    flex: 0 0 calc(33.333% - 14px); 
    scroll-snap-align: center; /* Trava o card no centro ao deslizar */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    border: 1px solid #222;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
    z-index: 1;
}

/* O Degradê Laranja/Vermelho com a sua nova cor #d55e02 */
.carousel-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(213,94,2,0) 25%, rgba(145,64,1,0.95) 55%, var(--color-red-light) 85%);
    z-index: 2;
}

.carousel-card .card-text {
    position: relative;
    z-index: 3;
    padding: 30px 20px;
}

.carousel-card .step-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.carousel-card .step-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 3px 8px;
}

.carousel-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
}

/* ==================================================
   RESPONSIVIDADE DO CARROSSEL (CELULAR)
   ================================================== */
@media (max-width: 900px) {
    .modules-carousel-section {
        padding: 60px 0;
    }
    
    .carousel-track {
        padding-left: 15px; /* Margem inicial para não encostar na borda da tela */
        gap: 15px;
    }

    .carousel-card {
        /* No celular, mostra 1 card inteiro e a "pontinha" do próximo 
           para o cérebro do usuário entender que ele pode arrastar pro lado */
        flex: 0 0 85%; 
        height: 450px;
    }
}

/* ==================================================
   SESSÃO 5: CITAÇÃO DE IMPACTO
   ================================================== */
.quote-section { background: linear-gradient(to right, #1a0000 0%, #7a0000 40%, var(--color-red-light) 100%); padding: 120px 0; text-align: center; position: relative; z-index: 1; }
.quote-content { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.quote-text { color: var(--color-text-light); font-size: 2.2rem; font-weight: 700; line-height: 1.4; margin-bottom: 25px; font-style: italic; }
.quote-author { color: var(--color-text-light); font-size: 1.2rem; opacity: 0.8; }

/* ==================================================
   SESSÃO 6: DEPOIMENTOS (MASONRY GRID)
   ================================================== */
.testimonials-section { background-color: #000000; padding: 100px 0; text-align: center; }
.testimonials-title { font-size: 2.5rem; font-weight: 900; color: var(--color-text-light); text-transform: uppercase; line-height: 1.3; margin-bottom: 60px; }
.testimonials-masonry { column-count: 3; column-gap: 20px; max-width: 1000px; margin: 0 auto; }
.testimonial-item { break-inside: avoid; margin-bottom: 20px; border-radius: 8px; overflow: hidden; transition: transform 0.3s ease; }
.testimonial-item:hover { transform: scale(1.02); }
.testimonial-item img { width: 100%; display: block; border-radius: 8px; border: 1px solid #222; }
.testimonials-action { margin-top: 50px; }
.btn-massive { max-width: 600px; font-size: 1.2rem; padding: 20px; border-radius: 6px; margin: 0 auto; }

/* ==================================================
   SESSÃO 7: PACOTES E PREÇOS
   ================================================== */
.pricing-section { background-color: var(--color-bg-header); padding: 100px 0; text-align: center; }
.pricing-main-title { font-size: 2.2rem; font-weight: 900; color: var(--color-text-light); margin-bottom: 60px; line-height: 1.4; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.pricing-card { background-color: #080808; border: 1px solid #222; border-radius: 8px; display: flex; flex-direction: column; overflow: hidden; }
.card-header { position: relative; padding: 30px 20px; color: #fff; }
.bg-orange { background: linear-gradient(135deg, #ff7e29, #e65c00); }
.bg-red { background: linear-gradient(135deg, #ff1a1a, #cc0000); }
.bg-black { background: linear-gradient(135deg, #333333, #111111); }
.card-header h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 5px; letter-spacing: 1px; }
.card-header p { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.promo-tag { position: absolute; top: -10px; right: 15px; background-color: #e60000; color: #fff; font-size: 0.65rem; font-weight: 900; padding: 5px 10px; transform: rotate(5deg); border: 1px solid #ff4d4d; box-shadow: 0 4px 10px rgba(0,0,0,0.5); z-index: 10; }
.card-body { padding: 30px 20px; flex-grow: 1; }
.old-price { color: var(--color-red-light); font-size: 1.2rem; font-weight: 900; margin-bottom: 5px; }
.old-price del { text-decoration: line-through; text-decoration-color: var(--color-red-light); text-decoration-thickness: 3px; }
.por-text { font-size: 0.9rem; color: #888; font-weight: 700; }
.special-offer { color: var(--color-btn-green); font-size: 2.5rem; font-weight: 900; line-height: 1.1; margin: 10px 0 30px 0; }
.features-list { list-style: none; text-align: left; margin: 0 auto; font-size: 0.85rem; font-weight: 600; }
.features-list li { padding: 12px 0; border-bottom: 1px solid #1a1a1a; display: flex; align-items: center; gap: 10px; }
.features-list li:last-child { border-bottom: none; }
.check { color: var(--color-btn-green); font-weight: 900; }
.cross { color: #555; font-weight: 900; }
.unavailable { color: #555; }
.card-footer { padding: 20px; background-color: #080808; }
.btn-glow { background-color: var(--color-btn-green); color: #000; display: block; width: 100%; padding: 15px; font-size: 0.9rem; font-weight: 900; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: 0.3s; box-shadow: 0 0 20px rgba(30, 215, 96, 0.4); }
.btn-glow:hover { background-color: #1abc54; box-shadow: 0 0 30px rgba(30, 215, 96, 0.6); transform: translateY(-2px); }

/* ==================================================
   SESSÃO 8: FAQ (ACORDEÃO)
   ================================================== */
.faq-section { background-color: var(--color-bg-dark); padding: 100px 0; }
.faq-title-container { text-align: center; margin-bottom: 60px; }
.faq-title { display: inline-block; background-color: var(--color-highlight); color: #000; font-size: 2rem; font-weight: 900; padding: 10px 20px; text-transform: uppercase; letter-spacing: 1px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; max-width: 1000px; margin: 0 auto; }
.faq-column { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-red-light); padding: 20px 0; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 0.95rem; color: var(--color-text-light); cursor: pointer; text-transform: uppercase; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: 'v'; color: var(--color-red-light); font-family: monospace; font-size: 1.2rem; font-weight: bold; transform: scaleX(1.5); transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: scaleX(1.5) rotate(180deg); }
.faq-answer { padding-top: 15px; color: var(--color-text-gray); font-size: 0.9rem; line-height: 1.6; animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ==================================================
   SESSÃO 9: RODAPÉ (FOOTER)
   ================================================== */
.footer-section { background-color: #000000; padding: 80px 0 30px 0; border-top: 1px solid #1a1a1a; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-bottom: 60px; }
.footer-col h4 { color: var(--color-text-light); font-size: 0.95rem; font-weight: 900; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col p { color: #999999; font-size: 0.85rem; line-height: 1.6; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #1a1a1a; }
.footer-links { margin-bottom: 15px; }
.footer-links a { color: #888; text-decoration: none; font-size: 0.75rem; font-weight: 700; margin: 0 10px; transition: color 0.3s; letter-spacing: 1px; }
.footer-links a:hover { color: var(--color-text-light); }
.footer-bottom p { color: #555; font-size: 0.75rem; }

/* ==================================================
   MÁGICA DO MOBILE - UNIFICADA (RESPONSIVIDADE GERAL)
   ================================================== */
@media (max-width: 900px) {
    /* Oculta desktop */
    .desktop-only { display: none; } 
    .mobile-logo { display: block; margin: 0 auto 20px auto; height: 40px; }
    
    /* Hero */
    .hero { padding-top: 0; }
    .hero-content { flex-direction: column; gap: 0; }
    .hero-image { order: -1; width: 100%; position: relative; }
    .hero-image img { height: 450px; width: 100%; object-position: top; mask-image: linear-gradient(to top, transparent 0%, black 60%); -webkit-mask-image: linear-gradient(to top, transparent 0%, black 60%); }
    .hero-text { order: 1; margin-top: -160px; text-align: center; padding: 0 15px; }
    .hero-text h1 { font-size: 1.8rem; line-height: 1.3; }
    .btn-highlight-green { margin: 25px auto; font-size: 1rem; max-width: 350px; padding: 15px; }
    .urgency-content { flex-direction: column; gap: 5px; }
    .timer-container { gap: 10px; }
    .time-box { padding: 10px; min-width: 60px; }
    .time-box span { font-size: 1.8rem; }

    /* Dores */
    .identification-section { padding: 50px 0; }
    .section-title { font-size: 1.6rem; }
    .pain-points-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Prova Social Imagens */
    .proof-section { padding: 80px 0 60px 0; }
    .proof-content { flex-direction: column; }
    .image-collage-container { width: 100%; height: 350px; margin-top: -120px; margin-bottom: 40px; left: 50%; transform: translateX(-50%); max-width: 400px; }
    .card-1 { width: 160px; height: 200px; left: 10px; top: 10px; }
    .card-2 { width: 180px; height: 140px; left: 150px; top: 30px; }
    .card-3 { width: 150px; height: 180px; left: 20px; top: 160px; }
    .card-4 { width: 170px; height: 170px; left: 140px; top: 130px; }
    .proof-text-content { width: 100%; padding-left: 0; text-align: center; }
    .proof-title { font-size: 1.8rem; }
    .proof-text-content .btn-highlight-green { margin: 25px auto !important; }

    /* Método 3 Passos */
    .process-section { padding: 60px 0; }
    .check-list { grid-template-columns: 1fr; padding: 0 15px; }
    .process-cards-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 15px; }
    .process-card { height: 450px; }

    /* Citação */
    .quote-section { padding: 80px 0; background: linear-gradient(to bottom, #1a0000 0%, #7a0000 60%, var(--color-red-light) 100%); }
    .quote-text { font-size: 1.5rem; line-height: 1.5; }
    .quote-author { font-size: 1rem; }

    /* Depoimentos */
    .testimonials-section { padding: 60px 0; }
    .testimonials-title { font-size: 1.8rem; margin-bottom: 40px; }
    .testimonials-masonry { column-count: 1; padding: 0 15px; }
    .btn-massive { font-size: 1rem; max-width: 90%; padding: 15px; }

    /* Preços */
    .pricing-grid { grid-template-columns: 1fr; padding: 0 15px; gap: 40px; }
    .pricing-main-title { font-size: 1.8rem; }

    /* FAQ */
    .faq-section { padding: 60px 0; }
    .faq-title { font-size: 1.5rem; padding: 8px 15px; }
    .faq-grid { grid-template-columns: 1fr; gap: 0; padding: 0 15px; }

    /* Rodapé */
    .footer-section { padding: 60px 0 20px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 15px; text-align: center; }
    .footer-logo { display: flex; justify-content: center; }
    .footer-links a { display: block; margin: 10px 0; }
}
/* ==================================================
   SESSÃO DE VÍDEO (APRESENTAÇÃO)
   ================================================== */
.video-presentation-section {
    background-color: var(--color-bg-dark); /* Fundo igual ao restante da página */
    padding: 80px 0 20px 0;
    border-bottom: 1px solid #111; /* Separação sutil */
}

.video-content {
    max-width: 900px; /* Limita a largura no PC para o vídeo não ficar gigante */
    margin: 0 auto;
}

/* O Segredo do Vídeo Responsivo (16:9) */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Mantém a proporção exata do YouTube */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 2px solid #222; /* Borda elegante para destacar do fundo */
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Ajustes para Celular */
@media (max-width: 900px) {
    .video-presentation-section {
        padding: 50px 0 10px 0;
    }
    .video-wrapper {
        border-radius: 8px;
    }
}
/* ==================================================
   SUBSTITUIÇÃO DE CORES: DO VERMELHO PARA #D55E02
   ================================================== */

/* 1. Variáveis Globais (Muda automaticamente os cronômetros, riscos de preço e setas do FAQ) */
:root {
    --color-red-dark: #914001; /* Tom mais escuro para o fundo dos degradês */
    --color-red-light: #d55e02; /* A nova cor principal solicitada */
}

/* 2. Efeito de Degradê nas Fotos dos Mecânicos (Sessão 4) */
.card-overlay {
    background: linear-gradient(to bottom, rgba(213,94,2,0) 25%, rgba(145,64,1,0.95) 55%, var(--color-red-light) 75%);
}

/* 3. Fundo da Citação (Sessão 5) */
.quote-section {
    background: linear-gradient(to right, #241103 0%, #914001 40%, var(--color-red-light) 100%);
}

/* 4. Cabeçalho do Pacote Premium e Tags de Oferta (Sessão 7) */
.bg-red { 
    background: linear-gradient(135deg, #ed761a, #d55e02); 
}

.promo-tag {
    background-color: #d55e02;
    border: 1px solid #ff882e;
}

/* 5. Ajuste do Degradê da Citação na versão de Celular */
@media (max-width: 900px) {
    .quote-section {
        background: linear-gradient(to bottom, #241103 0%, #914001 60%, var(--color-red-light) 100%);
    }
}
/* ==================================================
   WRAPPER E SETAS DO CARROSSEL
   ================================================== */
.carousel-wrapper {
    position: relative; /* Isso prende as setas ao redor do carrossel, não do site inteiro */
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 0 60px; /* Cria um corredor seguro nas laterais para as setas não entrarem nos cards */
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #080808;
    color: var(--color-red-light);
    border: 2px solid var(--color-red-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Garante que a seta fique na frente de todas as imagens e overlays */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.carousel-arrow:hover {
    background-color: var(--color-red-light);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* Fixa as setas exatamente nas bordas extremas do wrapper */
.left-arrow { left: 5px; }
.right-arrow { right: 5px; }

@media (max-width: 900px) {
    .carousel-wrapper {
        padding: 0; /* Tira o corredor extra no celular */
    }
    .carousel-arrow {
        display: none; /* No dedo funciona melhor */
    }
}
/* ==================================================
   BARRA DE VAGAS ANIMADA (EFEITO FLUXO CONTÍNUO)
   ================================================== */
.scarcity-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 20px;
    background-color: #050505; /* Fundo levemente destacado */
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 20px;
}

.scarcity-text {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Um leve brilho na letra para chamar atenção */
    text-shadow: 0 0 10px rgba(213, 94, 2, 0.4); 
}

/* O fundo cinza da barra (a parte vazia) */
.progress-bar-bg {
    width: 100%;
    max-width: 350px;
    height: 22px;
    background-color: #222; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.8);
}

/* O preenchimento laranja que vai se mover */
.progress-bar-fill {
    height: 100%;
    border-radius: 12px;
    background-color: #d55e02; /* A sua cor principal */
    
    /* Desenha as listras diagonais brancas semi-transparentes */
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 40px 40px;
    
    /* Efeito de brilho em volta da barra laranja */
    box-shadow: 0 0 15px rgba(213, 94, 2, 0.5);
    
    /* Chama a animação que criamos abaixo */
    animation: moveStripes 1.5s linear infinite;
}

/* O MOTOR DA ANIMAÇÃO: Move o fundo de 0 a 40px sem parar */
@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

/* Ajuste perfeito para a tela do celular */
@media (max-width: 768px) {
    .scarcity-bar-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}