:root {
    --fyzap-blue: #004aad;
    --fyzap-orange: #ff9100;
    --fyzap-dark: #002d5a;
    --fyzap-light: #f8f9fa;
    --fyzap-gradient: linear-gradient(135deg, #004aad 0%, #ff9100 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: var(--fyzap-light);
}

.text-primary {
    color: var(--fyzap-blue) !important;
}

.text-orange {
    color: var(--fyzap-orange) !important;
}

.bg-primary {
    background-color: var(--fyzap-blue) !important;
}

.bg-dark-fyzap {
    background-color: var(--fyzap-dark) !important;
}

.btn-primary {
    background-color: var(--fyzap-blue);
    border-color: var(--fyzap-blue);
}

.btn-primary:hover {
    background-color: var(--fyzap-dark);
    border-color: var(--fyzap-dark);
}

.btn-orange {
    background-color: var(--fyzap-orange);
    border-color: var(--fyzap-orange);
    color: white;
}

.btn-orange:hover {
    background-color: #e68200;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 45, 90, 0.85), rgba(0, 74, 173, 0.7)), url('../img/escola1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 210px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0) 0%, rgba(248, 249, 250, 0.65) 50%, var(--fyzap-light) 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
    background: var(--fyzap-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Padding */
section {
    padding: 100px 0;
}

/* Course Cards */
.course-roadmap-section {
    position: relative;
    overflow: hidden;
}

.course-roadmap-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 74, 173, 0.08) 0%, transparent 22%),
        radial-gradient(circle at 88% 14%, rgba(255, 145, 0, 0.08) 0%, transparent 18%);
    pointer-events: none;
}

.course-section-heading {
    position: relative;
    z-index: 1;
}

.course-journey-bar {
    margin: 28px auto 0;
    max-width: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.journey-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--fyzap-blue);
    border: 1px solid rgba(0, 74, 173, 0.12);
    box-shadow: 0 10px 24px rgba(0, 74, 173, 0.08);
    animation: journeyPulse 3.2s ease-in-out infinite;
}

.journey-line {
    flex: 1;
    max-width: 120px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 74, 173, 0.15), rgba(0, 74, 173, 0.5), rgba(255, 145, 0, 0.75));
    background-size: 200% 100%;
    animation: trailFlow 3s linear infinite;
}

.journey-node-target {
    background: linear-gradient(135deg, #ff9100 0%, #ff6d00 100%);
    color: #fff;
    font-weight: 800;
    border: none;
    box-shadow: 0 14px 32px rgba(255, 145, 0, 0.28);
}

.course-card {
    border: none;
    transition: all 0.3s ease;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: 0 18px 36px rgba(0, 74, 173, 0.07);
    position: relative;
}

.course-highlight {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 999px;
    padding: 14px 18px;
    box-shadow: 0 12px 30px rgba(0, 74, 173, 0.06);
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 74, 173, 0.12);
    border-color: rgba(0, 74, 173, 0.16);
}

.course-img-wrapper {
    width: 290px;
    min-width: 290px;
    overflow: hidden;
    position: relative;
    background-color: var(--fyzap-dark);
}

.course-row-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px;
}

.course-row-copy {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.course-row-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.course-row-action {
    width: 230px;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-left: 24px;
    border-left: 1px solid rgba(0, 74, 173, 0.08);
    position: relative;
    z-index: 1;
}

.course-row-note {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.course-card .card-title {
    font-size: 1.5rem;
}

.course-card .card-text {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 760px;
}

.course-row-track {
    position: absolute;
    left: 268px;
    right: 42px;
    top: 22px;
    height: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.course-track-line {
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 74, 173, 0.12), rgba(0, 74, 173, 0.48), rgba(255, 145, 0, 0.72));
    background-size: 220% 100%;
    animation: trailFlow 3.2s linear infinite;
}

.course-track-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #004aad;
    box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.24);
}

.course-track-dot-start {
    animation: trackDotPulse 2.4s ease-in-out infinite;
}

.course-track-dot-mid {
    background: #ff9100;
    animation: trackDotTravel 2.8s ease-in-out infinite;
}

.course-track-target {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9100 0%, #ff6d00 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(255, 145, 0, 0.24);
    animation: journeyPulse 2.8s ease-in-out infinite;
}

