/* ==========================================
   DESIGN SYSTEM & VARIABLES - UNOPAR CF
   ========================================== */
:root {
    --primary: #004F9F;          /* Azul Oficial Unopar */
    --primary-light: #1A73E8;    /* Azul Claro Unopar */
    --accent: #D91A24;           /* Vermelho Oficial Unopar */
    --accent-hover: #B20F17;     /* Vermelho Escuro */
    --success: #22C55E;          /* Verde WhatsApp */
    --success-hover: #16A34A;
    --danger: #EF4444;
    --bg-light: #F8FAFC;         /* Fundo Claro Principal */
    --bg-card: #FFFFFF;          /* Fundo do Card */
    --bg-accent: #0F172A;        /* Fundo Escuro para seções de destaque */
    --text-dark: #0F172A;        /* Texto Principal */
    --text-light: #64748B;       /* Texto Secundário */
    --white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: opacity 0.4s ease-in-out;
}

body.app-loading {
    opacity: 0;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.py-section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mt-small { margin-top: 12px; }
.mt-medium { margin-top: 24px; }
.mt-large { margin-top: 48px; }
.mb-small { margin-bottom: 12px; }
.mb-medium { margin-bottom: 24px; }
.mb-large { margin-bottom: 48px; }
.max-w-700 { max-width: 700px; margin-inline: auto; }
.max-w-800 { max-width: 800px; margin-inline: auto; }
.d-flex { display: flex; }
.align-items-end { align-items: flex-end; }

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

/* Grelhas */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 26, 36, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 26, 36, 0.6);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 79, 159, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 79, 159, 0.3);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline-danger {
    background-color: transparent;
    border: 1.5px solid var(--danger);
    color: var(--danger);
}

.btn-outline-danger:hover {
    background-color: var(--danger);
    color: var(--white);
}

.btn-success {
    background-color: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--accent);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(217, 26, 36, 0.1);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius-full);
}

.badge-danger {
    background-color: var(--accent);
    color: var(--white);
}

.badge-accent {
    background-color: var(--primary);
    color: var(--white);
}

/* ==========================================
   COMPONENTE: POPUP AGRESSIVO DE PROMOÇÕES (ADS)
   ========================================== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 10, 18, 0.85); /* Overlay bem escuro para foco */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.promo-popup-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--accent); /* Borda vermelha agressiva */
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    position: relative;
    color: var(--text-dark);
}

.btn-close-promo {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(15, 23, 42, 0.08);
    border: none;
    color: var(--text-dark);
    font-size: 28px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.btn-close-promo:hover {
    background-color: var(--accent);
    color: var(--white);
}

.promo-popup-body {
    display: flex;
    flex-direction: column;
}

.promo-popup-img-wrapper {
    width: 100%;
    max-height: 260px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.promo-popup-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-popup-content-text {
    padding: 32px 36px;
    text-align: center;
}

.promo-popup-content-text h2 {
    font-size: 28px;
    color: var(--primary);
    margin-top: 16px;
    margin-bottom: 12px;
}

.promo-popup-content-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==========================================
   COMPONENTE: HEADER & NAVBAR
   ========================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 79, 159, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--accent);
    margin-right: 2px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-left: 6px;
    border-left: 2px solid rgba(0, 79, 159, 0.15);
    padding-left: 6px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.phone-link i {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================
   SEÇÃO: HERO
   ========================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #021a36 0%, #004F9F 100%);
    color: var(--white);
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(219, 26, 36, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-text-content h1 {
    font-size: 48px;
    margin-top: 16px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
    color: var(--accent);
    font-size: 20px;
}

/* Hero Imagem e Cards Flutuantes */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 24px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    white-space: nowrap;
}

.floating-card i {
    font-size: 28px;
    color: var(--accent);
    background-color: rgba(217, 26, 36, 0.1);
    padding: 10px;
    border-radius: var(--radius-sm);
}

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================
   SEÇÃO: DIFERENCIAIS
   ========================================== */
.diferenciais-section {
    background-color: var(--white);
}

.card-diferencial {
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 79, 159, 0.05);
    transition: var(--transition);
}

.card-diferencial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 26, 36, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 79, 159, 0.05);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.card-diferencial:hover .icon-box {
    background-color: var(--accent);
    color: var(--white);
}

.card-diferencial h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.card-diferencial p {
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   SEÇÃO: APRESENTAÇÃO DO POLO
   ========================================== */
.about-section {
    background-color: var(--bg-light);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text-content {
    max-width: 500px;
}

.about-desc p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.gallery-nav {
    position: absolute;
    top: calc(50% - 6px); /* -6px to account for the scrollbar at the bottom */
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-nav:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: -15px;
}

.gallery-nav.next {
    right: -15px;
}

.about-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    flex-grow: 1;
}

.about-gallery::-webkit-scrollbar {
    height: 8px;
}
.about-gallery::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.about-gallery::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.about-media-item {
    flex: 0 0 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
    background-color: var(--bg-card);
    position: relative;
}

.about-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-media-item img:hover {
    transform: scale(1.05);
}

.about-media-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-text-content {
        max-width: 100%;
        margin-bottom: 32px;
    }
    .about-media-item {
        flex: 0 0 320px;
    }
}

