@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* ============================================
   EVEREST CONCURSOS - CUSTOM STYLES
   Personalizacoes do template
   ============================================ */

/* ========== GLOBAL MOBILE FIX ========== */
html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* ========== TOPBAR ========== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    height: 40px;
    display: flex !important;
    align-items: center;
}

.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.2s ease;
}

.topbar-social:hover {
    background: var(--brand-primary, #FF6600);
    color: #fff;
}

.topbar-center {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.topbar-center svg {
    color: var(--brand-primary, #FF6600);
}

.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.topbar-search-input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    width: 180px;
    outline: none;
}

.topbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.topbar-search-btn {
    background: var(--brand-primary, #FF6600);
    border: none;
    color: #fff;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.topbar-search-btn:hover {
    background: var(--brand-primary-hover, #ff8533);
}

/* Topbar Responsivo */
@media (max-width: 991px) {
    .topbar-center {
        display: none;
    }

    .topbar-search-input {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .topbar {
        display: flex !important;
        height: 36px;
        padding: 6px 0;
    }

    .topbar-container {
        padding: 0 16px;
        gap: 12px;
    }

    .topbar-label {
        display: none;
    }

    .topbar-socials {
        gap: 6px;
    }

    .topbar-social {
        width: 26px;
        height: 26px;
    }

    .topbar-social svg {
        width: 13px;
        height: 13px;
    }

    .topbar-center {
        display: none;
    }

    .topbar-search {
        flex: 1;
        max-width: 180px;
    }

    .topbar-search-input {
        width: 100%;
        min-width: 0;
        font-size: 11px;
        padding: 5px 10px;
    }

    .topbar-search-btn {
        padding: 5px 8px;
    }

    .topbar-search-btn svg {
        width: 14px;
        height: 14px;
    }

    .navbar {
        top: 36px !important;
    }
}

@media (max-width: 479px) {
    .topbar-search-input {
        font-size: 11px;
        padding: 4px 8px;
    }

    .topbar-social {
        width: 24px;
        height: 24px;
    }

    .topbar-social svg {
        width: 12px;
        height: 12px;
    }
}

/* ========== NAVBAR 3 COLUNAS ========== */

.navbar {
    top: 40px !important;
    height: 80px !important;
    background: var(--navbar-bg, #f4f1eb) !important;
}

.navbar-three-columns {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 1600px !important;
    height: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Menu Esquerdo */
.nav-left {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    justify-content: flex-start !important;
}

/* Logo Central */
.nav-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nav-center .brand-image-navbar {
    height: 50px !important;
    width: auto !important;
}

/* Menu Direito */
.nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    justify-content: flex-end !important;
}

/* Links do menu */
.nav-left .link-nav,
.nav-right .link-nav {
    padding: 10px 16px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--text-secondary, #4a4a4a) !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.nav-left .link-nav:hover,
.nav-right .link-nav:hover {
    color: var(--brand-primary, #FF6600) !important;
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1)) !important;
}

/* Theme toggle no menu */
.nav-right .theme-switch {
    margin: 0 10px !important;
}

/* Cores do Theme Switch - Light mode */
.theme-switch .theme-switch-icon.sun,
.theme-switch .theme-switch-icon.sun svg {
    color: #FF6600 !important;
    stroke: #FF6600 !important;
}

.theme-switch .theme-switch-icon.moon,
.theme-switch .theme-switch-icon.moon svg {
    color: #64748b !important;
    stroke: #64748b !important;
}

/* Cores do Theme Switch - Dark mode */
html[data-theme="dark"] .theme-switch .theme-switch-icon.sun,
html[data-theme="dark"] .theme-switch .theme-switch-icon.sun svg {
    color: #64748b !important;
    stroke: #64748b !important;
}

html[data-theme="dark"] .theme-switch .theme-switch-icon.moon,
html[data-theme="dark"] .theme-switch .theme-switch-icon.moon svg {
    color: #FF6600 !important;
    stroke: #FF6600 !important;
}

/* ========== MODALIDADES TILES (Step Away Section) ========== */
.modalidades-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modalidade-tile {
    position: relative;
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modalidade-tile:hover {
    transform: translateX(8px);
    border-color: var(--brand-primary, #FF6600);
}

.modalidade-tile.destaque-tile {
    background: var(--brand-primary, #FF6600) !important;
    color: #fff;
}

.modalidade-tile.destaque-tile:hover {
    background: var(--brand-primary, #FF6600) !important;
}

.modalidade-tile.destaque-tile h3,
.modalidade-tile.destaque-tile p {
    color: #fff !important;
}

.modalidade-tile.destaque-tile:hover {
    border-color: #fff;
}

.tile-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modalidade-icon-tile {
    width: 56px;
    height: 56px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary, #FF6600);
}

.modalidade-tile.destaque-tile .modalidade-icon-tile {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.modalidade-link {
    color: var(--brand-primary, #FF6600) !important;
    font-weight: 600;
    font-size: 14px;
}

.modalidade-tile.destaque-tile .modalidade-link {
    color: #fff !important;
}

/* Imagem placeholder modalidades */
.modalidades-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modalidades-placeholder-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsivo Modalidades Tiles */
@media (max-width: 991px) {
    .modalidades-wrap {
        gap: 16px;
    }

    .modalidade-tile:hover {
        transform: translateY(-4px);
    }

    .one-step-away-section .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .title-wrap-step-away {
        text-align: center;
    }

    .modalidades-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .one-step-away-section {
        padding: 40px 0 !important;
    }

    .title-wrap-step-away {
        text-align: left;
    }

    .title-wrap-step-away h2 {
        font-size: 24px !important;
    }

    .title-wrap-step-away .subtext {
        font-size: 15px !important;
    }

    .title-wrap-step-away p {
        font-size: 14px !important;
    }

    .modalidades-image-wrap {
        display: none;
    }

    .modalidade-tile {
        padding: 18px;
    }

    .modalidade-icon-tile {
        width: 44px;
        height: 44px;
    }

    .modalidade-tile h3 {
        font-size: 17px !important;
    }

    .modalidade-tile p {
        font-size: 13px !important;
    }

    .space-50 {
        height: 12px !important;
    }

    .space-32 {
        height: 16px !important;
    }

    .usps-block {
        padding-top: 0 !important;
    }
}

@media (max-width: 479px) {
    .one-step-away-section {
        padding: 32px 0 !important;
    }

    .title-wrap-step-away h2 {
        font-size: 22px !important;
    }

    .modalidade-tile {
        padding: 14px;
    }

    .modalidade-icon-tile {
        width: 40px;
        height: 40px;
    }

    .modalidade-icon-tile svg {
        width: 20px;
        height: 20px;
    }
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20bd5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Animacao de pulso */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsivo */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 24px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .cart-master {
        display: none !important;
    }
}

@media (max-width: 479px) {
    .whatsapp-float {
        bottom: 20px;
        right: 12px;
        width: 46px;
        height: 46px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* Carrinho */
.nav-right .nav-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    padding: 8px !important;
    color: var(--text-secondary, #4a4a4a) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.nav-right .nav-cart:hover {
    color: var(--brand-primary, #FF6600) !important;
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1)) !important;
}

.nav-right .nav-cart svg {
    width: 22px;
    height: 22px;
}

.nav-right .nav-cart .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--brand-primary, #FF6600);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Link de login */
.nav-right .link-login {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    font-size: 14px !important;
    color: var(--text-secondary, #4a4a4a) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.nav-right .link-login:hover {
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1)) !important;
    color: var(--brand-primary, #FF6600) !important;
}

.nav-right .link-login .icon-login {
    width: 18px !important;
    height: 18px !important;
}

/* ========== MENU MOBILE ========== */

.nav-mobile {
    display: none !important;
}

/* Menu mobile - escondido no desktop, Webflow controla no mobile via .w-nav-overlay */
.nav-menu-mobile {
    display: none;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1100px) {
    .nav-left .link-nav,
    .nav-right .link-nav {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }

    .navbar-three-columns {
        gap: 15px !important;
        padding: 0 20px !important;
    }

    .nav-center .brand-image-navbar {
        height: 45px !important;
    }
}

@media (max-width: 991px) {
    .navbar {
        height: 70px !important;
    }

    /* Esconder menu desktop */
    .nav-left,
    .nav-center,
    .nav-right {
        display: none !important;
    }

    /* Mostrar menu mobile */
    .nav-mobile {
        display: flex !important;
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
        grid-column: 1 / -1 !important;
    }

    .nav-mobile .brand-image-navbar {
        height: 40px !important;
    }

    .nav-mobile-right {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .nav-mobile .manu-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 6px !important;
        cursor: pointer !important;
        width: 40px;
        height: 40px;
    }

    .nav-mobile .manu-button .icon-hamburger {
        width: 22px !important;
        height: 22px !important;
    }

    .navbar-three-columns {
        display: flex !important;
        padding: 0 20px !important;
    }

    /* Menu mobile dropdown - Webflow controla abertura via .w-nav-overlay */
    .nav-menu-mobile {
        background: var(--bg-primary, #fff) !important;
        padding: 20px !important;
        border-top: 1px solid var(--border-color, #e4e4e4) !important;
    }

    .link-nav-mobile {
        display: block !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: var(--text-primary, #1a1a1a) !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        text-align: center !important;
        transition: all 0.2s ease !important;
    }

    .link-nav-mobile:hover {
        background: var(--brand-primary-light, rgba(255, 102, 0, 0.1)) !important;
        color: var(--brand-primary, #FF6600) !important;
    }
}

@media (max-width: 767px) {
    .navbar {
        height: 56px !important;
    }

    .nav-mobile .brand-image-navbar {
        height: 32px !important;
    }

    .nav-mobile .manu-button {
        width: 36px;
        height: 36px;
        padding: 5px !important;
    }

    .nav-mobile .manu-button .icon-hamburger {
        width: 20px !important;
        height: 20px !important;
    }

    .nav-mobile-right {
        gap: 8px !important;
    }

    .nav-menu-mobile {
        padding: 16px !important;
    }

    .link-nav-mobile {
        padding: 13px 16px !important;
        font-size: 15px !important;
    }

    .nav-mobile .theme-switch {
        width: 60px !important;
        height: 30px !important;
    }

    .nav-mobile .theme-switch-thumb {
        width: 22px !important;
        height: 22px !important;
    }

    [data-theme="dark"] .nav-mobile .theme-switch-thumb {
        left: calc(100% - 26px) !important;
    }
}

/* ========== LARGURA DO CONTEUDO ========== */

.main-container,
.main-container.w-container,
.w-container {
    max-width: 1600px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* ========== MARQUEE DE BENEFICIOS ========== */

.benefits-marquee {
    background: transparent;
    padding: 28px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px;
    padding: 0 80px;
    white-space: nowrap;
}

.marquee-item svg {
    flex-shrink: 0;
    display: inline-block !important;
    vertical-align: middle;
    color: var(--brand-primary, #FF6600);
}

.marquee-title {
    display: inline-block !important;
    vertical-align: middle;
    font-weight: 600;
    font-size: 29px;
    color: var(--text-primary, #1a1a1a);
    white-space: nowrap;
}

.marquee-divider {
    color: var(--brand-primary, #FF6600);
    font-size: 20px;
}

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

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

/* Responsivo Marquee */
@media (max-width: 991px) {
    .marquee-item {
        padding: 0 40px;
        gap: 12px;
    }

    .marquee-title {
        font-size: 20px;
    }

    .marquee-item svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767px) {
    .benefits-marquee {
        padding: 10px 0;
    }

    .marquee-item {
        padding: 0 20px;
        gap: 10px;
    }

    .marquee-title {
        font-size: 14px;
    }

    .marquee-item svg {
        width: 22px;
        height: 22px;
    }

    .marquee-divider {
        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .marquee-item {
        padding: 0 14px;
        gap: 8px;
    }

    .marquee-title {
        font-size: 12px;
    }

    .marquee-item svg {
        width: 18px;
        height: 18px;
    }

    .marquee-divider {
        font-size: 12px;
    }
}

/* ========== HERO SPACING ========== */

.section.hero-sales {
    padding-top: 100px !important;
}

/* ========== CORES EVEREST ========== */

.cta:not(.secondary) {
    background-color: var(--brand-primary, #FF6600) !important;
}

.cta:not(.secondary):hover {
    background-color: var(--brand-primary-hover, #ff8533) !important;
}

.span-italic {
    color: var(--brand-primary, #FF6600) !important;
}

/* ========== ESCONDER ELEMENTOS ANTIGOS ========== */

.left-navbar,
.right-navbar,
.nav-menu.w-nav-menu,
.wrap-nav-buttons,
.divider-nav {
    display: none !important;
}

/* ============================================
   HERO SLIDER
   ============================================ */

/* Container do Swiper */
.section.hero-home {
    /* 120px = topbar fixo (40px) + navbar fixo (80px); banner encosta no header */
    padding-top: 120px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
}

/* Banner principal em largura total (full width / edge-to-edge) */
.hero-swiper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.hero-swiper .swiper-wrapper {
    display: flex !important;
    transition-timing-function: ease-out !important;
}

.hero-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
    height: auto !important;
    position: relative;
}

.hero-swiper .swiper-slide .hero-block {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    /* Preenche toda a altura visível da tela (descontando o header de 120px) */
    height: calc(100vh - 120px) !important;
    min-height: 600px !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    padding: 80px;
    border-radius: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
}

.hero-swiper .swiper-slide .hero-block .limit-790 {
    width: 100% !important;
    max-width: 950px !important;
    text-align: left !important;
}

.hero-swiper .swiper-slide .hero-block .limit-790 * {
    text-align: left !important;
}

.hero-swiper .swiper-slide .hero-block .limit-790 .mega-h1,
.hero-swiper .swiper-slide .hero-block .limit-790 .paragraph-big,
.hero-swiper .swiper-slide .hero-block .limit-790 p {
    text-align: left !important;
}

.hero-swiper .swiper-slide .hero-block .limit-790 .student-button-wrap {
    justify-content: flex-start !important;
}

/* Cores fixas no slider - nao afetadas pelo tema dark/light */
.hero-swiper .hero-block,
.hero-swiper .hero-block * {
    color: #fff !important;
}

.hero-swiper .hero-block .mega-h1 {
    color: #fff !important;
}

.hero-swiper .hero-block .span-italic {
    color: var(--brand-primary, #FF6600) !important;
}

.hero-swiper .hero-block .paragraph-big,
.hero-swiper .hero-block .paragraph-small,
.hero-swiper .hero-block p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-swiper .hero-block .cta:not(.secondary) {
    background-color: var(--brand-primary, #FF6600) !important;
    color: #fff !important;
}

.hero-swiper .hero-block .cta.secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}

/* Paginacao dentro do slider - alinhado a esquerda */
.hero-swiper .hero-pagination {
    position: absolute !important;
    bottom: 30px !important;
    left: 80px !important;
    right: auto !important;
    width: auto !important;
    text-align: left !important;
    z-index: 10;
}

/* Navegacao dentro do slider - canto inferior direito */
.hero-swiper .hero-nav-btn {
    position: absolute !important;
    bottom: 30px !important;
    top: auto !important;
    transform: none !important;
    z-index: 10;
    width: 45px !important;
    height: 45px !important;
}

.hero-swiper .swiper-button-prev {
    left: auto !important;
    right: 135px !important;
}

.hero-swiper .swiper-button-next {
    right: 80px !important;
}

/* Badge Tags */
.hero-badge-wrap {
    margin-bottom: 16px;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.hero-badge-tag.glass {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
}

.hero-badge-tag.hot {
    background: #dc3545;
}

.hero-badge-tag.glass.hot {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.4);
}

.hero-badge-tag.new {
    background: #28a745;
}

.hero-badge-tag.glass.new {
    background: rgba(40, 167, 69, 0.25);
    border-color: rgba(40, 167, 69, 0.4);
}

.hero-badge-tag.success {
    background: #17a2b8;
}

.hero-badge-tag.glass.success {
    background: rgba(23, 162, 184, 0.25);
    border-color: rgba(23, 162, 184, 0.4);
}

/* Social Proof - Avatares */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.avatar-circles {
    display: flex;
    flex-direction: row-reverse;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: -14px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.avatar-circle:last-child {
    margin-right: 0;
}

.avatar-circle.avatar-count {
    background: var(--brand-primary, #FF6600);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.social-proof-text {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
}

/* Botoes do Hero */
.student-button-wrap .cta.secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    margin-left: 12px;
}

.student-button-wrap .cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
}

/* Swiper Navigation */
.hero-nav-btn {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.hero-nav-btn::after {
    font-size: 18px !important;
}

.hero-nav-btn:hover {
    background: var(--brand-primary, #FF6600) !important;
}

/* Swiper Pagination */
.hero-pagination {
    bottom: 20px !important;
    position: absolute !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--brand-primary, #FF6600);
    width: 30px;
    border-radius: 5px;
}

/* ========== HERO SLIDER RESPONSIVE ========== */

@media (max-width: 991px) {
    .section.hero-home {
        padding-top: 130px !important;
    }

    .hero-swiper {
        border-radius: 0 !important;
        margin: 0;
        width: 100%;
    }

    .hero-swiper .swiper-slide .hero-block {
        height: 600px !important;
        min-height: 600px !important;
        padding: 60px 40px;
        border-radius: 0 !important;
    }

    .hero-nav-btn {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .section.hero-home {
        padding-top: 92px !important;
        padding-bottom: 0 !important;
    }

    .hero-swiper {
        border-radius: 0 !important;
        margin: 0;
        width: 100%;
    }

    .hero-swiper .swiper-slide .hero-block {
        height: 82vh !important;
        min-height: 480px !important;
        padding: 50px 24px 60px;
        border-radius: 0 !important;
        align-items: flex-end;
    }

    .hero-swiper .swiper-slide .hero-block .limit-790 {
        max-width: 100% !important;
    }

    .hero-swiper .hero-pagination {
        left: 24px !important;
        bottom: 15px !important;
    }

    .student-button-wrap .cta.secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .student-button-wrap {
        flex-direction: column;
        align-items: stretch !important;
    }

    .student-button-wrap .cta {
        text-align: center;
        width: 100%;
    }

    .paragraph-big.home-subittle {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* Social proof responsivo */
    .hero-social-proof {
        flex-wrap: wrap;
        gap: 10px;
    }

    .avatar-circle {
        width: 38px;
        height: 38px;
    }

    .social-proof-text {
        font-size: 13px;
    }

    /* Student wrap responsivo */
    .student-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .student-group-wrap {
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .hero-swiper .swiper-slide .hero-block {
        height: 82vh !important;
        min-height: 420px !important;
        padding: 35px 16px 55px;
    }

    .hero-badge-tag {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 1px;
    }

    .hero-swiper .hero-pagination {
        left: 16px !important;
    }

    .avatar-circle {
        width: 34px;
        height: 34px;
        margin-right: -10px;
    }

    .social-proof-text {
        font-size: 12px;
    }

    .paragraph-big.home-subittle {
        font-size: 14px !important;
    }
}

/* ============================================
   CURSOS EM ALTA - SECAO
   ============================================ */

.cursos-alta-section {
    background-color: var(--bg-secondary, #f8f9fa);
    padding: 80px 0;
}

[data-theme="dark"] .cursos-alta-section {
    background-color: var(--bg-secondary, #111111);
}

.cursos-alta-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.cursos-alta-title-wrap {
    text-align: left;
}

.cursos-alta-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 12px;
    margin-top: 0;
}

.cursos-alta-header p {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 600px;
    margin: 0;
}

/* Badge de Secao */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1));
    border: 1px solid var(--brand-primary, #FF6600);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-primary, #FF6600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-badge svg {
    color: var(--brand-primary, #FF6600);
}

/* Grid de Cursos */
.cursos-alta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card de Curso */
.curso-card {
    background: var(--bg-card, #ffffff);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color, #e4e4e4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.curso-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
    border-color: var(--brand-primary, #FF6600);
}

/* Imagem do Card */
.curso-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.curso-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-card-image img {
    transform: scale(1.08);
}

/* Badges */
.curso-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.curso-badge.edital {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

.curso-badge.novo {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.curso-badge.quente {
    background: linear-gradient(135deg, #FF6600, #ff8533);
    color: #fff;
}

/* Conteudo do Card */
.curso-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Curso Meta Grid - Novo Layout */
.curso-meta-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 20px;
}

.curso-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary, #666);
}

.curso-meta-item svg {
    flex-shrink: 0;
    color: var(--brand-primary, #FF6600);
}

.curso-meta-item span {
    font-weight: 500;
}

/* Curso Button */
.curso-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--brand-primary, #FF6600);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.curso-btn:hover {
    background: var(--brand-primary-hover, #ff8533);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.curso-btn svg {
    transition: transform 0.3s ease;
}

.curso-btn:hover svg {
    transform: translateX(4px);
}

.curso-categoria {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary, #FF6600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.curso-titulo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 10px;
    line-height: 1.3;
}

.curso-desc {
    font-size: 14px;
    color: var(--text-secondary, #4a4a4a);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* Info do Curso (horas, alunos) */
.curso-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-tertiary, #757b7b);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color, #e4e4e4);
}

.curso-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.curso-info svg {
    color: var(--text-muted, #9ca3af);
}

/* CTA do Curso */
.curso-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary, #FF6600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.curso-cta:hover {
    color: var(--brand-primary-hover, #ff8533);
    gap: 8px;
}

/* Responsivo - Cursos em Alta */
@media (max-width: 991px) {
    .cursos-alta-section {
        padding: 60px 0;
    }

    .cursos-alta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cursos-alta-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .cursos-alta-section {
        padding: 40px 0;
    }

    .cursos-alta-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .cursos-alta-header .cta {
        width: 100%;
        text-align: center;
    }

    .cursos-alta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cursos-alta-header h2 {
        font-size: 22px;
    }

    .cursos-alta-header p {
        font-size: 14px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .curso-card-image {
        height: 160px;
    }

    .curso-titulo {
        font-size: 17px;
    }

    .space-40 {
        height: 0 !important;
    }
}

@media (max-width: 479px) {
    .cursos-alta-section {
        padding: 32px 0;
    }

    .cursos-alta-header h2 {
        font-size: 20px;
    }

    .curso-card-content {
        padding: 16px;
    }
}

/* ============================================
   SOBRE A EVEREST - SECAO
   ============================================ */

.sobre-everest-section {
    background-color: var(--bg-primary, #ffffff);
    padding: 80px 0;
}

[data-theme="dark"] .sobre-everest-section {
    background-color: var(--bg-primary, #0a0a0a);
}

.sobre-everest-header {
    text-align: left;
    margin-bottom: 48px;
}

.sobre-everest-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 12px;
    margin-top: 0;
}

.sobre-everest-header p {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 600px;
    margin: 0;
}

/* Grid Video + Accordion */
.sobre-everest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Video Placeholder */
.sobre-video-wrap {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-tertiary, #f4f1eb);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-primary, #FF6600);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--brand-primary-hover, #ff8533);
}

.video-play-btn svg {
    margin-left: 4px;
}

/* Video Container Real */
.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-tertiary, #0d0d0d);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Accordion */
.sobre-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e4e4);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--brand-primary, #FF6600);
}

.accordion-item.active {
    border-color: var(--brand-primary, #FF6600);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    background: var(--bg-card-hover, #f8f9fa);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1));
    color: var(--brand-primary, #FF6600);
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.accordion-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary, #757b7b);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--brand-primary, #FF6600);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 20px 20px 78px;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary, #4a4a4a);
    margin: 0;
}

/* Responsivo - Sobre a Everest */
@media (max-width: 991px) {
    .sobre-everest-section {
        padding: 60px 0;
    }

    .sobre-everest-grid {
        gap: 32px;
    }

    .sobre-everest-header h2 {
        font-size: 36px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .sobre-everest-section {
        padding: 40px 0;
    }

    .sobre-everest-header {
        margin-bottom: 24px;
    }

    .sobre-everest-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sobre-everest-header h2 {
        font-size: 22px;
    }

    .sobre-everest-header p {
        font-size: 14px;
    }

    .accordion-header {
        padding: 16px;
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 16px 16px 70px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 479px) {
    .sobre-everest-section {
        padding: 32px 0;
    }

    .sobre-everest-header h2 {
        font-size: 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 14px 14px 14px;
    }

    .accordion-content p {
        font-size: 13px !important;
    }

    .accordion-title {
        font-size: 14px;
    }

    .accordion-icon {
        width: 36px;
        height: 36px;
    }

    .accordion-header {
        padding: 14px;
        gap: 10px;
    }
}

/* ============================================
   BLOCO PROFESSORES
   ============================================ */

.professores-block {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color, #e4e4e4);
}

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

.professores-title-wrap {
    max-width: 700px;
}

.professores-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 12px 0;
}

.professores-header p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary, #4a4a4a);
    margin: 0;
}

/* Grid de Professores */
.professores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* Card do Professor */
.professor-card {
    text-align: center;
}

.professor-image {
    position: relative;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.professor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.professor-card:hover .professor-image img {
    transform: scale(1.05);
}

/* Socials overlay */
.professor-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.professor-card:hover .professor-socials {
    opacity: 1;
    transform: translateY(0);
}

.professor-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.professor-social:hover {
    background: var(--brand-primary, #FF6600);
    color: #fff;
    transform: scale(1.1);
}

/* Info do Professor */
.professor-info {
    padding: 0 8px;
}

.professor-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 4px 0;
}

.professor-role {
    font-size: 14px;
    color: var(--brand-primary, #FF6600);
    font-weight: 500;
}

/* Responsivo - Professores */
@media (max-width: 1200px) {
    .professores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .professores-block {
        margin-top: 60px;
        padding-top: 48px;
    }

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

    .professores-header h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .professores-block {
        margin-top: 40px;
        padding-top: 32px;
    }

    .professores-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .professores-header .cta {
        width: 100%;
        text-align: center;
    }

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

    .professores-header h3 {
        font-size: 22px;
    }

    .professores-header p {
        font-size: 14px;
    }

    .professor-name {
        font-size: 13px;
    }

    .professor-role {
        font-size: 12px;
    }

    .professor-info {
        padding: 0 4px;
    }

    .professor-socials {
        opacity: 1;
        transform: translateY(0);
        padding: 10px;
    }

    .professor-social {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 479px) {
    .professores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .professor-image {
        border-radius: 12px;
    }

    .professor-name {
        font-size: 13px;
    }
}

/* ============================================
   SECAO CATEGORIAS
   ============================================ */

.categorias-section {
    background-color: var(--bg-secondary, #f8f9fa);
    padding: 80px 0;
}

[data-theme="dark"] .categorias-section {
    background-color: var(--bg-secondary, #111111);
}

.categorias-header {
    text-align: left;
    margin-bottom: 48px;
}

.categorias-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 12px;
    margin-top: 0;
}

.categorias-header p {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 600px;
    margin: 0;
}

/* Grid de Categorias */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card de Categoria */
.categoria-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e4e4);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--brand-primary, #FF6600);
    transition: height 0.3s ease;
}

.categoria-card:hover {
    border-color: var(--brand-primary, #FF6600);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
}

.categoria-card:hover::before {
    height: 100%;
}

/* Icone da Categoria */
.categoria-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1));
    color: var(--brand-primary, #FF6600);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.categoria-card:hover .categoria-icon {
    background: var(--brand-primary, #FF6600);
    color: #fff;
}

/* Info da Categoria */
.categoria-info {
    flex: 1;
    margin-bottom: 16px;
}

.categoria-nome {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 4px 0;
}

.categoria-count {
    font-size: 14px;
    color: var(--text-tertiary, #757b7b);
}

/* Link da Categoria */
.categoria-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary, #FF6600);
    transition: all 0.2s ease;
}

.categoria-link svg {
    transition: transform 0.2s ease;
}

.categoria-card:hover .categoria-link {
    gap: 10px;
}

.categoria-card:hover .categoria-link svg {
    transform: translateX(4px);
}

/* Responsivo - Categorias */
@media (max-width: 1200px) {
    .categorias-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .categorias-section {
        padding: 60px 0;
    }

    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .categorias-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .categorias-section {
        padding: 40px 0;
    }

    .categorias-header {
        margin-bottom: 24px;
    }

    .categorias-header h2 {
        font-size: 22px;
    }

    .categorias-header p {
        font-size: 14px;
    }

    .categorias-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .categoria-card {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .categoria-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0;
        flex-shrink: 0;
        border-radius: 10px;
    }

    .categoria-info {
        margin-bottom: 0;
        flex: 1;
    }

    .categoria-nome {
        font-size: 15px;
    }

    .categoria-count {
        font-size: 12px;
    }

    .categoria-link {
        font-size: 0;
    }

    .categoria-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 479px) {
    .categorias-header h2 {
        font-size: 20px;
    }

    .categoria-card {
        padding: 12px 14px;
    }

    .categoria-icon {
        width: 38px;
        height: 38px;
    }

    .categoria-icon svg {
        width: 20px;
        height: 20px;
    }

    .categoria-nome {
        font-size: 14px;
    }
}

/* ============================================
   SECAO NOTICIAS
   ============================================ */

.noticias-section {
    background-color: var(--bg-primary, #ffffff);
    padding: 80px 0;
}

[data-theme="dark"] .noticias-section {
    background-color: var(--bg-primary, #0a0a0a);
}

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

.noticias-title-wrap {
    text-align: left;
}

.noticias-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 12px;
    margin-top: 0;
}

.noticias-header p {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 600px;
    margin: 0;
}

/* Grid de Noticias */
.noticias-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Card de Noticia */
.noticia-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e4e4);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.noticia-card:hover {
    border-color: var(--brand-primary, #FF6600);
    box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
}

/* Imagem da Noticia */
.noticia-image-link {
    display: block;
    text-decoration: none;
}

.noticia-image {
    position: relative;
    overflow: hidden;
}

.noticia-card.destaque .noticia-image {
    height: 280px;
}

.noticia-card.mini .noticia-image {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
}

.noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.noticia-card:hover .noticia-image img {
    transform: scale(1.05);
}

.noticia-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--brand-primary, #FF6600);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Nos cards mini a miniatura (~90px) nao comporta o badge e ele era cortado.
   A categoria ja aparece no meta ao lado da data, entao o badge fica so no destaque. */
.noticia-card.mini .noticia-tag {
    display: none;
}

/* Conteudo da Noticia */
.noticia-content {
    padding: 24px;
}

.noticia-card.mini .noticia-content {
    padding: 0;
    flex: 1;
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.noticia-categoria {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-primary, #FF6600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.noticia-data {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-tertiary, #757b7b);
}

.noticia-titulo {
    margin: 0 0 12px 0;
}

.noticia-card.destaque .noticia-titulo {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.noticia-card.mini .noticia-titulo {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

.noticia-titulo a {
    color: var(--text-primary, #1a1a1a);
    text-decoration: none;
    transition: color 0.2s ease;
}

.noticia-titulo a:hover {
    color: var(--brand-primary, #FF6600);
}

.noticia-resumo {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary, #4a4a4a);
    margin: 0 0 20px 0;
}

.noticia-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary, #FF6600);
    text-decoration: none;
    transition: all 0.2s ease;
}

.noticia-link:hover {
    gap: 10px;
}

/* Lista de Noticias Mini */
.noticias-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noticia-card.mini {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
}

.noticia-card.mini .noticia-meta {
    margin-bottom: 8px;
    gap: 12px;
}

.noticia-card.mini .noticia-categoria {
    font-size: 11px;
}

.noticia-card.mini .noticia-data {
    font-size: 12px;
}

/* Responsivo - Noticias */
@media (max-width: 991px) {
    .noticias-section {
        padding: 60px 0;
    }

    .noticias-header h2 {
        font-size: 36px;
    }

    .noticias-grid {
        gap: 24px;
    }

    .noticia-card.destaque .noticia-image {
        height: 220px;
    }

    .noticia-card.destaque .noticia-titulo {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .noticias-section {
        padding: 40px 0;
    }

    .noticias-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .noticias-header .cta {
        width: 100%;
        text-align: center;
    }

    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .noticias-header h2 {
        font-size: 22px;
    }

    .noticias-header p {
        font-size: 14px;
    }

    .noticia-card.destaque .noticia-image {
        height: 180px;
    }

    .noticia-card.destaque .noticia-titulo {
        font-size: 18px;
    }

    .noticia-resumo {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .noticia-content {
        padding: 16px;
    }

    .noticias-lista {
        gap: 12px;
    }
}

@media (max-width: 479px) {
    .noticias-header h2 {
        font-size: 20px;
    }

    .noticia-card.destaque .noticia-image {
        height: 150px;
    }

    .noticia-card.mini {
        padding: 10px;
        gap: 10px;
    }

    .noticia-card.mini .noticia-image {
        width: 70px;
        height: 55px;
        border-radius: 8px;
    }

    .noticia-card.mini .noticia-titulo {
        font-size: 13px;
    }

    .noticia-card.mini .noticia-meta {
        margin-bottom: 4px;
    }
}

/* ============================================
   SECAO HISTORIAS DE SUCESSO
   ============================================ */

.historias-section {
    background-color: var(--bg-secondary, #f8f9fa);
    padding: 80px 0;
}

[data-theme="dark"] .historias-section {
    background-color: var(--bg-secondary, #111111);
}

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

.historias-title-wrap {
    text-align: left;
}

.historias-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 12px;
    margin-top: 0;
}

.historias-header p {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 600px;
    margin: 0;
}

/* Grid de Historias */
.historias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Card de Historia */
.historia-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e4e4);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.historia-card:hover {
    border-color: var(--brand-primary, #FF6600);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
}

.historia-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--brand-primary, #FF6600);
}

.historia-texto {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary, #4a4a4a);
    margin: 0 0 20px 0;
    flex: 1;
}

.historia-resultado {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color, #e4e4e4);
}

.resultado-cargo {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.resultado-orgao {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--brand-primary, #FF6600);
    padding: 4px 10px;
    border-radius: 20px;
}

.historia-autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.autor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.autor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.autor-nome {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.autor-local {
    font-size: 13px;
    color: var(--text-tertiary, #757b7b);
}

.autor-posicao {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-primary, #FF6600);
    background: var(--brand-primary-light, rgba(255, 102, 0, 0.1));
    padding: 6px 12px;
    border-radius: 20px;
}

/* Estatisticas de Aprovados */
.aprovados-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 40px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e4e4);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-numero {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-primary, #FF6600);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary, #4a4a4a);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color, #e4e4e4);
}

/* Responsivo - Historias */
@media (max-width: 1200px) {
    .historias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .historias-section {
        padding: 60px 0;
    }

    .historias-header h2 {
        font-size: 36px;
    }

    .aprovados-stats {
        gap: 32px;
        padding: 32px;
    }

    .stat-numero {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .historias-section {
        padding: 40px 0;
    }

    .historias-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .historias-header .cta {
        width: 100%;
        text-align: center;
    }

    .historias-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }

    .historias-header h2 {
        font-size: 22px;
    }

    .historias-header p {
        font-size: 14px;
    }

    .historia-card {
        padding: 20px;
        border-radius: 12px;
    }

    .historia-texto {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .historia-resultado {
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .autor-avatar {
        width: 40px;
        height: 40px;
    }

    .autor-nome {
        font-size: 14px;
    }

    .autor-local {
        font-size: 12px;
    }

    .autor-posicao {
        font-size: 11px;
        padding: 4px 10px;
    }

    .aprovados-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
        border-radius: 12px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .stat-numero {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .historias-section {
        padding: 32px 0;
    }

    .historias-header h2 {
        font-size: 20px;
    }

    .historia-card {
        padding: 16px;
    }

    .historia-texto {
        font-size: 13px;
    }

    .stat-numero {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .aprovados-stats {
        padding: 16px;
        gap: 12px;
    }
}

/* ========== CTA SECTION COM MARQUEE ========== */
.everest-cta-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%) !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.everest-cta-section > .main-container {
    position: static !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: max(20px, calc((100vw - 1600px) / 2 + 20px)) !important;
    padding-right: 0 !important;
}

.everest-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.everest-cta-section::after {
    content: '';
    position: absolute;
    top: 100px;
    left: -150px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.everest-cta-section .grid-halves.about-lecture {
    display: block !important;
    min-height: 700px;
    position: relative;
}

.everest-cta-section .image-columns-title {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    width: 45%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 700px;
}

.everest-cta-section h2 {
    color: #ffffff !important;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
}

.everest-cta-section .span-accent-one {
    color: #FF6600 !important;
    background: transparent !important;
    padding: 0 !important;
}

.everest-cta-section .text-medium {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
}

.everest-cta-section .cta-wrap-highlighted-blog {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.everest-cta-section .cta.white-button {
    background: #ffffff !important;
    color: #FF6600 !important;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.everest-cta-section .cta.white-button:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.everest-cta-section .cta.secondary-outline {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.everest-cta-section .cta.secondary-outline:hover {
    background: #ffffff !important;
    color: #FF6600 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* Marquee Styles - Layout Original */
.everest-cta-section .marquee-wrap {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 55% !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
    height: 100% !important;
    width: 45% !important;
    overflow: hidden !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding: 0 40px !important;
}

.everest-cta-section .marquee-overflow {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    height: 180px !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.everest-cta-section .marquee-overflow:not(.bottom) {
    top: 0 !important;
    bottom: auto !important;
    background: linear-gradient(180deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0.8) 40%, rgba(17, 17, 17, 0) 100%) !important;
}

.everest-cta-section .marquee-overflow.bottom {
    bottom: 0 !important;
    top: auto !important;
    background: linear-gradient(0deg, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.8) 40%, rgba(26, 26, 26, 0) 100%) !important;
}

.everest-cta-section .marquee-column {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
    justify-content: flex-start !important;
    align-items: center !important;
    height: auto !important;
    min-height: 100% !important;
}

.everest-cta-section .marquee-column.first-column {
    width: 280px !important;
}

.everest-cta-section .marquee-column.second-column {
    width: 280px !important;
}

.everest-cta-section .marquee {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    animation: marqueeUp 30s linear infinite !important;
    will-change: transform !important;
}

.everest-cta-section .marquee.reverse {
    animation: marqueeDown 30s linear infinite !important;
    justify-content: flex-start !important;
    will-change: transform !important;
}

.everest-cta-section .marquee-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.everest-cta-section .marquee-image-wrap {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
    flex-shrink: 0 !important;
}

.everest-cta-section .marquee-column.first-column .marquee-image-wrap,
.everest-cta-section .marquee-column.second-column .marquee-image-wrap {
    width: 280px !important;
    height: 350px !important;
}

.everest-cta-section .marquee-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

@keyframes marqueeUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes marqueeDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* CTA Section Responsive */
@media (max-width: 991px) {
    .everest-cta-section {
        padding: 60px 0 !important;
        min-height: auto !important;
    }

    .everest-cta-section > .main-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .everest-cta-section .grid-halves.about-lecture {
        display: block !important;
        min-height: auto !important;
    }

    .everest-cta-section .image-columns-title {
        padding: 40px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .everest-cta-section h2 {
        font-size: 34px;
    }

    .everest-cta-section .marquee-wrap {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 500px !important;
        padding: 0 20px !important;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .everest-cta-section {
        padding: 40px 0 !important;
    }

    .everest-cta-section .image-columns-title {
        padding: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
        min-height: auto !important;
    }

    .everest-cta-section h2 {
        font-size: 22px;
        text-align: left !important;
        line-height: 1.3;
    }

    .everest-cta-section .text-medium {
        font-size: 14px;
        text-align: left !important;
        margin-top: 12px;
    }

    .everest-cta-section .space-16 {
        height: 8px !important;
    }

    .everest-cta-section .marquee-wrap {
        display: none !important;
    }

    .everest-cta-section .cta-wrap-highlighted-blog {
        flex-direction: column;
        margin-top: 20px;
        gap: 10px;
    }

    .everest-cta-section .cta.white-button,
    .everest-cta-section .cta.secondary-outline {
        width: 100%;
        text-align: center;
        padding: 13px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    .everest-cta-section::before,
    .everest-cta-section::after {
        display: none;
    }
}

@media (max-width: 479px) {
    .everest-cta-section {
        padding: 32px 0 !important;
    }

    .everest-cta-section h2 {
        font-size: 20px;
    }

    .everest-cta-section .text-medium {
        font-size: 13px;
    }

    .everest-cta-section .cta.white-button,
    .everest-cta-section .cta.secondary-outline {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* ========== FOOTER STYLES ========== */
.footer {
    background: #0a0a0a !important;
}

.section.footer {
    background: transparent !important;
    padding: 80px 0 40px;
}

.footer-main {
    padding-right: 40px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    max-height: 45px !important;
}

.footer .text-medium {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 20px;
}

.footer-social-link-wrap {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer .social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.footer .social-link:hover {
    background: #FF6600 !important;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer .social-link svg {
    width: 20px;
    height: 20px;
}

.footer .social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer .social-link:hover img {
    opacity: 1;
}

.footer-title {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FF6600;
    border-radius: 2px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    padding: 6px 0;
    display: block;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #FF6600 !important;
    padding-left: 5px;
}

.footer-contact .contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact .contact-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact .contact-list-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6600;
    flex-shrink: 0;
}

.footer-contact .contact-list-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(98%) saturate(1653%) hue-rotate(360deg) brightness(101%) contrast(106%);
}

.footer-contact .paragraph-small {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
}

/* Newsletter Section */
.section.newsletter {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%) !important;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-title {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.newsletter-block {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-block p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
}

.span-newsletter {
    color: #FF6600 !important;
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-text-field {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    padding: 14px 20px !important;
    font-size: 15px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.newsletter-text-field::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-text-field:focus {
    border-color: #FF6600 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    outline: none;
}

.cta.subscribe {
    background: #FF6600 !important;
    color: #ffffff !important;
    border: none;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta.subscribe:hover {
    background: #ff8533 !important;
    transform: translateY(-2px);
}

.newsletter-divider {
    background: rgba(255, 255, 255, 0.1) !important;
    height: 1px;
    margin: 40px 0 24px;
}

.copyright-wrap {
    text-align: center;
}

.copyright-wrap p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px;
}

.success-message {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #22c55e !important;
    border-radius: 8px;
    padding: 12px 16px;
}

.w-form-fail {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
    border-radius: 8px;
    padding: 12px 16px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .section.footer {
        padding: 50px 0 24px;
    }

    .footer-main {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .section.footer {
        padding: 36px 0 16px;
    }

    /* Footer principal - empilhado */
    .grid-footer {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    /* Logo + descrição + socials */
    .footer-main {
        text-align: center;
        padding-right: 0;
        margin-bottom: 0;
    }

    .footer-logo img {
        max-height: 40px !important;
    }

    .footer .text-medium {
        font-size: 14px !important;
        margin-top: 16px;
    }

    .footer-social-link-wrap {
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }

    .footer .social-link {
        width: 40px;
        height: 40px;
    }

    /* Navegação - links em 2 colunas lado a lado */
    .footer-column {
        text-align: center;
    }

    .footer-column .space-24 {
        height: 12px !important;
    }

    .footer-title {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 16px !important;
    }

    .footer-block {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .footer-link {
        font-size: 14px !important;
        padding: 6px 0;
        text-align: center;
    }

    /* Contato */
    .footer-contact {
        padding: 24px !important;
        border-radius: 14px !important;
    }

    .footer-contact .space-24 {
        height: 12px !important;
    }

    .footer-contact .contact-list {
        gap: 14px;
    }

    .footer-contact .contact-list-item {
        gap: 12px;
    }

    .footer-contact .contact-list-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .footer-contact .contact-list-icon svg {
        width: 16px;
        height: 16px;
    }

    .footer-contact .paragraph-small {
        font-size: 13px !important;
        text-align: left;
    }

    /* Newsletter */
    .section.newsletter {
        padding: 28px 0 20px;
    }

    .section.newsletter .grid-halves {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-block {
        justify-content: center;
    }

    .newsletter-block p {
        font-size: 14px !important;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-text-field {
        min-width: 100% !important;
        width: 100% !important;
        padding: 12px 16px !important;
        border-radius: 10px !important;
    }

    .cta.subscribe {
        width: 100%;
        padding: 12px 20px !important;
        border-radius: 10px !important;
    }

    .newsletter-divider {
        margin: 24px 0 16px;
    }

    .copyright-wrap p {
        font-size: 12px !important;
        line-height: 1.5;
    }
}

@media (max-width: 479px) {
    .section.footer {
        padding: 28px 0 12px;
    }

    .grid-footer {
        gap: 24px !important;
    }

    .footer-logo img {
        max-height: 36px !important;
    }

    .footer .text-medium {
        font-size: 13px !important;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
    }

    .footer-link {
        font-size: 13px !important;
        padding: 5px 0;
    }

    .footer-contact {
        padding: 18px !important;
    }

    .footer-contact .contact-list-item {
        gap: 10px;
    }

    .footer-contact .paragraph-small {
        font-size: 12px !important;
    }

    .newsletter-title {
        font-size: 16px;
    }

    .newsletter-block p {
        font-size: 13px !important;
    }

    .copyright-wrap p {
        font-size: 11px !important;
    }
}

/* ========== PAGINA DE CURSO ========== */

/* Hero do Curso */
.course-hero-section {
    background: linear-gradient(135deg, #FF6600 0%, #ff8533 50%, #FF6600 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.course-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.course-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.course-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.course-hero-content {
    color: #ffffff;
}

.course-badge-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.course-badge.presencial {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.course-badge.new {
    background: #ffffff;
    color: #FF6600;
}

.course-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff !important;
}

.course-title .span-italic {
    color: #ffffff !important;
    font-style: italic;
}

.course-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.course-subtitle strong {
    color: #ffffff;
}

.course-meta-wrap {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.course-meta-item svg {
    color: #ffffff;
    flex-shrink: 0;
}

.course-meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.meta-value {
    font-size: 16px;
    font-weight: 700;
}

.course-benefits-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.benefit-item svg {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px;
    border-radius: 50%;
}

/* Card de Preco */
.course-price-sidebar {
    position: sticky;
    top: 100px;
}

.course-price-card-new {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.teacher-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.teacher-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FF6600;
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teacher-info {
    display: flex;
    flex-direction: column;
}

.teacher-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teacher-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-divider {
    height: 1px;
    background: #e4e4e4;
    margin: 20px 0;
}

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

.pricing-box {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.pricing-box.aluno {
    background: linear-gradient(135deg, #FF6600 0%, #ff8533 100%);
    color: #ffffff;
}

.pricing-box.nao-aluno {
    background: #f4f4f4;
    color: #1a1a1a;
}

.pricing-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-box.aluno .pricing-label {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-box.nao-aluno .pricing-label {
    color: #666;
}

.pricing-installment {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.installment-count {
    font-size: 14px;
}

.installment-value {
    font-size: 32px;
    font-weight: 800;
}

.installment-value small {
    font-size: 18px;
}

.pricing-cash {
    font-size: 14px;
}

.pricing-box.aluno .pricing-cash {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-box.nao-aluno .pricing-cash {
    color: #666;
}

.cta-whatsapp-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: #25D366;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.cta-whatsapp-big:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-number {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 12px;
}

/* Secao de Detalhes */
.course-details-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.course-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.course-main-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.course-block {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.course-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.course-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Grid de Inclusos */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.included-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.included-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6600 0%, #ff8533 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon svg {
    color: #ffffff;
}

.included-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.included-item p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Sidebar do Curso */
.course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

/* Card da Professora */
.teacher-card-detail .teacher-card-content {
    text-align: center;
}

.teacher-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF6600;
    margin-bottom: 16px;
}

.teacher-card-detail h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.teacher-specialty {
    font-size: 14px;
    color: #FF6600;
    font-weight: 600;
    margin-bottom: 12px;
}

.teacher-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-tertiary);
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* CTA Card */
.sidebar-card.cta-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: none;
    text-align: center;
}

.cta-card .cta-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-whatsapp-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #25D366;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-whatsapp-small:hover {
    background: #128C7E;
}

.phone-small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Responsivo - Pagina de Curso */
@media (max-width: 991px) {
    .course-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .course-price-sidebar {
        position: relative;
        top: 0;
    }

    .course-title {
        font-size: 42px;
    }

    .course-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .course-sidebar {
        order: -1;
    }
}

@media (max-width: 767px) {
    .course-hero-section {
        padding: 80px 0 60px;
    }

    .course-title {
        font-size: 32px;
    }

    .course-subtitle {
        font-size: 18px;
    }

    .course-meta-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .course-meta-item {
        width: 100%;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .course-block {
        padding: 24px;
    }

    .course-price-card-new {
        padding: 24px;
    }
}

/* ========== COURSE DETAIL PAGE FIXES ========== */

/* Hero adjustment for topbar */
.section.hero-course-detail {
    padding-top: 220px;
}

/* Hero text always white (light and dark mode) */
.section.hero-course-detail,
.section.hero-course-detail h1,
.section.hero-course-detail p,
.section.hero-course-detail .subtitle,
.section.hero-course-detail .paragraph-small {
    color: #fff !important;
}

/* Course detail content spacing */
.section.course-detail-content {
    padding-top: 80px;
    border-top: 4px solid #FF6600;
}

/* Everest Badge */
.everest-badge {
    background: #FF6600;
    color: #fff;
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

/* Pricing Everest - Two price boxes */
.pricing-everest {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.price-box {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.price-box.aluno {
    background: linear-gradient(135deg, #FF6600 0%, #e65c00 100%);
    color: #fff;
}

.price-box.nao-aluno {
    background: #f5f5f5;
    color: #1a1a1a;
}

[data-theme="dark"] .price-box.nao-aluno {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.price-box .price-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.price-box .price {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.price-box .price-vista {
    display: block;
    font-size: 13px;
    opacity: 0.85;
    margin-top: 4px;
}

/* WhatsApp CTA button */
.cta-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
}

.cta-whatsapp:hover {
    background: #1da851 !important;
    border-color: #1da851 !important;
}

/* Topbar phone link */
.topbar-phone {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-phone:hover {
    color: #FF6600;
}

/* Grid layout - sidebar on right */
.grid-halves.course-details-halves {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 48px !important;
}

.grid-halves.course-details-halves .course-price-wrap {
    order: 2 !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.grid-halves.course-details-halves .course-detail-wrap {
    order: 1 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
}

/* Course details table - Everest Orange */
.block.course-detail-on-green {
    background: linear-gradient(135deg, #FF6600 0%, #e65c00 100%) !important;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.25);
}

.block.course-detail-on-green .table-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.block.course-detail-on-green .table-row.last-item {
    border-bottom: none;
}

.block.course-detail-on-green .table-row .block {
    padding: 0;
}

.block.course-detail-on-green .white-text-row p,
.block.course-detail-on-green p {
    color: #fff !important;
    margin: 0;
}

.block.course-detail-on-green .detail-left-text-course-page {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
}

.block.course-detail-on-green .detail-right-text-course-page {
    color: #fff !important;
    font-weight: 700;
}

/* Checkmark icons */
.block.course-detail-on-green .icon-course-detail-top {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.block.course-detail-on-green svg {
    flex-shrink: 0;
}

/* Sticky sidebar */
.sticky-block {
    position: sticky;
    top: 120px;
}

/* Course price card styling */
.course-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .course-price-card {
    background: var(--bg-secondary, #1a1a1a);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .grid-halves.course-details-halves {
        grid-template-columns: 1fr !important;
    }

    .grid-halves.course-details-halves .course-price-wrap {
        order: -1 !important;
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .grid-halves.course-details-halves .course-detail-wrap {
        order: 1 !important;
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .sticky-block {
        position: relative !important;
        top: 0 !important;
    }

    .section.hero-course-detail {
        padding-top: 180px;
    }
}

/* ========== COURSE PAGE - EVEREST THEME ========== */

/* Hero overlay with Everest accent */
.section.hero-course-detail .overlay-course-detail-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(255, 102, 0, 0.3) 100%) !important;
}

/* Course review badge */
.course-review .review-star img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(1500%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

/* Course title styling */
.section.hero-course-detail h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Course divider with Everest accent */
.course-divider {
    background: linear-gradient(90deg, transparent, #FF6600, transparent) !important;
    height: 2px !important;
    margin: 48px 0 !important;
}

/* Section titles */
.course-detail-wrap h2 {
    color: var(--text-primary, #1a1a1a);
    position: relative;
    padding-bottom: 12px;
}

.course-detail-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF6600;
    border-radius: 2px;
}

[data-theme="dark"] .course-detail-wrap h2 {
    color: #fff;
}

/* ========== EXPANDABLE FAQ (Course Page) ========== */

.expandable-single {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .expandable-single {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.expandable-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.expandable-top:hover {
    color: #FF6600;
}

.expandable-single.open .expandable-top {
    color: #FF6600;
}

.expandable-bottom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.expandable-single.open .expandable-bottom {
    max-height: 500px;
    padding-bottom: 20px;
}

.plus-expand-master {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.plus-line {
    position: absolute;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.plus-line:not(.vertical) {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.plus-line.vertical {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.expandable-single.open .plus-line.vertical {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    color: #1a1a1a;
}

[data-theme="dark"] .faq-h3 {
    color: #fff;
}

.faq-paragraph {
    color: var(--text-secondary, #666);
    margin: 0;
    line-height: 1.7;
}

[data-theme="dark"] .faq-paragraph {
    color: rgba(255, 255, 255, 0.7);
}

/* Sobre o Curso - Dark mode */
[data-theme="dark"] .section.course-detail-content {
    background-color: #1a1a1a;
}

[data-theme="dark"] .course-detail-wrap .title-wrap h2 {
    color: #fff;
}

[data-theme="dark"] .course-detail-wrap .title-wrap p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .master-expandable {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: #1a1a1a;
}

[data-theme="dark"] .expandable-single {
    background-color: #1a1a1a;
}

[data-theme="dark"] .expandable-top {
    background-color: #1a1a1a;
}

[data-theme="dark"] .expandable-bottom {
    background-color: #1a1a1a;
}

[data-theme="dark"] .course-detail-wrap .block {
    background-color: #1a1a1a;
}

/* ========== COURSE FEATURE CARDS - EVEREST ========== */

.course-feature-card-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.course-feature-card {
    background: var(--bg-card, #fff);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.course-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 102, 0, 0.15);
    border-color: #FF6600;
}

[data-theme="dark"] .course-feature-card {
    background: var(--bg-secondary, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .course-feature-card:hover {
    border-color: #FF6600;
}

.course-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #FF6600 0%, #e65c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-feature-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.course-feature-card p:first-of-type {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: 4px;
}

[data-theme="dark"] .course-feature-card p:first-of-type {
    color: #fff;
}

.course-feature-card .text-regular {
    color: var(--text-secondary, #666);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== TESTIMONIAL CARDS - EVEREST ========== */

.testimonial-card {
    background: var(--bg-card, #fff);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .testimonial-card {
    background: var(--bg-secondary, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FF6600;
}

.avatar-name {
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

[data-theme="dark"] .avatar-name {
    color: #fff;
}

.testimonial-card .text-medium {
    color: var(--text-secondary, #666);
    font-style: italic;
    line-height: 1.7;
}

.course-card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 16px 0;
}

[data-theme="dark"] .course-card-divider {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-role-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FF6600;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-role-icon {
    width: 20px;
    height: 20px;
}

.testimonial-role-icon img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(98%) saturate(1500%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

/* ========== COURSE SLIDER ARROWS - EVEREST ========== */

.course-slider-wrap .w-slider-arrow-left,
.course-slider-wrap .w-slider-arrow-right {
    background: #FF6600 !important;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.course-slider-wrap .w-slider-arrow-left:hover,
.course-slider-wrap .w-slider-arrow-right:hover {
    background: #e65c00 !important;
    transform: scale(1.1);
}

.course-slider-wrap .w-slider-arrow-left svg,
.course-slider-wrap .w-slider-arrow-right svg {
    color: #fff !important;
}

/* ========== PRICE CARD ENHANCEMENTS ========== */

.course-price-card .teacher-avatar {
    border: 2px solid #FF6600;
    border-radius: 50%;
    overflow: hidden;
}

.course-price-card .paragraph-big {
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

[data-theme="dark"] .course-price-card .paragraph-big {
    color: #fff;
}

.course-price-card .divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 16px 0;
}

[data-theme="dark"] .course-price-card .divider {
    background: rgba(255, 255, 255, 0.1);
}

/* ========== TEACHERS GRID ========== */

.section.teachers {
    padding-top: 160px;
    padding-bottom: 80px;
}

/* Teachers Hero Header */
.teachers-hero-header {
    text-align: center;
    margin-bottom: 32px;
}

.teachers-page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 16px 0;
    line-height: 1.15;
}

.teachers-page-subtitle {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Teachers Filter Bar */
.teachers-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.teachers-list.w-dyn-items {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.teachers-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.teachers-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.teachers-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.teachers-image-wrap .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.teachers-card:hover .teachers-image-wrap .image {
    transform: scale(1.05);
}

.teacher-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.teacher-content .subtext {
    color: #FF6600;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teachers-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

[data-theme="dark"] .teachers-title {
    color: #fff;
}

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

.wrap-socials-teacher-card {
    display: flex;
    gap: 8px;
}

.wrap-socials-teacher-card .social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.wrap-socials-teacher-card .social-link:hover {
    background: #FF6600;
}

.wrap-socials-teacher-card .social-link:hover img {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .wrap-socials-teacher-card .social-link {
    background: #333;
}

.teacher-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    flex-grow: 1;
}

[data-theme="dark"] .teacher-content p {
    color: #aaa;
}

.cta-wrap-teacher-card {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .cta-wrap-teacher-card {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.link-teacher-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF6600;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.link-teacher-card:hover {
    gap: 12px;
}

.link-teacher-card::after {
    content: '\2192';
    font-size: 18px;
}

/* Teachers Filters */
.teachers-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #FF6600;
    color: #FF6600;
}

.filter-btn.active {
    background: #FF6600;
    border-color: #FF6600;
    color: #fff;
}

[data-theme="dark"] .filter-btn {
    background: #252525;
    border-color: #444;
    color: #aaa;
}

[data-theme="dark"] .filter-btn:hover {
    border-color: #FF6600;
    color: #FF6600;
}

[data-theme="dark"] .filter-btn.active {
    background: #FF6600;
    border-color: #FF6600;
    color: #fff;
}

/* Teachers Pagination */
.teachers-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #FF6600;
    color: #FF6600;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

[data-theme="dark"] .pagination-btn {
    background: #252525;
    border-color: #444;
    color: #aaa;
}

[data-theme="dark"] .pagination-btn:hover:not(:disabled) {
    border-color: #FF6600;
    color: #FF6600;
}

.pagination-numbers {
    display: flex;
    gap: 4px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    border-color: #FF6600;
    color: #FF6600;
}

.page-number.active {
    background: #FF6600;
    border-color: #FF6600;
    color: #fff;
}

[data-theme="dark"] .page-number {
    background: #252525;
    border-color: #444;
    color: #aaa;
}

[data-theme="dark"] .page-number:hover {
    border-color: #FF6600;
    color: #FF6600;
}

[data-theme="dark"] .page-number.active {
    background: #FF6600;
    border-color: #FF6600;
    color: #fff;
}

.pagination-info {
    text-align: center;
    margin-top: 16px;
    color: #666;
    font-size: 14px;
}

[data-theme="dark"] .pagination-info {
    color: #aaa;
}

/* Hidden teacher item */
.teacher-item.hidden {
    display: none !important;
}

/* Teachers Card Background */
.teachers-card {
    background: #fff;
}

[data-theme="dark"] .teachers-card {
    background: #252525;
}

/* Teachers Feature Cards */
.teachers-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .teachers-feature-card {
    background: #252525;
}

.teachers-feature-card.highlighted-card {
    background: linear-gradient(135deg, #FF6600 0%, #e65c00 100%);
    color: #fff;
}

.teachers-feature-card.highlighted-card h3,
.teachers-feature-card.highlighted-card p {
    color: #fff;
}

.teachers-feature-content h2 {
    color: #1a1a1a;
}

[data-theme="dark"] .teachers-feature-content h2 {
    color: #fff;
}

.teachers-feature-content .text-medium {
    color: #666;
}

[data-theme="dark"] .teachers-feature-content .text-medium {
    color: #aaa;
}

/* Responsive Teachers Grid */
@media screen and (max-width: 1200px) {
    .teachers-list.w-dyn-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .teachers-list.w-dyn-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .teachers-image-wrap {
        height: 220px;
    }
}

@media screen and (max-width: 767px) {
    .section.teachers {
        padding-top: 130px;
        padding-bottom: 40px;
    }

    .teachers-hero-header {
        margin-bottom: 20px;
    }

    .teachers-page-title {
        font-size: 28px;
    }

    .teachers-page-subtitle {
        font-size: 14px;
    }

    .teachers-filter-bar {
        gap: 8px;
        margin-bottom: 20px;
    }

    .teachers-list.w-dyn-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .teachers-card {
        flex-direction: row;
    }

    .teachers-image-wrap {
        width: 130px;
        height: auto;
        min-height: 180px;
        flex-shrink: 0;
    }

    .teacher-content {
        padding: 14px;
    }

    .teachers-title {
        font-size: 17px;
    }

    .teacher-content p {
        font-size: 13px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .teachers-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .page-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media screen and (max-width: 479px) {
    .section.teachers {
        padding-top: 124px;
        padding-bottom: 32px;
    }

    .teachers-page-title {
        font-size: 24px;
    }

    .teachers-page-subtitle {
        font-size: 13px;
    }

    .teachers-card {
        flex-direction: column;
    }

    .teachers-image-wrap {
        width: 100%;
        height: 180px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .pagination-numbers {
        gap: 2px;
    }

    .page-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ========== COURSES PAGE ========== */

.section.courses-page {
    padding-top: 160px;
    padding-bottom: 80px;
}

/* Courses Hero Header */
.courses-hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.courses-page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 16px 0;
    line-height: 1.15;
}

.courses-page-subtitle {
    font-size: 18px;
    color: var(--text-secondary, #4a4a4a);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Filter Bar */
.courses-filter-bar {
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color, #e4e4e4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

[data-theme="dark"] .courses-filter-bar {
    background: var(--bg-secondary, #111111);
    border-color: #333;
}

/* Courses Main Tabs */
.courses-main-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--bg-card, #fff);
    border-radius: 12px;
    padding: 5px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .courses-main-tabs {
    background: #252525;
    box-shadow: none;
}

.main-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-tab:hover {
    color: #FF6600;
}

.main-tab.active {
    background: #FF6600;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.main-tab svg {
    flex-shrink: 0;
}

[data-theme="dark"] .main-tab {
    color: #aaa;
}

[data-theme="dark"] .main-tab:hover {
    color: #FF6600;
}

[data-theme="dark"] .main-tab.active {
    background: #FF6600;
    color: #fff;
}

/* Courses Sub Filters */
.courses-sub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sub-filter-btn {
    padding: 8px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-filter-btn:hover {
    border-color: #FF6600;
    color: #FF6600;
}

.sub-filter-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

[data-theme="dark"] .sub-filter-btn {
    background: #252525;
    border-color: #444;
    color: #aaa;
}

[data-theme="dark"] .sub-filter-btn:hover {
    border-color: #FF6600;
    color: #FF6600;
}

[data-theme="dark"] .sub-filter-btn.active {
    background: #fff;
    border-color: #fff;
    color: #1a1a1a;
}

/* Courses Results Info */
.courses-results-info {
    text-align: center;
    margin-bottom: 24px;
    color: #666;
    font-size: 14px;
}

[data-theme="dark"] .courses-results-info {
    color: #aaa;
}

/* No Courses Message */
.no-courses-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-courses-message svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-courses-message p {
    font-size: 16px;
}

/* Course Badge Gravado */
.course-badge.gravado {
    background: #6c5ce7;
    color: #fff;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Course Card Everest */
.course-card-everest {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card-everest:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .course-card-everest {
    background: #252525;
}

/* Course Image */
.course-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card-everest:hover .course-image {
    transform: scale(1.05);
}

/* Course Badge */
.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-badge.presencial {
    background: #FF6600;
    color: #fff;
}

.course-badge.online {
    background: #28a745;
    color: #fff;
}

/* Course Content */
.course-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-category {
    color: #FF6600;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

[data-theme="dark"] .course-title {
    color: #fff;
}

.course-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

[data-theme="dark"] .course-description {
    color: #aaa;
}

/* Course Meta */
.course-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .course-meta {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.course-teacher,
.course-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

[data-theme="dark"] .course-teacher,
[data-theme="dark"] .course-schedule {
    color: #aaa;
}

.course-teacher svg,
.course-schedule svg {
    color: #FF6600;
    flex-shrink: 0;
}

/* Course Footer */
.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.course-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .price-from {
    color: #777;
}

.price-value {
    color: #FF6600;
    font-size: 18px;
    font-weight: 700;
}

.course-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FF6600;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: #e65c00;
    color: #fff;
}

/* Courses Pagination */
.courses-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

/* Hidden course item */
.course-item.hidden {
    display: none !important;
}

/* Responsive Courses Grid */
@media screen and (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 767px) {
    .section.courses-page {
        padding-top: 130px;
        padding-bottom: 40px;
    }

    /* Hero Header Mobile */
    .courses-hero-header {
        margin-bottom: 24px;
    }

    .courses-page-title {
        font-size: 28px;
    }

    .courses-page-subtitle {
        font-size: 14px;
    }

    /* Filter Bar Mobile */
    .courses-filter-bar {
        padding: 14px;
        border-radius: 12px;
        gap: 12px;
        margin-bottom: 16px;
    }

    .courses-main-tabs {
        max-width: 100%;
        border-radius: 10px;
        padding: 4px;
    }

    .main-tab {
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .main-tab svg {
        width: 18px;
        height: 18px;
    }

    /* Sub Filters Responsive */
    .courses-sub-filters {
        flex-wrap: wrap;
        gap: 6px;
    }

    .sub-filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .courses-results-info {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .courses-filters {
        gap: 8px;
    }

    .course-image-wrap {
        height: 180px;
    }

    .course-content {
        padding: 20px;
    }

    .course-title {
        font-size: 18px;
    }

    .course-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .course-btn {
        width: 100%;
        text-align: center;
    }

    .courses-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media screen and (max-width: 479px) {
    .section.courses-page {
        padding-top: 124px;
        padding-bottom: 32px;
    }

    .courses-page-title {
        font-size: 24px;
    }

    .courses-page-subtitle {
        font-size: 13px;
    }

    .courses-filter-bar {
        padding: 10px;
        border-radius: 10px;
    }

    .course-meta {
        flex-direction: column;
    }

    /* Main Tabs - icons only */
    .main-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .main-tab span {
        display: none;
    }

    .main-tab svg {
        width: 22px;
        height: 22px;
    }

    .sub-filter-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
}

/* ========== NAVBAR DROPDOWN CURSOS ========== */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
    color: #FF6600;
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    padding: 28px;
    min-width: 680px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.nav-dropdown-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.nav-dropdown-title .badge {
    background: #FF6600;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-dropdown-title h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

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

.nav-dropdown-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 200px;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nav-dropdown-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 1;
}

.nav-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.nav-dropdown-item:hover .nav-dropdown-item-bg {
    transform: scale(1.1);
}

.nav-dropdown-item:hover::before {
    background: linear-gradient(to top, rgba(255, 102, 0, 0.9) 0%, rgba(255, 102, 0, 0.5) 50%, rgba(255, 102, 0, 0.2) 100%);
}

.nav-dropdown-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.nav-dropdown-icon {
    position: relative;
    z-index: 3;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    background: rgba(255, 255, 255, 0.3);
}

.nav-dropdown-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.nav-dropdown-item-title {
    position: relative;
    z-index: 3;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.nav-dropdown-item-desc {
    position: relative;
    z-index: 3;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    color: #fff;
}

/* Dark theme adjustments */
[data-theme="dark"] .nav-dropdown-menu {
    background: #1a1a1a;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .nav-dropdown-menu::before {
    border-bottom-color: #1a1a1a;
}

[data-theme="dark"] .nav-dropdown-title {
    border-bottom-color: #333;
}

[data-theme="dark"] .nav-dropdown-title h4 {
    color: #fff;
}

/* Mobile dropdown */
@media (max-width: 991px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        padding: 16px;
        margin-top: 8px;
        border-radius: 12px;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nav-dropdown-item {
        min-height: 120px;
        padding: 16px;
    }

    .nav-dropdown-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .nav-dropdown-icon svg {
        width: 20px;
        height: 20px;
    }

    .nav-dropdown-item-title {
        font-size: 16px;
    }

    .nav-dropdown-item-desc {
        font-size: 12px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        transform: none;
    }
}

/* ============================================
   CURSO CARDS V2 - Design Elegante
   ============================================ */

.curso-card-v2 {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 102, 0, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.curso-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6600, #ff8533, #FF6600);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.curso-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.25);
    border-color: rgba(255, 102, 0, 0.3);
}

.curso-card-v2:hover::before {
    opacity: 1;
}

/* Card Image Container */
.curso-card-v2-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.curso-card-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card-v2:hover .curso-card-v2-image img {
    transform: scale(1.08);
}

/* Badge de Status */
.curso-badge-v2 {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.curso-badge-v2.edital {
    background: linear-gradient(135deg, #FF6600 0%, #e65c00 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.curso-badge-v2.novo {
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.curso-badge-v2.emalta {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

/* Tag de Modalidade */
.curso-modalidade-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.curso-modalidade-tag.presencial {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

.curso-modalidade-tag.remoto {
    background: rgba(33, 150, 243, 0.9);
    color: #fff;
}

.curso-modalidade-tag.gravado {
    background: rgba(156, 39, 176, 0.9);
    color: #fff;
}

/* Card Body */
.curso-card-v2-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.curso-card-v2-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta Info */
.curso-card-v2-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.curso-card-v2-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.curso-card-v2-meta .meta-item svg {
    width: 16px;
    height: 16px;
    color: #FF6600;
    flex-shrink: 0;
}

/* Seção de Preço */
.curso-card-v2-price {
    margin-bottom: 20px;
    text-align: center;
    padding: 16px;
    background: rgba(255, 102, 0, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.15);
}

.curso-card-v2-price .price-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.curso-card-v2-price .price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.curso-card-v2-price .price-currency {
    font-size: 16px;
    font-weight: 600;
    color: #FF6600;
    margin-top: 4px;
}

.curso-card-v2-price .price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #FF6600;
    line-height: 1;
}

.curso-card-v2-price .price-cents {
    font-size: 16px;
    font-weight: 600;
    color: #FF6600;
    margin-top: 4px;
}

.curso-card-v2-price .price-installment {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Botões de Ação */
.curso-card-v2-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-whatsapp-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-whatsapp-card svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
}

.btn-whatsapp-card:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-vermais-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-grow: 1;
    height: 48px;
    background: linear-gradient(135deg, #FF6600 0%, #e65c00 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-vermais-card svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-vermais-card:hover {
    background: linear-gradient(135deg, #ff7a1a 0%, #FF6600 100%);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

.btn-vermais-card:hover svg {
    transform: translateX(4px);
}

/* Grid de Cards */
.cursos-grid-v2,
.cursos-alta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsivo */
@media (max-width: 991px) {
    .cursos-grid-v2,
    .cursos-alta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .curso-card-v2-image {
        height: 180px;
    }

    .curso-card-v2-title {
        font-size: 18px;
    }

    .curso-card-v2-price .price-amount {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .cursos-grid-v2,
    .cursos-alta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .curso-card-v2 {
        border-radius: 16px;
    }

    .curso-card-v2-body {
        padding: 20px;
    }

    .curso-card-v2-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .curso-card-v2-price {
        padding: 12px;
    }

    .curso-card-v2-price .price-amount {
        font-size: 28px;
    }

    .curso-card-v2-actions {
        flex-direction: row;
    }

    .btn-whatsapp-card {
        width: 48px;
        flex-shrink: 0;
    }

    .btn-vermais-card {
        flex-grow: 1;
    }
}

@media (max-width: 479px) {
    .curso-card-v2-body {
        padding: 16px;
    }

    .curso-card-v2-title {
        font-size: 17px;
    }

    .curso-card-v2-image {
        height: 160px;
    }

    .curso-card-v2-price .price-amount {
        font-size: 26px;
    }

    .curso-card-v2-meta .meta-item {
        font-size: 12px;
    }
}

/* ============================================================
   ============================================================
   DESIGN SYSTEM — REFINO VISUAL (sutil, mantém a identidade)
   Tokens consistentes de raio/sombra + tipografia, componentes
   e estados. Bloco isolado: pode ser removido sem afetar o resto.
   ============================================================
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
    /* Escala de raio coerente (antes: 5/6/8/10/12/16/18/20/30/50 soltos) */
    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 20px;
    --r-pill: 9999px;

    /* Escala de sombra suave e em camadas (substitui as antigas) */
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.04);
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06), 0 1px 2px rgba(16, 24, 40, 0.04);
    --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.08), 0 2px 4px -2px rgba(16, 24, 40, 0.05);
    --shadow-lg: 0 12px 22px -6px rgba(16, 24, 40, 0.12), 0 4px 8px -4px rgba(16, 24, 40, 0.06);
    --shadow-xl: 0 28px 48px -12px rgba(16, 24, 40, 0.18);
    --shadow-brand: 0 10px 26px -8px rgba(255, 102, 0, 0.45);

    /* Movimento padrão */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.22s;
}

/* Sombras mais densas no tema escuro */
[data-theme="dark"] {
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 10px -2px rgba(0, 0, 0, 0.6), 0 2px 4px -2px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 14px 26px -6px rgba(0, 0, 0, 0.65), 0 4px 10px -4px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 30px 52px -12px rgba(0, 0, 0, 0.7);
    --shadow-brand: 0 12px 30px -8px rgba(255, 102, 0, 0.5);
}

/* ---------- 2. GLOBAL / TIPOGRAFIA ---------- */
html {
    scroll-behavior: smooth;
}

/* Renderização de fonte mais nítida */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Seleção de texto com a cor da marca */
::selection {
    background: rgba(255, 102, 0, 0.18);
}

/* Âncoras internas não ficam escondidas sob o header fixo (120px) */
[id] {
    scroll-margin-top: 130px;
}

/* Hierarquia: títulos grandes mais "apertados", parágrafos mais respiráveis */
h1, .mega-h1 {
    letter-spacing: -0.02em;
    line-height: 1.08;
}
h2 {
    letter-spacing: -0.015em;
    line-height: 1.15;
}
h3 {
    letter-spacing: -0.01em;
    line-height: 1.2;
}
p, .paragraph, .paragraph-big, .text-medium {
    line-height: 1.65;
}

/* ---------- 3. BOTÕES ---------- */
.cta {
    border-radius: var(--r-sm) !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                background-color var(--dur) var(--ease) !important;
    will-change: transform;
}
.cta:not(.secondary) {
    box-shadow: var(--shadow-brand);
}
.cta:not(.secondary):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.cta.secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.cta:active {
    transform: translateY(0);
}

/* ---------- 4. CARDS ---------- */
.course-card,
.teacher-card,
.blog-card,
.step-tile,
.included-card,
.sales-card,
.category-card,
.curso-card-v2 {
    border-radius: var(--r-lg) !important;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                background-color var(--dur) var(--ease) !important;
}
.course-card:hover,
.teacher-card:hover,
.blog-card:hover,
.step-tile:hover,
.category-card:hover,
.curso-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ---------- 5. INPUTS ---------- */
input, textarea, select,
.w-input, .w-select {
    border-radius: var(--r-xs) !important;
    transition: border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease) !important;
}
input:focus, textarea:focus, select:focus,
.w-input:focus, .w-select:focus {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15) !important;
    outline: none;
}

/* ---------- 6. BADGES / PILLS ---------- */
.hero-badge-tag,
.section-badge {
    border-radius: var(--r-pill);
}

/* ---------- 7. FOCO ACESSÍVEL (teclado) ---------- */
a:focus-visible,
button:focus-visible,
.cta:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

/* Respeita usuários que pedem menos animação */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .cta,
    .course-card, .teacher-card, .blog-card,
    .step-tile, .category-card, .curso-card-v2 {
        transition: none !important;
    }
    .cta:hover,
    .course-card:hover, .teacher-card:hover, .blog-card:hover,
    .step-tile:hover, .category-card:hover, .curso-card-v2:hover {
        transform: none;
    }
}
/* ===================== FIM DO REFINO VISUAL ===================== */


/* =====================================================================
   HERO — REFINO SUTIL + TIPOGRAFIA INTER  (2026-06)
   Bloco isolado: pode ser removido por inteiro para reverter.
   ===================================================================== */

:root {
    --font-ui: 'Inter', 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Inter como fonte principal (corpo, títulos, navegação, botões) */
body,
h1, h2, h3, h4, h5, h6,
.mega-h1, .paragraph, .paragraph-big, .paragraph-small, .text-medium,
.cta, .w-button, .link-nav, .link-nav-mobile,
.hero-badge-tag, .social-proof-text, .section-badge {
    font-family: var(--font-ui) !important;
    font-feature-settings: "cv11", "ss01";
}

/* ---- Camada de contraste: garante texto branco legível sobre qualquer foto ---- */
.hero-swiper .swiper-slide .hero-block {
    position: relative;
}
.hero-swiper .swiper-slide .hero-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 12, 14, 0.80) 0%,
        rgba(10, 12, 14, 0.55) 32%,
        rgba(10, 12, 14, 0.18) 60%,
        rgba(10, 12, 14, 0.00) 100%
    );
    pointer-events: none;
    z-index: 0;
}
.hero-swiper .swiper-slide .hero-block .limit-790 {
    position: relative;
    z-index: 1;
}

/* ---- Título: Inter mais ajustado, fluido e elegante ---- */
.hero-swiper .hero-block .mega-h1 {
    font-size: clamp(2.3rem, 1.4rem + 2.6vw, 3.35rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.032em !important;
    line-height: 1.06 !important;
    text-wrap: balance;
}
.hero-swiper .hero-block .span-italic {
    font-style: italic !important;
    font-weight: 500 !important;
    color: var(--brand-primary, #FF6600) !important;
}

/* ---- Subtítulo: mais leve e respirável ---- */
.hero-swiper .hero-block .paragraph-big,
.hero-swiper .hero-block .home-subittle,
.hero-swiper .hero-block p {
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    line-height: 1.62 !important;
    letter-spacing: 0 !important;
    color: rgba(255, 255, 255, 0.84) !important;
    max-width: 33em;
}

/* ---- Badge: pílula de vidro escuro, discreta e premium ---- */
.hero-badge-tag.glass {
    background: rgba(12, 14, 16, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.20) !important;
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    backdrop-filter: blur(14px) saturate(120%);
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 9px 18px !important;
    gap: 9px !important;
    color: rgba(255, 255, 255, 0.95) !important;
}
.hero-badge-tag.glass svg {
    width: 14px !important;
    height: 14px !important;
    opacity: 0.95;
}
/* Variações: só o ícone e a borda ganham um leve tom — sem fundo berrante */
.hero-badge-tag.glass.hot {
    border-color: rgba(255, 140, 60, 0.42) !important;
}
.hero-badge-tag.glass.hot svg {
    color: var(--brand-primary, #FF6600) !important;
}
.hero-badge-tag.glass.new,
.hero-badge-tag.glass.success {
    border-color: rgba(117, 251, 146, 0.38) !important;
}
.hero-badge-tag.glass.new svg,
.hero-badge-tag.glass.success svg {
    color: #75fb92 !important;
}

/* ---- Menu e topbar na MESMA largura dos slides (full-bleed) ---- */
.navbar-three-columns,
.topbar-container {
    max-width: none !important;
    padding-left: clamp(20px, 4vw, 80px) !important;
    padding-right: clamp(20px, 4vw, 80px) !important;
}

/* ---- Botão primário: sombra mais suave, toque mais confortável ---- */
.hero-swiper .hero-block .cta:not(.secondary) {
    box-shadow: 0 6px 18px -7px rgba(255, 102, 0, 0.55) !important;
    padding: 14px 30px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}
.hero-swiper .hero-block .cta.secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* ---- Prova social: um pouco mais discreta ---- */
.avatar-circle {
    border-width: 2px !important;
}
.social-proof-text {
    font-size: 14px !important;
    opacity: 0.82 !important;
}

/* ---- Navegação/paginação do slider: menos peso visual ---- */
.hero-nav-btn {
    background: rgba(255, 255, 255, 0.10) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
}

/* ---- Garante clique nos botões/links do hero (sem cursor de arraste) ---- */
.hero-swiper .swiper-slide,
.hero-swiper .hero-block {
    cursor: default !important;
}
.hero-swiper .hero-block a,
.hero-swiper .hero-block .cta,
.hero-swiper .hero-block .w-button {
    cursor: pointer !important;
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
}

/* ---- Botões flutuantes (WhatsApp + carrinho) só aparecem após a hero ----
   Em páginas SEM hero, o everest-app.js adiciona body.past-hero no load. */
.whatsapp-float,
.cart-master,
.ev-cart-float {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.35s var(--ease, ease),
                transform 0.35s var(--ease, ease),
                visibility 0.35s var(--ease, ease);
}
body.past-hero .whatsapp-float,
body.past-hero .cart-master,
body.past-hero .ev-cart-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* ---- Carrinho flutuante (contador de itens) ---- */
.ev-cart-float {
    position: fixed;
    bottom: 170px;          /* acima do WhatsApp (100px + 56px + folga) */
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border-color, #e4e4e4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary, #1a1a1a);
    box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.15));
    z-index: 999;
    text-decoration: none;
}

.ev-cart-float:hover {
    transform: scale(1.08);
    color: var(--brand-primary, #FF6600);
}

.ev-cart-float svg {
    width: 24px;
    height: 24px;
}

.ev-cart-float .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--brand-primary, #FF6600);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    border-radius: 11px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
    .ev-cart-float {
        bottom: 86px;       /* acima do WhatsApp mobile (24px + 50px + folga) */
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .ev-cart-float svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 479px) {
    .ev-cart-float {
        bottom: 78px;
        right: 12px;
        width: 46px;
        height: 46px;
    }
}

/* ---- Marquee de benefícios: efeito vidro + linhas divisórias ---- */
.benefits-marquee {
    background: rgba(255, 255, 255, 0.55) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    backdrop-filter: blur(12px) saturate(120%);
    border-top: 1px solid rgba(16, 24, 40, 0.10);
    border-bottom: 1px solid rgba(16, 24, 40, 0.10);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
[data-theme="dark"] .benefits-marquee {
    background: rgba(18, 20, 22, 0.45) !important;
    border-top-color: rgba(255, 255, 255, 0.10);
    border-bottom-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

/* =====================================================================
   ROADMAP — EXECUÇÃO DE MELHORIAS (acessibilidade + mobile)  (2026-06)
   Bloco isolado: pode ser removido por inteiro para reverter.
   ===================================================================== */

:root {
    /* Laranja com contraste AA (texto branco ≈ 4,9:1). #FF6600 segue em ícones/detalhes. */
    --btn-accessible: #C24A00;
    --btn-accessible-hover: #A83F00;
}

/* ---- A1: contraste dos botões laranja (texto branco) ---- */
.cta:not(.secondary),
.hero-swiper .hero-block .cta:not(.secondary),
.btn-add-cart,
.btn-vermais-card {
    background-color: var(--btn-accessible) !important;
    color: #fff !important;
}
.cta:not(.secondary):hover,
.hero-swiper .hero-block .cta:not(.secondary):hover,
.btn-add-cart:hover,
.btn-vermais-card:hover {
    background-color: var(--btn-accessible-hover) !important;
}
/* Mantém o anel/realce de marca onde é só detalhe (não-texto) */
.span-italic,
.hero-swiper .hero-block .span-italic { color: #FF6600 !important; }

/* ---- C1: Inter também nos botões que ainda usavam outra fonte ---- */
.btn-add-cart,
.btn-vermais-card,
.btn-whatsapp-card,
.curso-badge-v2,
.curso-modalidade-tag {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
}

/* ---- A7 / D3: alvos de toque ≥ 44px ---- */
/* Bullets do slider: expande a área clicável sem mudar o tamanho visual */
.hero-pagination .swiper-pagination-bullet { position: relative; }
.hero-pagination .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    inset: -16px;
}
/* Carrinho com 44px de área de toque (fica no navbar de 80px, sem conflito) */
.nav-cart {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* A busca fica na topbar slim (36–40px): mantém o botão dentro da faixa,
   alinhado à altura do input, sem estourar */
.topbar-search { align-items: stretch; }
.topbar-search-btn {
    min-height: 0;
    align-self: stretch;
}

/* ---- A4: marquee respeita prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none !important; }
}

/* ---- D2: altura da hero usando dvh (evita "pulo" das barras do mobile) ---- */
.hero-swiper .swiper-slide .hero-block {
    height: calc(100dvh - 120px) !important;
}

/* ---- D1 / D2 / D6: ajustes mobile da hero e do marquee ---- */
@media (max-width: 767px) {
    /* Scrim VERTICAL: garante contraste atrás do texto que fica na base no mobile */
    .hero-swiper .swiper-slide .hero-block::before {
        background: linear-gradient(
            to top,
            rgba(10, 12, 14, 0.86) 0%,
            rgba(10, 12, 14, 0.55) 38%,
            rgba(10, 12, 14, 0.18) 70%,
            rgba(10, 12, 14, 0.00) 100%
        ) !important;
    }
    /* Altura estável + foto enquadrando melhor o rosto */
    .hero-swiper .swiper-slide .hero-block {
        height: 82svh !important;
        background-position: center top !important;
    }
    /* Blur mais leve no marquee (aparelhos fracos) */
    .benefits-marquee {
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
    }
}

/* ---- Rodapé mobile: refino (alvos de toque, separadores, alinhamento) ---- */
@media (max-width: 767px) {
    /* Separadores sutis entre as seções empilhadas → mais escaneável */
    .grid-footer > div + div {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 28px;
    }

    /* Marca centralizada (logo + descrição + redes) */
    .footer-main { text-align: center; }

    /* Redes sociais com alvo de toque de 44px */
    .footer .social-link {
        width: 44px !important;
        height: 44px !important;
        border-radius: 12px;
    }

    /* Navegação alinhada à esquerda (mais legível que centralizado) */
    .footer-column { text-align: left !important; }
    .footer-column .footer-title { text-align: left; }
    .footer-column .footer-title::after { left: 0 !important; transform: none !important; }
    .footer-grid {
        gap: 8px 24px !important;
    }
    .footer-link {
        text-align: left !important;
        padding: 11px 8px !important;
        border-radius: 8px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    .footer-link:hover,
    .footer-link:active {
        padding-left: 8px !important;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Bloco "Fale Conosco" à esquerda e legível */
    .footer-contact { text-align: left; }
    .footer-contact .footer-title { text-align: left; }
    .footer-contact .footer-title::after { left: 0 !important; transform: none !important; }
    .footer-contact .contact-list-item { align-items: flex-start; }
    .footer-contact .contact-list-icon { margin-top: 2px; }
    .footer-contact .paragraph-small { line-height: 1.5; }

    /* Newsletter com botão de toque confortável */
    .cta.subscribe { min-height: 48px; }

    /* Copyright com mais respiro */
    .copyright-wrap p { line-height: 1.6; padding: 0 8px; }
}

/* ---- Hero mobile: organização (topbar enxuta, paginação, ritmo) ---- */
/* Paginação numerada na fonte do site (era Plus Jakarta) */
.hero-swiper .hero-pagination .swiper-pagination-bullet {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
}

@media (max-width: 767px) {
    /* Topbar mobile: HORÁRIO à esquerda + BUSCA compacta à direita */
    .topbar-left { display: none !important; }   /* redes ficam no rodapé + WhatsApp flutuante */
    .topbar-center {
        display: flex !important;
        flex: 1 1 auto;
        min-width: 0;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        overflow: hidden;
    }
    .topbar-center span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .topbar-center svg { flex-shrink: 0; width: 13px; height: 13px; }
    .topbar-right { flex: 0 0 auto !important; width: auto !important; }
    .topbar-search { max-width: 140px !important; width: auto !important; }
    .topbar-search-input {
        width: 80px !important;
        min-width: 0 !important;
        font-size: 11px !important;
        padding: 6px 10px !important;
    }

    /* Respiro entre o CTA e a paginação numerada (não cola mais no botão) */
    .hero-swiper .swiper-slide .hero-block { padding-bottom: 92px !important; }
    .hero-swiper .hero-pagination {
        bottom: 22px !important;
        left: 24px !important;
    }
    .hero-swiper .hero-pagination .swiper-pagination-bullet {
        width: 42px !important;
        height: 42px !important;
        font-size: 13px !important;
        margin: 0 5px !important;
    }

    /* Ritmo vertical do conteúdo da hero */
    .hero-swiper .hero-block .hero-badge-wrap { margin-bottom: 14px; }
    .hero-swiper .hero-block .mega-h1 { margin-bottom: 2px; }
    .hero-swiper .hero-block .home-subittle { margin-top: 12px; }
    .hero-swiper .hero-block .student-button-wrap { margin-top: 22px; }
}

@media (max-width: 479px) {
    .hero-swiper .swiper-slide .hero-block { padding-bottom: 96px !important; }
    .hero-swiper .hero-pagination .swiper-pagination-bullet {
        width: 38px !important;
        height: 38px !important;
        font-size: 12px !important;
        margin: 0 4px !important;
    }
}

/* ---- Hero mobile: prova social (avatares + depoimento) alinhada e com ritmo ---- */
@media (max-width: 767px) {
    /* Bloco de prova social alinhado à esquerda, igual ao resto do conteúdo */
    .hero-swiper .hero-block .hero-social-proof {
        margin-top: 18px;
        gap: 12px;
        justify-content: flex-start;
    }
    .hero-swiper .hero-block .student-wrap {
        margin-top: 16px;
        align-items: flex-start;
        gap: 8px;
    }
    .hero-swiper .hero-block .student-group-wrap { justify-content: flex-start; }
    .hero-swiper .hero-block .student-wrap .paragraph-small {
        font-size: 13px;
        text-align: left;
    }

    /* Respiro extra: a paginação não encosta na prova social */
    .hero-swiper .swiper-slide .hero-block { padding-bottom: 104px !important; }
    .hero-swiper .hero-pagination { bottom: 26px !important; }
}
/* Telas bem pequenas: padding menor para não empurrar o topo do conteúdo */
@media (max-width: 479px) {
    .hero-swiper .swiper-slide .hero-block { padding-bottom: 84px !important; }
    .hero-swiper .hero-pagination { bottom: 20px !important; }
}

/* ---- Hero mobile: par de botões (primário + secundário) coeso ---- */
@media (max-width: 767px) {
    /* Os dois CTAs empilhados como um par, com espaçamento uniforme */
    .hero-swiper .hero-block .student-button-wrap { gap: 10px; }
    .hero-swiper .hero-block .student-button-wrap .cta {
        margin: 0 !important;          /* o gap controla o espaçamento */
        padding: 15px 24px !important; /* mesma altura nos dois botões */
    }
    /* Secundário mais leve para o primário liderar (hierarquia) */
    .hero-swiper .hero-block .cta.secondary {
        border-width: 1.5px !important;
        border-color: rgba(255, 255, 255, 0.45) !important;
        font-weight: 500 !important;
    }
}

/* Topbar em telas bem pequenas: horário inteiro + busca ainda menor */
@media (max-width: 479px) {
    .topbar-center { font-size: 10.5px; gap: 4px; }
    .topbar-search { max-width: 104px !important; }
    .topbar-search-input { width: 48px !important; padding: 6px 8px !important; }
}

/* ---- Sincroniza topbar + navbar no mobile (elimina a faixa/gap entre eles) ---- */
@media (max-width: 767px) {
    .topbar { height: 40px !important; box-sizing: border-box; }
    .navbar { top: 40px !important; }                 /* = altura da topbar, sem gap */
    .section.hero-home { padding-top: 96px !important; } /* 40 (topbar) + 56 (navbar) */
}

/* ---- Páginas internas: heros e títulos com o mesmo padrão da home ---- */
.blog-hero-title,
.contato-hero-title {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
    font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.08 !important;
    text-wrap: balance;
}
.blog-hero-subtitle,
.contato-hero-subtitle {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem) !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}
.blog-hero-badge,
.contato-hero-badge {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
}
/* Cabeçalhos das listagens (cursos / professores) na fonte do site */
.courses-hero-header,
.courses-hero-header *,
.teachers-hero-header,
.teachers-hero-header *,
.sobre-hero-content,
.sobre-hero-content * {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
}

/* ---- Barra de filtros de cursos: estrutura, mobile e acessibilidade ---- */
.main-tab,
.sub-filter-btn {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
}
/* Alvo de toque maior nos sub-filtros */
.sub-filter-btn {
    padding: 10px 18px;
    min-height: 40px;
}
.main-tab:focus-visible,
.sub-filter-btn:focus-visible {
    outline: 2px solid var(--brand-primary, #FF6600);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .courses-filter-bar { padding: 14px; gap: 14px; }

    /* Modalidade: ícone sobre o texto → 3 colunas equilibradas que cabem na largura */
    .courses-main-tabs { padding: 4px; gap: 4px; }
    .main-tab {
        flex-direction: column;
        gap: 5px;
        padding: 10px 6px;
        font-size: 12px;
        min-height: 60px;
        line-height: 1.1;
    }
    .main-tab svg { width: 20px; height: 20px; }

    /* Tipo de curso: chips com espaçamento equilibrado e bom toque */
    .courses-sub-filters {
        gap: 8px;
        justify-content: center;
    }
    .sub-filter-btn {
        padding: 9px 15px;
        font-size: 12.5px;
        min-height: 40px;
    }
}

/* ---- Página de Professores: refino (a11y, título, filtros, CTA) ---- */
/* Título fluido, alinhado aos demais heros internos */
.teachers-page-title {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
    font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
}
/* Filtros: fonte do site + foco visível */
.filter-btn { font-family: var(--font-ui, 'Inter', sans-serif) !important; }
.filter-btn:focus-visible {
    outline: 2px solid var(--brand-primary, #FF6600);
    outline-offset: 2px;
}
/* Contraste AA no modo claro: rótulo da disciplina e link "Ver cursos" */
.teacher-content .subtext { color: var(--btn-accessible, #C24A00); }
.link-teacher-card { color: var(--btn-accessible, #C24A00) !important; }
[data-theme="dark"] .teacher-content .subtext { color: #FF6600; }
[data-theme="dark"] .link-teacher-card { color: #FF6600 !important; }

/* Mobile: chips de filtro com toque confortável */
@media (max-width: 767px) {
    .teachers-filter-bar { gap: 8px; }
    .filter-btn {
        padding: 9px 15px !important;
        font-size: 12.5px !important;
        min-height: 40px;
    }
}
@media (max-width: 479px) {
    .filter-btn {
        padding: 8px 13px !important;
        font-size: 12px !important;
    }
}

/* ---- Consistência final do projeto: raio de card unificado (16px) ---- */
.course-card,
.teacher-card,
.teachers-card,
.blog-card,
.featured-card,
.step-tile,
.included-card,
.sales-card,
.category-card,
.curso-card-v2,
.info-card,
.mission-card,
.stat-card,
.timeline-content,
.faq-item {
    border-radius: 16px !important;
}

/* ---- Consistência final: títulos de seção internos em Inter fluido ---- */
.timeline-header h2,
.estrutura-header h2,
.mission-header h2,
.faq-header h2,
.map-header h2,
.cta-content h2 {
    font-family: var(--font-ui, 'Inter', sans-serif) !important;
    font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.4rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.15 !important;
}

/* ===================== FIM ROADMAP EXECUÇÃO ===================== */

/* ===================== FIM HERO REFINO SUTIL ===================== */

/* ============================================================
   HERO — ESTRUTURA "MONOLITH" (navegacao numerada + entrada)
   Conteudo a esquerda (sem grid direito). Fundo nitido mantido.
   ============================================================ */

/* --- Navegacao numerada 01-04 (substitui os dots) --- */
.hero-swiper .hero-pagination .swiper-pagination-bullet {
    width: 46px;
    height: 46px;
    margin: 0 6px !important;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-family: 'Plus Jakarta', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.25s var(--ease, ease),
                border-color 0.25s var(--ease, ease),
                transform 0.25s var(--ease, ease);
}

.hero-swiper .hero-pagination .swiper-pagination-bullet:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-swiper .hero-pagination .swiper-pagination-bullet-active {
    background: var(--brand-primary, #FF6600);
    border-color: var(--brand-primary, #FF6600);
    color: #fff;
}

/* --- Animacao de entrada escalonada (por slide ativo) --- */
@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Estado inicial oculto SO quando o Swiper inicializa (fallback seguro) */
.hero-swiper.swiper-initialized .swiper-slide .limit-790 .hero-badge-wrap,
.hero-swiper.swiper-initialized .swiper-slide .limit-790 .mega-h1,
.hero-swiper.swiper-initialized .swiper-slide .limit-790 .home-subittle,
.hero-swiper.swiper-initialized .swiper-slide .limit-790 .hero-social-proof,
.hero-swiper.swiper-initialized .swiper-slide .limit-790 .student-button-wrap {
    opacity: 0;
}

.hero-swiper .swiper-slide-active .limit-790 .hero-badge-wrap {
    animation: heroContentIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.10s forwards;
}
.hero-swiper .swiper-slide-active .limit-790 .mega-h1 {
    animation: heroContentIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) 0.22s forwards;
}
.hero-swiper .swiper-slide-active .limit-790 .home-subittle {
    animation: heroContentIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.36s forwards;
}
.hero-swiper .swiper-slide-active .limit-790 .hero-social-proof {
    animation: heroContentIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.48s forwards;
}
.hero-swiper .swiper-slide-active .limit-790 .student-button-wrap {
    animation: heroContentIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.56s forwards;
}

/* Acessibilidade: sem movimento se o usuario pedir */
@media (prefers-reduced-motion: reduce) {
    .hero-swiper.swiper-initialized .swiper-slide .limit-790 .hero-badge-wrap,
    .hero-swiper.swiper-initialized .swiper-slide .limit-790 .mega-h1,
    .hero-swiper.swiper-initialized .swiper-slide .limit-790 .home-subittle,
    .hero-swiper.swiper-initialized .swiper-slide .limit-790 .hero-social-proof,
    .hero-swiper.swiper-initialized .swiper-slide .limit-790 .student-button-wrap {
        opacity: 1;
        animation: none;
        transform: none;
    }
}
/* ===================== FIM HERO MONOLITH ===================== */

/* ============================================================
   FUNCOES DO SITE — carrinho / toast / busca (everest-app.js)
   ============================================================ */

/* Botao "Adicionar ao carrinho" (injetado nos cards de curso) */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 11px 16px;
    background: var(--brand-primary, #FF6600);
    color: #fff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Plus Jakarta', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-add-cart:hover {
    background: var(--brand-primary-hover, #ff8533);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.15));
}
.btn-add-cart svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Toast de feedback */
.ev-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-family: 'Plus Jakarta', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    max-width: 90vw;
    text-align: center;
}
.ev-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Banner de resultado de busca (cursos) */
.busca-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--bg-secondary, #f8f9fa);
    border: 1px solid var(--border-color, #e4e4e4);
    font-size: 14px;
    color: var(--text-secondary, #4a4a4a);
}
.busca-banner a {
    color: var(--brand-primary, #FF6600);
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

/* ============================================
   HERO MOBILE — imagens verticais (9:16) por slide
   Sobrescreve o background inline so no mobile.
   Gradiente vertical: escuro embaixo (onde fica o texto).
   ============================================ */
@media (max-width: 767px) {
    /* Slide 1 — arte mobile dedicada (feita manualmente) */
    .hero-swiper .swiper-slide:nth-child(1) .hero-block {
        background-image:
            linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 22%, rgba(0,0,0,0) 45%),
            url('../images/hero-slide-1-mobile.jpg') !important;
        background-position: center top !important;
        background-size: cover !important;
    }
    /* Gradiente vertical comum aos slides 2-4 + cobertura */
    .hero-swiper .swiper-slide:nth-child(2) .hero-block,
    .hero-swiper .swiper-slide:nth-child(3) .hero-block,
    .hero-swiper .swiper-slide:nth-child(4) .hero-block {
        background-position: center top !important;
        background-size: cover !important;
    }
    .hero-swiper .swiper-slide:nth-child(2) .hero-block {
        background-image:
            linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.88) 24%, rgba(0,0,0,0.5) 46%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0) 100%),
            url('../images/hero-slide-2-mobile.jpg') !important;
    }
    .hero-swiper .swiper-slide:nth-child(3) .hero-block {
        background-image:
            linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.88) 24%, rgba(0,0,0,0.5) 46%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0) 100%),
            url('../images/hero-slide-3-mobile.jpg') !important;
    }
    .hero-swiper .swiper-slide:nth-child(4) .hero-block {
        background-image:
            linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.88) 24%, rgba(0,0,0,0.5) 46%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0) 100%),
            url('../images/hero-slide-4-mobile.jpg') !important;
    }
}