.course-badge-new {
    background: rgba(255, 145, 0, 0.95);
    color: #111;
    font-weight: 700;
}

.course-badge-price {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-weight: 700;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.course-feature {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 74, 173, 0.06);
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 45, 90, 0.4));
    pointer-events: none;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.6s ease;
}

.course-card:hover img {
    transform: scale(1.1);
}

@keyframes trailFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes journeyPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.06);
    }
}

@keyframes trackDotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.22);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 74, 173, 0);
        transform: scale(1.1);
    }
}

@keyframes trackDotTravel {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(14px);
        opacity: 1;
    }
}

/* About Section */
.about-img {
    border-radius: 30px;
    box-shadow: 25px 25px 0px var(--fyzap-orange);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: translate(-10px, -10px);
    box-shadow: 35px 35px 0px var(--fyzap-blue);
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.hero-carousel .carousel-inner {
    aspect-ratio: 3 / 2; /* Proporção mais alta para imagens maiores */
    background: #000;
}

.hero-carousel .carousel-item,
.hero-carousel img {
    height: 100%;
}

.hero-carousel img {
    object-fit: cover; /* Preenche todo o espaço do banner */
    object-position: center 10%; /* Foca no topo para não cortar cabeças nas fotos */
    transform: scale(1.02); /* Ajuste sutil para eliminar bordas brancas */
}

.lp-hero {
    background: linear-gradient(rgba(0, 45, 90, 0.9), rgba(0, 74, 173, 0.75));
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

.lp-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.lp-price-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 18px 18px;
    backdrop-filter: blur(10px);
    max-width: 420px;
}

.lp-price-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

/* Modern Header / Navbar - ULTRA COMPACT */
.fyzap-header {
    background: #002d5a !important; /* Cor sólida para evitar problemas de transparência */
    padding: 5px 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 60px !important;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.fyzap-logo-img {
    height: 35px !important; /* Altura pequena e fixa */
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
    display: block;
}

.fyzap-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.fyzap-brand-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.fyzap-brand-tag {
    font-size: 0.6rem;
    color: #ff9100;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.fyzap-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 5px 12px !important;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.fyzap-nav-link:hover, .fyzap-nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.fyzap-logout-btn {
    background: #ff9100;
    color: white !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.2s;
}

/* Header principal do site (público) - Versão Refinada */
.navbar-main {
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.94) 0%, rgba(0, 45, 90, 0.88) 55%, rgba(7, 62, 117, 0.85) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 9, 24, 0.18);
}

.navbar-main.scrolled {
    padding: 12px 0;
    background: linear-gradient(135deg, rgba(0, 24, 52, 0.97) 0%, rgba(0, 37, 78, 0.96) 100%);
    box-shadow: 0 18px 45px rgba(0, 8, 20, 0.3);
}

.navbar-main-container {
    gap: 24px;
}

.navbar-brand-main {
    position: relative;
    z-index: 2;
}