/* ==========================================
   SEÇÃO: CURSOS (DINÂMICO SEM PREÇO)
   ========================================== */
.cursos-section {
    background-color: var(--white);
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(0, 79, 159, 0.12);
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 26, 36, 0.1);
}

.category-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-light);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: rgba(0, 79, 159, 0.08);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Cards de Curso */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-height: 700px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom scrollbar para cursos */
.cursos-grid::-webkit-scrollbar {
    width: 8px;
}
.cursos-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.cursos-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.course-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 79, 159, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 79, 159, 0.15);
}

.course-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.course-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.course-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-card-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0, 79, 159, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-cta-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
}

.btn-card-whatsapp {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.btn-card-whatsapp:hover {
    background-color: var(--success);
    color: var(--white);
}

/* ==========================================
   SEÇÃO: ENQUETE INTERATIVA
   ========================================== */
.enquete-section {
    background: linear-gradient(135deg, #01152a 0%, #004F9F 100%);
    color: var(--white);
}

.enquete-card {
    background-color: var(--bg-accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.card-blur {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.enquete-question {
    font-size: 26px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: var(--white);
}

.enquete-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.enquete-options-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.poll-option-btn {
    width: 100%;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

/* ==========================================
   FORMULÁRIOS
   ========================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1.5px solid #CBD5E1;
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 79, 159, 0.1);
}

.form-control::placeholder {
    color: #94A3B8;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.poll-option-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateX(4px);
}

/* Resultados da Enquete */
.poll-result-bar-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.poll-result-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(217, 26, 36, 0.15) 0%, rgba(217, 26, 36, 0.25) 100%);
    border-right: 2px solid var(--accent);
    transition: width 1s ease-in-out;
    z-index: 1;
}

.poll-result-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
}

.poll-result-votes {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 8px;
}

/* ==========================================
   SEÇÃO: DEPOIMENTOS
   ========================================== */
.depoimentos-section {
    background-color: var(--bg-light);
}

.card-depoimento {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 79, 159, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.depoimento-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
}

.depoimento-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 15px;
    flex-grow: 1;
}

.depoimento-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.depoimento-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--primary);
}

.depoimento-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================
   SEÇÃO: FAQ
   ========================================== */
