
        /* ESTILOS V3 ULTRA PREMIUM */
        :root {
            --bg-dark: #050505;
            --bg-surface: #121212;
            --accent-primary: #10b981; /* Esmeralda Premium */
            --accent-secondary: #3b82f6; /* Azul Neon */
            --accent-warning: #f59e0b;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --font-main: 'Outfit', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-dark);
            color: #f1f5f9;
            overflow-x: hidden;
        }

        /* Fundo Animado Mais Sutil */
        .bg-animated {
            position: fixed;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, rgba(5, 5, 5, 1) 60%);
            z-index: -1;
            animation: pulse-bg 15s infinite alternate;
        }

        @keyframes pulse-bg { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

        /* Navbar V3 */
        .navbar {
            background: rgba(5, 5, 5, 0.6) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        .navbar-brand { font-weight: 800; color: #fff !important; letter-spacing: -0.5px; }
        .nav-link { color: #cbd5e1 !important; font-weight: 500; transition: color 0.3s ease; }
        .nav-link:hover { color: var(--accent-primary) !important; }

        /* Glass Cards Gerais */
        .glass-box-v3 {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            padding: 40px;
        }
        /* --- BOTÃO WHATSAPP --- */
        .btn-whatsapp-premium {
            position: fixed; bottom: 30px; right: 30px;
            background: linear-gradient(45deg, #25D366, #128C7E); color: white !important;
            text-decoration: none; padding: 15px 30px; border-radius: 50px;
            font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            z-index: 1000; display: flex; align-items: center; gap: 10px;
            transition: all 0.3s ease; animation: floatButton 3s ease-in-out infinite;
        }
        .btn-whatsapp-premium::before, .btn-whatsapp-premium::after {
            content: ''; position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%); width: 100%; height: 100%;
            border-radius: 50px; border: 2px solid #25D366; animation: ripple 2s infinite; z-index: -1;
        }
        .btn-whatsapp-premium::after { animation-delay: 0.5s; }
        .btn-whatsapp-premium:hover { transform: translateY(-5px); background: linear-gradient(45deg, #128C7E, #075E54); }
        
        @keyframes ripple { 0% { width: 100%; height: 100%; opacity: 1; } 100% { width: 160%; height: 180%; opacity: 0; } }
        @keyframes floatButton { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

        @media (max-width: 768px) {
            .hero-big-title { font-size: 2.2rem; }
            .hero-glass-box { padding: 30px 20px; margin: 0 15px; }
            .btn-hero-white, .btn-hero-outline { width: 100%; justify-content: center; margin-bottom: 10px; }
            .btn-whatsapp-premium { padding: 12px 20px; font-size: 0.9rem; bottom: 15px; right: 15px; }
        }

        /* Hero V3 */
        .hero-flow { padding: 900px 0 90px; min-height: 100vh; display: flex; align-items: center; position: relative; }
        .hero-typing-text { font-size: 1.3rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
        .text-rm { background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-subtitle { font-size: 1.1rem; color: #94a3b8; max-width: 600px; margin: 0 auto 40px; font-weight: 300; }

        /* Botões V3 */
        .btn-hero {
            padding: 14px 28px; border-radius: 50px; font-weight: 600; text-decoration: none;
            display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-flash-electric {
            background: linear-gradient(135deg, #10b981, #059669); color: #fff;
            box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.6); border: 1px solid rgba(16,185,129,0.4);
        }
        .btn-flash-electric:hover { transform: translateY(-3px); box-shadow: 0 15px 25px -10px rgba(16, 185, 129, 0.8); color: #fff; }
        
        .btn-glass {
            background: var(--glass-bg); color: #fff; border: 1px solid var(--glass-border);
        }
        .btn-glass:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-3px); }

        /* Next Vaga Widget V3 */
        .next-date-card-v3 {
            background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 20px; padding: 20px; max-width: 400px; margin: 30px auto 0;
            display: flex; flex-direction: column; text-align: left;
        }
        .time-chips-container { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
        .time-chip {
            background: var(--bg-surface); border: 1px solid var(--glass-border); padding: 8px 16px;
            border-radius: 12px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
            transition: all 0.2s; display: flex; align-items: center; gap: 5px;
        }
        .time-chip:hover { background: var(--accent-primary); color: #fff; border-color: var(--accent-primary); }

        /* Clients Scroll V3 */
        .clients-section { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(0,0,0,0.2); }
        .clients-scroll { display: flex; width: max-content; animation: scroll-left 30s linear infinite; }
        .client-item { display: flex; align-items: center; gap: 10px; padding: 0 30px; }
        .client-avatar {
            width: 20px; height: 20px; border-radius: 30%; display: flex; justify-content: center; align-items: center;
            font-weight: 700; font-size: 14px; color: #fff; border: 2px solid; backdrop-filter: blur(5px);
        }
        .client-name { font-weight: 500; font-size: 0.next-date-card-v3rem; color: #cbd5e1; }
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Section Titles V3 */
        .section-title { font-size: 2.0rem; font-weight: 800; text-align: center; margin-bottom: 10px; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        /* Diferenciais V3 */
        .diferencial-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; transition: transform 0.3s; }
        .diferencial-card h4 { font-weight: 700; margin-bottom: 15px; }
        .diferencial-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }
        .icon-box-v3 { width: 60px; height: 60px; border-radius: 16px; display: flex; justify-content: center; align-items: center; font-size: 24px; margin-bottom: 20px; color: #fff; box-shadow: 0 10px 20px -10px rgba(0,0,0,0.5); }

        /* Modal Aniversário V3 Lógica */
        .modal-overlay-rm { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 9999; display: flex; justify-content: center; align-items: center; }
        .modal-card-rm { background: linear-gradient(145deg, #1e293b, #0f172a); border: 1px solid #334155; border-radius: 24px; padding: 40px; text-align: center; max-width: 400px; width: 90%; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
        .number-container .big-number-effect { font-size: 6rem; font-weight: 800; background: linear-gradient(to bottom, #fbbf24, #d97706); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
        .cta-button-rm { background: #fbbf24; color: #0f172a; border: none; padding: 12px 30px; border-radius: 50px; font-weight: 700; margin-top: 20px; cursor: pointer; transition: 0.3s; }
        .cta-button-rm:hover { background: #f59e0b; transform: scale(1.05); }
        .close-btn-rm { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #94a3b8; font-size: 24px; cursor: pointer; }
    /* --- CONFIGURAÇÕES DO SLIDER --- */
.rm-slider-container {
  position: relative;
  width: 100%;
  height: 90vh; /* Aumentei um pouco para caber sua caixa de agendamento */
  min-height: 600px;
  overflow: hidden;
  background-color: #111;
}

.rm-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.rm-slide.active { opacity: 1; z-index: 2; }

.rm-img-wrapper { width: 100%; height: 100%; overflow: hidden; }
.rm-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1);
  transition: transform 8s ease-out; /* Zoom lento tipo cinema */
}
.rm-slide.active img { transform: scale(1.1); }

.rm-slide-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4)); 
}

/* --- SUA CAIXA NO CENTRO  editar--- */
.rm-slider-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 5; /* Fica acima do fundo, mas abaixo dos controles */
  padding: 0 15px;
}

/* Estilos extras para botões */
.rm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; text-decoration: none; font-weight: bold;
  border-radius: 50px; transition: all 0.3s ease; font-size: 1rem; cursor: pointer;
}
.rm-btn-glow {
  background-color: #ffc107; color: #111 !important; border: none;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
.rm-btn-glow:hover {
  background-color: #ffca28; transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}
.rm-btn-outline {
  background-color: transparent; border: 2px solid #ffffff; color: #ffffff !important;
}
.rm-btn-outline:hover { background-color: #ffffff; color: #111 !important; transform: translateY(-3px); }

/* --- CONTROLES DO SLIDER --- */
.rm-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
  color: white; border: 1px solid rgba(255,255,255,0.2); font-size: 20px; padding: 15px 22px; cursor: pointer; z-index: 10; border-radius: 50%; transition: all 0.3s;
}
.rm-nav-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.rm-prev { left: 20px; } .rm-next { right: 20px; }
.rm-dots-container { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; }
.rm-dot { display: inline-block; width: 10px; height: 10px; margin: 0 8px; background-color: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: all 0.4s; }
.rm-dot.active { background-color: #ffc107; transform: scale(1.5); }

/* --- SEÇÃO DE DEPOIMENTO --- */
.rm-bottom-section { padding: 80px 20px; background-color: #1e1e1e; font-family: 'Segoe UI', sans-serif; overflow: hidden; }
.rm-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 50px; align-items: center; justify-content: center; flex-wrap: wrap; }
.rm-small-image-wrapper { position: relative; flex: 1; min-width: 300px; max-width: 500px; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.rm-small-image-wrapper img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.rm-small-image-wrapper:hover img { transform: scale(1.08); }
.rm-badge { position: absolute; bottom: 20px; left: 20px; background: #ffc107; color: #111; padding: 8px 16px; font-weight: bold; border-radius: 30px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; z-index: 3; }

.rm-testimonial-card {
  flex: 1; min-width: 300px; max-width: 500px; background: #2a2a2a; padding: 40px; border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); position: relative; transition: all 0.4s ease;
}
.rm-testimonial-card:hover { transform: translateY(-10px); }
.rm-testimonial-card::before { content: '"'; position: absolute; top: 0px; left: 20px; font-size: 100px; color: #333; font-family: Georgia, serif; line-height: 1; z-index: 1; }
.rm-stars { color: #ffc107; font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 2; }
.rm-quote { font-size: 1.1rem; font-style: italic; color: #eee; line-height: 1.6; margin-bottom: 30px; position: relative; z-index: 2; }
.rm-client { display: flex; align-items: center; gap: 15px; position: relative; z-index: 2; }
.rm-client-avatar { width: 55px; height: 55px; background: #ffc107; color: #111; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.5rem; font-weight: bold; }
.rm-client-info h4 { margin: 0 0 5px; font-size: 1.1rem; color: #fff; }
.rm-client-info span { font-size: 0.9rem; color: #bbb; }

/* Animações de Scroll */
.rm-reveal { opacity: 0; transition: all 1s cubic-bezier(0.5, 0, 0, 1); }
.rm-reveal-left { transform: translateX(-50px); }
.rm-reveal-right { transform: translateX(50px); }
.rm-reveal.rm-visible { opacity: 1; transform: translateX(0); }

/* Celular */
@media (max-width: 768px) {
  .rm-nav-btn { display: none; }
  .rm-bottom-section { padding: 50px 15px; }
  .rm-reveal-left, .rm-reveal-right { transform: translateY(30px); }
  .rm-reveal.rm-visible { transform: translateY(0); }
}
/* Container do Título */
.rm-modern-title {
    font-size: 4rem; /* Ajuste o tamanho se precisar */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Linhas de texto surgindo (Reveal) */
.rm-text-line {
    display: block;
    opacity: 0;
    transform: translateY(40px); /* Começa um pouco abaixo */
    animation: rmSlideUpReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Atraso para a primeira palavra */
.rm-modern-title .rm-text-line:nth-child(1) {
    animation-delay: 0.3s;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

/* Atraso para a segunda palavra */
.rm-modern-title .rm-text-line:nth-child(2) {
    animation-delay: 0.5s;
}

/* O Efeito Moderno de Brilho Contínuo (Shimmer/Shine) */
.rm-gradient-shine {
    /* Cria um degradê entre amarelo, um tom bem claro (quase branco) e amarelo de novo */
    background: linear-gradient(
        to right,
        #ffc107 20%,
        #fffde7 40%,
        #fffde7 60%,
        #ffc107 100%
    );
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Faz o degradê preencher apenas as letras */
    
    /* Aplica a entrada (reveal) e depois o brilho infinito */
    animation: 
        rmSlideUpReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
        rmShineEffect 4s linear infinite;
        
    animation-delay: 0.5s, 1.3s; /* O brilho começa depois que a palavra aparece */
    
    /* Sombra suave e moderna por trás do brilho */
    filter: drop-shadow(0px 4px 15px rgba(255, 193, 7, 0.4));
}

/* --- Keyframes (As regras das animações) --- */

/* Animação de subir e aparecer */
@keyframes rmSlideUpReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação do brilho passando pela palavra */
@keyframes rmShineEffect {
    to {
        background-position: 200% center;
    }
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .rm-modern-title {
        font-size: 2.4rem;
    }
}
/* Container do Cartão */
.review-card-v2 {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: grab;
}

/* Efeito ao passar o mouse no cartão */
.review-card-v2:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.15);
}

.review-card-v2:active {
    cursor: grabbing;
}

/* Imagem do Cliente */
.review-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background-image: linear-gradient(#1e1e1e, #1e1e1e), linear-gradient(135deg, #ffc107, #ff6b00);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Estrelas com leve brilho */
.stars-v2 i {
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.6));
    margin-right: 2px;
}

/* Aspa Gigante de Fundo */
.quote-bg {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.review-card-v2:hover .quote-bg {
    color: rgba(255, 193, 7, 0.08);
    transform: rotate(0deg) scale(1.1);
}

/* --- Efeitos Especiais do Swiper --- */
/* Diminui levemente os cartões que não estão no centro */
.swiper-slide {
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.9);
}

/* Destaca o cartão central (ativo) */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* Estiliza as bolinhas de paginação do Swiper */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ffc107;
    width: 25px;
    border-radius: 5px;
}
/* Container de Vidro Premium */
.rm-about-glass {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Efeito de luz neon suave no fundo */
.rm-glow-blob {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

/* Estilo da Imagem Principal */
.rm-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px; /* Espaço para a borda animada */
}

.rm-about-img, .rm-placeholder-img {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
    max-height: 350px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.rm-placeholder-img {
    width: 100%;
    min-height: 250px;
    background: #1e1e1e;
}

.rm-image-wrapper:hover .rm-about-img {
    transform: scale(1.02);
    border-color: #ffc107;
}

/* Selo Flutuante Animado */
.rm-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 3;
    animation: rmFloat 3s ease-in-out infinite;
}

@keyframes rmFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Estatísticas Modernas */
.rm-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.rm-stat-card:hover {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-5px);
}

.rm-stat-icon {
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Ajustes Mobile */
@media (max-width: 768px) {
    .rm-floating-badge {
        bottom: -15px;
        right: 0px; /* Centraliza mais no celular */
        padding: 10px 20px;
    }
    .rm-stat-card {
        width: 100%; /* Estatísticas ocupam a largura toda no celular */
    }
}
/* Container do Accordion */
.rm-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre as perguntas */
}

/* Cada Item/Pergunta (Efeito de Vidro) */
.rm-faq-item {
    background: rgba(30, 30, 30, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rm-faq-item:hover {
    border-color: rgba(255, 193, 7, 0.3) !important;
    transform: translateX(5px); /* Leve movimento para a direita ao passar o mouse */
}

/* Botão da Pergunta */
.rm-faq-button {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px !important;
    box-shadow: none !important; /* Remove aquela borda azul do Bootstrap ao clicar */
    transition: all 0.3s ease;
}

/* Botão quando a pergunta está ABERTA */
.rm-faq-button:not(.collapsed) {
    background: rgba(255, 193, 7, 0.05) !important;
    color: #ffc107 !important;
}

/* Conteúdo da Resposta */
.rm-faq-body {
    padding: 0 25px 25px 45px !important; /* Recuo para alinhar com o texto da pergunta */
    font-size: 1rem;
    line-height: 1.7;
    border-top: none !important;
}

/* --- Personalizando a Setinha (Chevron) do Bootstrap --- */

/* Setinha quando FECHADO (Branca) */
.rm-faq-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Setinha quando ABERTO (Amarela Warning) */
.rm-faq-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffc107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
/* =========================================
   Botão de Pesquisa Moderno
========================================= */
.btn-modern-search {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit; /* Herda a cor do seu tema */
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px; /* Ajuste para combinar com seus botões */
    text-decoration: none;
}

.btn-modern-search:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 201, 255, 0.4);
    color: #111; /* Contraste escuro no hover claro */
    font-weight: bold;
}

.btn-modern-search:active {
    transform: translateY(0);
}

/* =========================================
   Player de Áudio Moderno
========================================= */
.modern-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 15, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    flex-grow: 1;
}

.music-icon-pulse {
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #92FE9D;
}

.track-details {
    width: 120px; /* Limita o espaço do texto */
    white-space: nowrap;
    overflow: hidden;
}

.scrolling-text {
    display: inline-block;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.player-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.player-controls button {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    outline: none;
}

.player-controls button:hover {
    color: #fff;
}

.play-btn-wrapper {
    background: linear-gradient(135deg, #00C9FF, #92FE9D) !important;
    color: #000 !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.play-btn-wrapper:hover {
    transform: scale(1.1);
}

/* Animação para quando a música estiver tocando */
.playing .music-icon-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(146, 254, 157, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(146, 254, 157, 0); }
    100% { box-shadow: 0 0 0 0 rgba(146, 254, 157, 0); }
}
/* Estilos do Footer */
        footer {
            background-color: #09090b; /* Mantendo o fundo escuro do site */
            padding: 60px 0 30px;
            text-align: center;
            border-top: 1px solid #27272a;
            font-family: 'Outfit', sans-serif;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        /* Base dos Ícones */
        .social-icons a {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            background-color: #18181b;
            color: #a1a1aa;
            border-radius: 50%;
            font-size: 1.4rem;
            text-decoration: none;
            border: 1px solid #3f3f46;
            overflow: hidden;
            z-index: 1;
            /* Transição elástica (bounce) */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Efeito de preenchimento que sobe no Hover */
        .social-icons a::before {
            content: '';
            position: absolute;
            top: 100%; /* Começa escondido em baixo */
            left: 0;
            width: 100%;
            height: 100%;
            transition: all 0.4s ease-out;
            z-index: -1;
        }

        /* Ação geral do Hover */
        .social-icons a:hover {
            color: #ffffff;
            transform: translateY(-8px) scale(1.1); /* Sobe e cresce um pouco */
            border-color: transparent;
        }

        .social-icons a:hover::before {
            top: 0; /* Preenche o fundo */
        }

        /* Cores e Brilhos (Glow) Específicos por Rede Social */
        
        /* TikTok */
        .social-icons a.tiktok:hover { box-shadow: 0 10px 20px -5px rgba(255, 0, 80, 0.5); }
        .social-icons a.tiktok::before { 
            background: linear-gradient(45deg, #00f2fe, #4facfe, #ff0050); 
        }

        /* Instagram */
        .social-icons a.instagram:hover { box-shadow: 0 10px 20px -5px rgba(225, 48, 108, 0.5); }
        .social-icons a.instagram::before { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
        }

        /* Facebook */
        .social-icons a.facebook:hover { box-shadow: 0 10px 20px -5px rgba(24, 119, 242, 0.5); }
        .social-icons a.facebook::before { 
            background: #1877F2; 
        }

        /* YouTube */
        .social-icons a.youtube:hover { box-shadow: 0 10px 20px -5px rgba(255, 0, 0, 0.5); }
        .social-icons a.youtube::before { 
            background: #FF0000; 
        }

        /* Texto de Copyright */
        .footer-text {
            color: #71717a;
            font-size: 0.9rem;
            font-weight: 300;
            margin: 0;
            letter-spacing: 0.5px;
        }
        .cta-section {
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            background-color: var(--bg-body);
            font-family: 'Outfit', sans-serif;
        }

        .cta-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            max-width: 600px;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* Efeito de luz de fundo (Glow) dentro do card */
        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            margin-top: 0;
            margin-bottom: 16px;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            /* Texto com gradiente */
            background: linear-gradient(to right, #ffffff, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-text {
            color: var(--text-muted);
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 35px;
            line-height: 1.5;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
            color: white;
            padding: 16px 36px;
            text-decoration: none;
            border-radius: 50px; /* Formato pílula fica mais moderno para CTAs */
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px -6px rgba(139, 92, 246, 0.6);
        }

        .cta-btn i {
            transition: transform 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px -6px rgba(139, 92, 246, 0.8);
        }

        /* Efeito da flechinha indo pra frente no hover */
        .cta-btn:hover i {
            transform: translateX(5px);
        }

        .cta-btn:active {
            transform: translateY(1px);
        }

        @media (max-width: 480px) {
            .cta-card { padding: 40px 20px; }
            .cta-title { font-size: 1.8rem; }
            .cta-btn { width: 100%; box-sizing: border-box; }
        }
a {
    text-decoration: none;
}

/* Badge Glass */
.vagas-badge-index {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    width: fit-content;
    margin: 20px auto;
    padding: 14px 24px;

    border-radius: 22px;

    /* efeito vidro */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.22);

    color: #fff;
    font-weight: 700;
    text-align: center;

    position: relative;
    overflow: hidden;
    cursor: pointer;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.15);

    transition: all .35s ease;

    animation: glowGlass 3s infinite ease-in-out;
}

/* brilho passando */
.vagas-badge-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 80px;
    height: 100%;

    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);

    animation: brilho 4s infinite;
}

/* hover */
.vagas-badge-index:hover {
    transform: translateY(-3px) scale(1.03);

    box-shadow:
        0 12px 40px rgba(0,0,0,0.25),
        inset 0 1px 1px rgba(255,255,255,0.25);
}

/* ícone */
.vagas-badge-index i {
    color: #ffff00;
    font-size: 1.4rem;

    animation: fireMove 1.2s infinite alternate;
}

/* número */
.vagas-badge-index strong {
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* urgente */
.vagas-urgente {
    background: rgba(255, 60, 60, 0.18);

    box-shadow:
        0 0 25px rgba(255, 0, 0, 0.35),
        inset 0 1px 1px rgba(255,255,255,0.15);

    animation: urgentePulse 1s infinite alternate;
}

/* glow */
@keyframes glowGlass {
    0% {
        box-shadow:
            0 8px 25px rgba(0,0,0,0.15),
            inset 0 1px 1px rgba(255,255,255,0.12);
    }

    50% {
        box-shadow:
            0 8px 40px rgba(255,255,255,0.08),
            inset 0 1px 1px rgba(255,255,255,0.22);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(0,0,0,0.15),
            inset 0 1px 1px rgba(255,255,255,0.12);
    }
}

/* brilho */
@keyframes brilho {
    0% {
        left: -130%;
    }

    100% {
        left: 150%;
    }
}

/* fogo */
@keyframes fireMove {
    from {
        transform: rotate(-6deg) scale(1);
    }

    to {
        transform: rotate(6deg) scale(1.15);
    }
}

/* urgência */
@keyframes urgentePulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}