.navbar-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.navbar-brand-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.navbar-brand-subtitle small {
    font-size: 0.65rem;
    color: #ffb347;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.navbar-brand-accent {
    height: 2px;
    width: 12px;
    background: linear-gradient(90deg, #ff9100, #ffd166);
    display: inline-block;
    border-radius: 999px;
}

.navbar-main-collapse {
    align-items: center;
    gap: 18px;
}

.navbar-menu-shell {
    display: flex;
    align-items: center;
}

.navbar-main-links {
    gap: 4px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-main-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 10px 16px !important;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-main-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9100, #ffb700);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-main-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-main-link:hover::after {
    width: 25px;
}

.nav-main-link.is-active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-main-link.is-active::after {
    width: 25px;
}

.btn-portal-aluno {
    background: rgba(255, 255, 255, 0.06);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 11px 18px !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-portal-aluno:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta-main {
    background: linear-gradient(135deg, #ff9100 0%, #ff6d00 100%);
    color: white !important;
    border-radius: 999px;
    padding: 12px 22px !important;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 24px rgba(255, 145, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 145, 0, 0.5);
    filter: brightness(1.1);
}

.navbar-brand-main img {
    height: 42px !important;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 74, 173, 0.3));
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-main-collapse {
        display: flex !important;
        justify-content: flex-end;
    }

    .navbar-menu-shell {
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
}

/* Ajustes para Mobile no Header - Reforçado */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #002d5a !important;
        margin-top: 15px !important;
        padding: 25px !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.5) !important;
        max-height: 80vh !important; /* Limitar altura do menu */
        overflow-y: auto !important; /* Permitir scroll interno se necessário */
    }

    .navbar-main {
        padding: 15px 0 !important;
        position: fixed !important; /* Garantir que fique no topo */
        width: 100% !important;
    }

    .navbar-main-collapse {
        gap: 18px !important;
    }

    .navbar-menu-shell {
        width: 100% !important;
    }

    .navbar-nav {
        gap: 15px !important; /* Espaçamento real entre botões */
    }

    .nav-main-link {
        padding: 15px 20px !important; /* Aumentar altura dos botões */
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    .nav-main-link::after {
        bottom: 10px;
    }

    .navbar-actions {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .btn-portal-aluno {
        justify-content: center !important;
        width: 100% !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }

    .btn-cta-main {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }

    /* Garantir que o ícone de fechar funcione e seja visível */
    .navbar-toggler {
        z-index: 1001 !important;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        content: '\f00d' !important; /* Ícone de X do FontAwesome */
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
        color: white !important;
        font-size: 24px !important;
    }
}

.lp-price-label {
    opacity: 0.85;
    font-weight: 700;
}

.lp-price-value {
    font-size: 1.2rem;
}

.lp-price-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 12px 0;
}

.lp-mini {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.lp-mini-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 10px 14px;
}

.lp-benefit {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.08);
    border: 1px solid rgba(0, 74, 173, 0.05);
}

.lp-benefit-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 74, 173, 0.1);
    color: var(--fyzap-blue);
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.lp-checks {
    display: grid;
    gap: 10px;
}

.lp-steps {
    display: grid;
    gap: 14px;
}

.lp-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-step-num {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 145, 0, 0.95);
    color: #111;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.lp-cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.lp-cta-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-cta-line:last-child {
    border-bottom: none;
}

/* Footer Styling */
footer {
    background-color: var(--fyzap-dark) !important;
}

footer a:hover, .hover-orange:hover {
    color: var(--fyzap-orange) !important;
    transition: color 0.3s ease;
}

/* Contact Form Customization */
.contact-container {
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 74, 173, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 74, 173, 0.05);
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--fyzap-dark) 0%, var(--fyzap-blue) 100%);
    padding: 60px 40px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-panel {
    padding: 60px;
}

.form-floating > .form-control:focus, 
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--fyzap-blue);
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

.input-group-text {
    background: transparent;
    border: 2px solid #eee;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: var(--fyzap-blue);
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-contact a:hover {
    background: var(--fyzap-orange);
    transform: translateY(-5px);
}

.bg-orange {
    background-color: var(--fyzap-orange) !important;
}

/* Fyzap Online Section */
.online-visual-container {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    background: var(--fyzap-orange);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid rgba(255, 255, 255, 0.2);
    animation: pulse-orange 2s infinite;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    font-weight: 600;
    text-uppercase: uppercase;
}

.map-bg-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse-orange {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 145, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 145, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 145, 0, 0); }
}

@media (max-width: 991px) {
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
        top: 0;
        right: 0;
    }
    .experience-badge .number { font-size: 2rem; }
}

/* Online Incentive Section (Premium & Clean) */
.ead-incentive-section {
    background: #fdfdfd;
    padding: 100px 0;
}

.ead-card-premium {
    background: #ffffff;
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 45, 90, 0.05);
    border: 1px solid rgba(0, 74, 173, 0.03);
}

.ead-image-stack {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ead-img-1 {
    width: 85%;
    border-radius: 24px;
    box-shadow: 0 50px 80px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
    border: 8px solid white;
}

.ead-img-2 {
    width: 75%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 74, 173, 0.1);
    position: absolute;
    bottom: -30px;
    right: -20px;
    z-index: 1;
    border: 8px solid white;
}