.faq-section {
    background-color: var(--white);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 79, 159, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-trigger i {
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-trigger {
    background-color: rgba(0, 79, 159, 0.02);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   SEÇÃO: CONTATO E MAPA
   ========================================== */
.contato-section {
    background-color: var(--bg-light);
}

.contato-details {
    list-style: none;
    margin-top: 32px;
}

.contato-details li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.contato-details li i {
    font-size: 22px;
    color: var(--accent);
    background-color: rgba(217, 26, 36, 0.1);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-details strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contato-details span {
    font-size: 14px;
    color: var(--text-light);
}

/* Mapa Mockup */
.contato-map-wrapper {
    height: 100%;
}

.map-mockup {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 79, 159, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.map-body {
    flex-grow: 1;
    min-height: 250px;
}

.map-footer {
    background-color: var(--bg-light);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    border-top: 1px solid rgba(0, 79, 159, 0.08);
}

.map-footer:hover {
    color: var(--accent);
}

/* ==========================================
   COMPONENTE: FLOATING ACTION MENU
   ========================================== */
.floating-action-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-toggle-btn {
    background-color: var(--accent);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(217, 26, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.floating-toggle-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(217, 26, 36, 0.6);
}

.floating-toggle-btn.open {
    transform: rotate(45deg);
    background-color: var(--primary);
}

.floating-badge {
    position: absolute;
    right: 75px;
    background-color: var(--text-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

/* Triângulo apontando para a direita */
.floating-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--text-dark);
}

.floating-toggle-btn.open .floating-badge {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.floating-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.floating-menu-item i {
    color: var(--primary);
    font-size: 16px;
}

.floating-menu-item:hover {
    background-color: rgba(0, 79, 159, 0.08);
    color: var(--primary);
    transform: translateX(-4px);
}

/* ==========================================
   ESTILIZAÇÃO DO FOOTER
   ========================================== */
.main-footer {
    background-color: #020a14;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-admin-link-area h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-admin-link-area p {
    font-size: 14px;
    line-height: 1.8;
}

.admin-secret-link {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-secret-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    background-color: #010408;
    padding: 24px 0;
    font-size: 13px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================
   SEÇÃO PRIVADA: PAINEL ADMINISTRATIVO (ADM)
   ========================================== */
#admin-view {
    background-color: #0F172A;
    min-height: 100vh;
    color: #E2E8F0;
    font-family: var(--font-body);
}

.admin-login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 24px;
}

.admin-login-card {
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.logo-admin {
    color: var(--white);
    justify-content: center;
    font-size: 32px;
}

.text-muted {
    color: #94A3B8;
}

.admin-login-card label {
    color: #E2E8F0;
}

.input-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-password-wrapper input {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding-right: 48px;
}

.input-password-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 26, 36, 0.2);
}

.btn-password-eye {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    font-size: 16px;
}

.btn-password-eye:hover {
    color: var(--white);
}

/* Painel Dashboard */
.admin-dashboard-section {
    padding: 48px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.admin-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
}

.admin-title-area h1 {
    font-size: 32px;
    color: var(--white);
}

.admin-title-area p {
    color: #94A3B8;
    margin-top: 4px;
    font-size: 15px;
}

.admin-actions {
    display: flex;
    gap: 12px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* Sidebar Menu */
.admin-sidebar {
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
}

.admin-menu-tabs {
    list-style: none;
}

.admin-tab-item {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.admin-tab-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.admin-tab-item.active {
    background-color: #1E293B;
    color: var(--white);
    border-left: 4px solid var(--accent);
}

/* Content Area */
.admin-content-area {
    background-color: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px;
    min-height: 500px;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 16px;
}

.tab-subtitle {
    color: #94A3B8;
    font-size: 14px;
}

/* Leads Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    text-align: left;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.admin-table th {
    background-color: rgba(15, 23, 42, 0.4);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.admin-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.lead-actions-bar {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.btn-icon-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.btn-icon-danger:hover {
    background-color: var(--danger);
    color: var(--white);
}

/* Formulário ADM */
.admin-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-fieldset legend {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    padding: 0 12px;
    font-size: 16px;
}

.admin-form .form-group label {
    color: #E2E8F0;
}

.admin-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 26, 36, 0.2);
}

.form-help-text {
    color: #94A3B8;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.diff-adm-card {
    background-color: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
}

.diff-adm-card h4 {
    margin-bottom: 12px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

/* Toggle Switch */
.toggle-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.toggle-switch-checkbox {
    display: none;
}

.toggle-switch-slider {
    width: 48px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
}

.toggle-switch-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.toggle-switch-checkbox:checked + .toggle-switch-slider {
    background-color: var(--accent);
}

.toggle-switch-checkbox:checked + .toggle-switch-slider::before {
    transform: translateX(24px);
}

/* Enquetes Administrativas */
.poll-results-card {
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
}

.poll-results-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 6px;
}

.adm-poll-result-item {
    margin-bottom: 16px;
}

.adm-poll-result-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--white);
}

.adm-poll-bar-bg {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.adm-poll-bar-fill {
    height: 100%;
    background-color: var(--accent);
    width: 0%;
    transition: width 0.5s ease-in-out;
}

/* MODAIS DO SISTEMA */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    background-color: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close-modal {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-close-modal:hover {
    color: var(--white);
}

.modal-body {
    padding: 24px;
}

/* ==========================================
   ANIMAÇÕES DE ENTRADA
   ========================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-scale {
    animation: scaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float-center 4s ease-in-out infinite;
}

@keyframes float-center {
    0% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
    100% { transform: translateX(-50%) translateY(0px); }
}

.animate-bounce {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   FORMAS DE INGRESSO (MARQUEE)
   ========================================== */
.admission-marquee-section {
    background-color: var(--surface);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.admission-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 320px;
    min-width: 320px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.admission-card:hover {
    box-shadow: 0 10px 25px rgba(0, 79, 159, 0.15);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.admission-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.admission-card-short {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.admission-card-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.admission-card:hover .admission-card-full {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-text-content h1 {
        font-size: 38px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        height: 320px;
    }
    
    .floating-card {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .cursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .marquee-container {
        overflow-x: auto;
        scroll-behavior: auto;
    }
    .marquee-container::-webkit-scrollbar {
        display: none;
    }
    .marquee-track {
        animation: none !important;
        width: max-content;
    }

    .main-nav {
        display: none;
    }
    
    .phone-link {
        display: none;
    }
    
    .header-wa-text {
        display: none;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .btn-cta.btn-whatsapp {
        padding: 8px 12px;
        font-size: 20px;
        border-radius: var(--radius-md);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .simulador-body {
        padding: 24px;
    }
    
    .lead-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cursos-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        padding-right: 0;
    }
    
    .course-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-dash-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-actions {
        width: 100%;
    }
    
    .admin-actions button {
        flex-grow: 1;
    }
    
    .admin-content-area {
        padding: 20px;
    }
}

/* Category Carousel for courses */
.carousel-wrapper {
    position: relative;
    grid-column: 1 / -1;
    margin-bottom: 30px;
}
.category-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}
.category-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0.85;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.carousel-btn:hover {
    opacity: 1;
    background-color: var(--primary-light);
    transform: translateY(-50%) scale(1.05);
}
.carousel-btn.left {
    left: -20px;
}
.carousel-btn.right {
    right: -20px;
}
.category-carousel .course-card {
    min-width: 320px;
    max-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .category-carousel .course-card {
        min-width: 280px;
        max-width: 280px;
    }
}