.floating-feature {
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    position: absolute;
    z-index: 3;
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-1 { top: 10%; right: -10px; animation: floating 4s ease-in-out infinite; }
.feature-2 { bottom: 20%; left: -30px; animation: floating 4s ease-in-out infinite 2s; }

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

.ead-card-premium h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.text-highlight-ead {
    color: var(--fyzap-blue);
    position: relative;
    display: inline-block;
}

.text-highlight-ead::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 145, 0, 0.15);
    z-index: -1;
}

.benefit-item {
    background: #f8faff;
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 74, 173, 0.05);
}

.benefit-item:hover {
    background: white;
    border-color: var(--fyzap-blue);
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.08);
    transform: translateY(-5px);
}
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 74, 173, 0.08);
    border: 1px solid rgba(0, 74, 173, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--fyzap-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.business-form-container {
    background: linear-gradient(135deg, #001d3d 0%, #004aad 100%);
    border-radius: 30px;
    padding: 50px;
    color: white;
}

.business-info-side {
    background: linear-gradient(135deg, #001d3d 0%, #004aad 100%);
    display: flex;
    flex-direction: column;
}

.login-prompt-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.business-form-container-full {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.step-card-light {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    height: 100%;
}

.step-card-light:hover {
    transform: translateY(-10px);
}

.step-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto;
}

.business-form-container .form-control,
.business-form-container .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.business-form-container .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fyzap-orange);
}

.business-form-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Infraestrutura Section Modernizada */
.infra-section {
    background-color: #fff;
    position: relative;
}

.infra-gallery-wrapper {
    position: relative;
    z-index: 2;
}

.infra-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.infra-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.infra-img-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.infra-img-card:hover img {
    transform: scale(1.1);
}

.infra-img-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 74, 173, 0.9);
    color: white;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.infra-feature-item {
    transition: all 0.3s ease;
    background: #fff;
    cursor: default;
}

.infra-feature-item:hover {
    transform: translateX(10px);
    border-color: var(--fyzap-blue) !important;
    background: #f8faff;
}

.infra-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.infra-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 74, 173, 0.05) 0%, transparent 70%);
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.5);
}

.bg-primary-subtle { background-color: rgba(0, 74, 173, 0.1) !important; }
.bg-orange-subtle { background-color: rgba(255, 145, 0, 0.1) !important; }
.bg-success-subtle { background-color: rgba(25, 135, 84, 0.1) !important; }

.animate-float { animation: floating 4s ease-in-out infinite; }
.animate-float-slow { animation: floating 6s ease-in-out infinite 1s; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .course-card {
        flex-direction: column;
    }

    .course-img-wrapper {
        width: 100%;
        min-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .course-row-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-row-track {
        left: 22px;
        right: 22px;
        top: 14px;
    }

    .course-row-action {
        width: 100%;
        min-width: 0;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid rgba(0, 74, 173, 0.08);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        min-height: 70vh;
        text-align: center;
        padding: 120px 0 110px;
    }
    section {
        padding: 60px 0;
    }
    .course-row-body {
        padding: 20px 18px;
        gap: 18px;
    }
    .course-journey-bar {
        gap: 8px;
    }
    .journey-node {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    .journey-line {
        max-width: 56px;
    }
    .course-card .card-title {
        font-size: 1.25rem;
    }
    .course-card .card-text {
        font-size: 0.92rem;
    }
    .course-feature {
        width: 100%;
        justify-content: flex-start;
    }
    .course-row-track {
        display: none;
    }
    .track-card {
        padding: 28px 22px;
        border-radius: 24px;
    }
    .track-image-wrap {
        padding: 10px;
        border-radius: 22px;
        margin-bottom: 24px;
    }
    .track-image {
        min-height: 260px;
    }
    .track-content-intro {
        margin-bottom: 24px;
    }
    .track-feature-item {
        padding: 18px 16px;
    }
    .track-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .track-actions .btn {
        width: 100%;
    }
    .lp-title {
        font-size: 2.5rem;
    }
}

/* Live Sessions Section */
.live-sessions-section {
    background: linear-gradient(to right, #ffffff, #f8faff);
    position: relative;
}

.bg-orange-subtle {
    background-color: rgba(255, 145, 0, 0.1);
}

/* Professional Track Section */
.track-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.track-card {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 25px 60px rgba(0, 74, 173, 0.08);
    border: 1px solid rgba(0, 74, 173, 0.06);
    overflow: hidden;
    position: relative;
}

.track-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 145, 0, 0.18) 0%, rgba(255, 145, 0, 0) 72%);
    pointer-events: none;
}

.track-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.12), rgba(255, 145, 0, 0.12));
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0, 45, 90, 0.14);
    margin-bottom: 36px;
}

.track-image {
    width: 100%;
    min-height: 460px;
    border-radius: 22px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.track-content {
    max-width: 1120px;
    margin: 0 auto;
}

.track-content-intro {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.track-feature-list {
    margin-top: 0;
}

.track-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid rgba(0, 74, 173, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.track-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 74, 173, 0.08);
    border-color: rgba(0, 74, 173, 0.15);
    background: #ffffff;
}

.track-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.track-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.track-support-text {
    color: #64748b;
    font-weight: 600;
}

.live-sessions-section .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.live-img-container {
    position: relative;
    padding: 20px;
}

.main-live-img {
    border: 10px solid white;
    box-shadow: 0 30px 60px rgba(0, 45, 90, 0.15);
}

.live-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    z-index: 5;
}

.pulse-red {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.stats-floating-card {
    position: absolute;
    bottom: 50px;
    right: 0px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    z-index: 5;
    animation: floating 4s ease-in-out infinite;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* DNS Manual Page */
.dns-manual-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dns-manual-hero {
    position: relative;
    padding: 150px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 145, 0, 0.12) 0%, transparent 24%),
        radial-gradient(circle at top right, rgba(0, 74, 173, 0.14) 0%, transparent 28%),
        linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%);
}

.dns-manual-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 74, 173, 0.08);
    border: 1px solid rgba(0, 74, 173, 0.1);
    color: var(--fyzap-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.dns-manual-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.08;
    color: #0f172a;
}

.dns-manual-lead {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #475569;
    max-width: 680px;
}

.dns-manual-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dns-manual-hero-visual {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.08), rgba(255, 145, 0, 0.12));
    padding: 16px;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 74, 173, 0.12);
}

.dns-manual-hero-image {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.dns-manual-hero-stats {
    margin-top: 42px;
}

.dns-stat-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 36px rgba(0, 74, 173, 0.06);
}

.dns-stat-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--fyzap-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dns-stat-card strong {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.2rem;
}

.dns-stat-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.dns-manual-section {
    padding: 90px 0;
}

.dns-section-heading {
    margin-bottom: 48px;
}

.dns-section-heading p {
    max-width: 860px;
    margin-top: 16px;
    color: #64748b;
}

.dns-topic-card,
.dns-info-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(0, 74, 173, 0.07);
    box-shadow: 0 18px 40px rgba(0, 74, 173, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dns-topic-card:hover,
.dns-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(0, 74, 173, 0.1);
}

.dns-topic-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.dns-topic-card h5,
.dns-info-card h5,
.dns-record-row h5,
.dns-timeline-step h5 {
    font-weight: 700;
    color: #0f172a;
}

.dns-topic-card p,
.dns-info-card p,
.dns-record-row p,
.dns-timeline-step p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

.dns-timeline {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.dns-timeline-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 26px;
    padding: 24px 28px;
    box-shadow: 0 18px 40px rgba(0, 74, 173, 0.05);
}

.dns-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004aad 0%, #0d66d0 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 12px 28px rgba(0, 74, 173, 0.18);
}

.dns-records-grid {
    display: grid;
    gap: 18px;
}

.dns-record-row {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 24px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 18px 40px rgba(0, 74, 173, 0.05);
}

.dns-record-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(0, 74, 173, 0.08);
    color: var(--fyzap-blue);
    font-weight: 800;
    letter-spacing: 0.8px;
}

.dns-practice-card {
    height: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: 0 22px 46px rgba(0, 74, 173, 0.06);
}

.dns-practice-card-dark {
    background: linear-gradient(135deg, #002d5a 0%, #004aad 100%);
    border: none;
    box-shadow: 0 24px 52px rgba(0, 45, 90, 0.18);
}

.dns-checklist,
.dns-market-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 14px;
}

.dns-checklist li,
.dns-market-list li {
    color: #475569;
    line-height: 1.75;
}

.dns-market-list li {
    color: rgba(255, 255, 255, 0.88);
}

.dns-manual-cta-section {
    padding-top: 0;
}

.dns-manual-cta-card {
    background: linear-gradient(135deg, #001d3d 0%, #004aad 100%);
    border-radius: 32px;
    padding: 56px 32px;
    color: #fff;
    box-shadow: 0 28px 56px rgba(0, 45, 90, 0.18);
}

.dns-manual-cta-card p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .dns-manual-title {
        font-size: 2.8rem;
    }

    .dns-manual-hero {
        padding: 130px 0 70px;
    }

    .dns-record-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .dns-manual-section {
        padding: 70px 0;
    }

    .dns-manual-title {
        font-size: 2.2rem;
    }

    .dns-manual-lead {
        font-size: 1rem;
    }

    .dns-manual-actions .btn {
        width: 100%;
    }

    .dns-manual-hero-visual {
        padding: 10px;
        border-radius: 24px;
    }

    .dns-manual-hero-image {
        border-radius: 18px;
    }

    .dns-topic-card,
    .dns-info-card,
    .dns-practice-card,
    .dns-manual-cta-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .dns-timeline-step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 20px;
    }

    .dns-step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .dns-record-row {
        padding: 22px 20px;
    }
}

/* Course Detail Page */
.course-page {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.course-page-hero {
    padding: 145px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(0, 74, 173, 0.12) 0%, transparent 24%),
        radial-gradient(circle at top right, rgba(255, 145, 0, 0.12) 0%, transparent 24%),
        linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%);
}

.course-page-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 74, 173, 0.08);
    border: 1px solid rgba(0, 74, 173, 0.1);
    color: var(--fyzap-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.course-page-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.08;
    color: #0f172a;
}

.course-page-lead {
    color: #475569;
    font-size: 1.06rem;
    line-height: 1.85;
    max-width: 700px;
}

.course-page-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.course-page-image-shell {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.08), rgba(255, 145, 0, 0.12));
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 28px 56px rgba(0, 74, 173, 0.12);
}

.course-page-image {
    width: 100%;
    display: block;
    border-radius: 24px;
    min-height: 420px;
    object-fit: cover;
}

.course-page-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.course-page-meta-item {
    min-width: 170px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 20px;
    padding: 16px 18px;
    box-shadow: 0 14px 32px rgba(0, 74, 173, 0.06);
}

.course-meta-label {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.course-page-meta-item strong {
    color: #0f172a;
    font-size: 1rem;
}

.course-page-section {
    padding: 88px 0;
}

.course-page-info-card,
.course-page-side-card,
.course-related-card {
    height: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: 0 18px 40px rgba(0, 74, 173, 0.06);
}

.course-page-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.course-page-info-card h5,
.course-page-side-card h5,
.course-roadmap-step h5,
.course-related-card h5 {
    color: #0f172a;
    font-weight: 700;
}

.course-page-info-card p,
.course-roadmap-step p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

.course-page-roadmap {
    display: grid;
    gap: 18px;
}

.course-roadmap-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: start;
    background: #fff;
    border-radius: 24px;
    padding: 24px 26px;
    border: 1px solid rgba(0, 74, 173, 0.08);
    box-shadow: 0 18px 38px rgba(0, 74, 173, 0.05);
}

.course-roadmap-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004aad 0%, #0b63cc 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0, 74, 173, 0.18);
}

.course-page-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.course-page-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    line-height: 1.6;
}

.course-related-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 74, 173, 0.1);
}

.course-related-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--fyzap-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.course-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fyzap-orange);
    font-weight: 700;
}

@media (max-width: 991px) {
    .course-page-title {
        font-size: 2.7rem;
    }

    .course-page-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .course-page-hero {
        padding: 120px 0 70px;
    }

    .course-page-title {
        font-size: 2.2rem;
    }

    .course-page-actions .btn {
        width: 100%;
    }

    .course-page-image-shell {
        padding: 10px;
        border-radius: 24px;
    }

    .course-page-image {
        min-height: 240px;
        border-radius: 18px;
    }

    .course-page-meta-item,
    .course-page-info-card,
    .course-page-side-card,
    .course-related-card {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .course-roadmap-step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 20px;
    }
}
