/* ================================================================
   QUERO MEU DIPLOMA — Main Stylesheet
   ================================================================ */

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

:root {
    --header-bg:   #1a2e4a;
    --hero-bg:     #12253e;
    --footer-bg:   #1a2e4a;
    --primary:     #0056c7;
    --primary-dk:  #004096;
    --accent:      #f5a623;
    --accent-dk:   #d4891a;
    --green:       #27ae60;
    --red:         #e74c3c;
    --purple:      #8e44ad;
    --teal:        #16a085;
    --orange:      #e67e22;
    --light-bg:    #f4f6f9;
    --white:       #ffffff;
    --text:        #2c3e50;
    --text-muted:  #6c757d;
    --border:      #dee2e6;
    --shadow:      0 2px 15px rgba(0,0,0,0.09);
    --shadow-md:   0 6px 25px rgba(0,0,0,0.13);
    --radius:      8px;
    --transition:  0.25s ease;
    --font:        'Inter', 'Segoe UI', Tahoma, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 15px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ===================================================
   HEADER
=================================================== */
.site-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 128px;
}

.logo-icon-wrap {
    position: relative;
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: white;
}

.logo-text-wrap {
    line-height: 1;
}

.logo-univer {
    display: block;
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    margin: 2px 0;
}

.logo-ensino {
    display: block;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

/* NAV */
.main-nav { flex: 1; }

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 7px 11px;
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    background: rgba(255,255,255,.1);
    color: var(--accent);
}

.nav-arrow { font-size: 9px; opacity: .8; }

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    min-width: 210px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    z-index: 200;
    overflow: hidden;
}

.has-dropdown:hover .nav-dropdown { display: block; }

.nav-dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-dropdown li:last-child a { border-bottom: none; }

.nav-dropdown li a:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 24px;
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 4px 6px 4px 14px;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 12.5px;
    width: 150px;
}

.search-box input::placeholder { color: rgba(255,255,255,.5); }

.search-box button {
    background: none;
    color: rgba(255,255,255,.7);
    padding: 4px 8px;
    font-size: 15px;
}

.btn-aluno {
    background: var(--primary);
    color: var(--white) !important;
    font-size: 12.5px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-aluno:hover { background: var(--primary-dk); }

/* ===================================================
   HERO
=================================================== */
.hero {
    background: linear-gradient(135deg, #0d1e3a 0%, #1a3a6b 60%, #0d1e3a 100%);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-deco {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
    opacity: .6;
}

.hero-deco span {
    display: block;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: -2px;
}

.hero-left { padding-left: 30px; }

.hero-tag {
    display: inline-block;
    background: rgba(245,166,35,.15);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border-left: 3px solid var(--accent);
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    max-width: 420px;
    margin-bottom: 26px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #2c2c2c !important;
    font-weight: 800;
    font-size: 13.5px;
    padding: 14px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245,166,35,.4);
}

.btn-hero:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,.5);
}

.hero-right { display: flex; justify-content: center; align-items: center; }

.hero-image {
    width: 100%;
    max-height: 270px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}

.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

.hero-dot.active { background: var(--white); }

.hero-slides { position: relative; width: 100%; }
.hero-slide { display: none; }
.hero-slide.active { display: block; animation: heroFadeIn .6s ease; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.hero-dot { cursor: pointer; }

/* ===================================================
   PARCEIROS
=================================================== */
.partners {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.partners-title {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.partners-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.partner-item {
    color: #aaa;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.partner-item:hover { color: var(--primary); }

/* ===================================================
   SECTION HEADINGS
=================================================== */
.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.section-heading-underline {
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-heading-center { text-align: center; }
.section-heading-center .section-heading-underline { margin: 0 auto; }

/* ===================================================
   PARCEIROS
=================================================== */
.partners-section {
    background: var(--white);
    padding: 32px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================================================
   TIPOS DE CURSO
=================================================== */
.types-section {
    background: var(--white);
    padding: 52px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.type-item:hover { transform: translateY(-3px); }

.type-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.type-item:hover .type-img { box-shadow: var(--shadow-md); }

.type-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}

/* ===================================================
   COURSE CARDS
=================================================== */
.courses-section {
    background: var(--light-bg);
    padding: 52px 0;
}

.courses-section.bg-white { background: var(--white); }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Card Image */
.card-img-wrap {
    position: relative;
    height: 175px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.badge-destaque {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e74c3c;
    color: white;
    font-size: 9.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.badge-cat {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.badge-marketing  { background: var(--purple); }
.badge-negocios   { background: var(--primary); }
.badge-saude      { background: var(--green); }
.badge-tecnologia { background: var(--teal); }
.badge-educacao   { background: var(--orange); }
.badge-gastronomia { background: #c0392b; }
.badge-default    { background: var(--primary); }

.modal-badges {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
}

.badge-presencial { background: var(--orange); color: white; font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }
.badge-ead        { background: var(--primary); color: white; font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }
.badge-autorizado { background: #2980b9; color: white; font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }
.badge-semipresencial { background: var(--teal); color: white; font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 3px; }

/* Card Body */
.card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.card-tag {
    font-size: 10.5px;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid;
    font-weight: 600;
}

.tag-tipo { border-color: var(--primary); color: var(--primary); }
.tag-ead  { border-color: var(--primary); color: var(--primary); }
.tag-presencial { border-color: var(--orange); color: var(--orange); }
.tag-livre { border-color: var(--green); color: var(--green); }

.card-duration {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 7px;
}

.card-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 2px;
}

.card-price-inst {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.btn-card {
    display: inline-block;
    margin-top: 11px;
    padding: 7px 18px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 800;
    align-self: flex-start;
    letter-spacing: .3px;
    transition: var(--transition);
}

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

.btn-section-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: var(--transition);
}

.btn-section-more:hover { background: var(--primary-dk); }

/* ===================================================
   DEPOIMENTOS
=================================================== */
.testimonials {
    background: var(--hero-bg);
    padding: 60px 0;
}

.testimonials-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
}

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

.tcard {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px;
}

.tcard-quote {
    color: var(--accent);
    font-size: 40px;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.tcard-text {
    font-size: 13.5px;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 18px;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.tcard-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
}

/* ===================================================
   CTA DUPLO
=================================================== */
.cta-double { display: grid; grid-template-columns: 1fr 1fr; }

.cta-left {
    background: var(--header-bg);
    padding: 55px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right {
    background: #0d1e3a;
    padding: 55px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.cta-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 22px;
}

.cta-title span { color: var(--accent); }

.cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 22px;
}

.btn-cta {
    display: inline-block;
    background: var(--accent);
    color: #2c2c2c;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
}

.btn-cta:hover { background: var(--accent-dk); }

.cta-logo { opacity: .85; }

/* ===================================================
   MOTIVOS
=================================================== */
.motivos {
    background: var(--white);
    padding: 60px 0;
}

.motivos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
}

.motivo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 10px;
}

.motivo-icon {
    font-size: 38px;
    line-height: 1;
}

.motivo-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

/* ===================================================
   UNIVER VIDEO BANNER
=================================================== */
.uvideo {
    background: var(--light-bg);
    padding: 40px 0;
}

.uvideo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.uvideo-left {
    background: var(--header-bg);
    padding: 50px 50px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.uvideo-right {
    background: var(--primary);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    gap: 16px;
}

.uvideo-lead {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.uvideo-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 22px;
    line-height: 1.2;
}

.uvideo-title span { color: var(--accent); }

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,.75);
    padding: 52px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-logo-area { }

.footer-tagline {
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    margin: 14px 0 18px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,.65);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: #333;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul a {
    font-size: 12.5px;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 12.5px;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,.8);
}

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

.footer-hours {
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255,255,255,.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 14px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

/* ===================================================
   BREADCRUMB
=================================================== */
.breadcrumb-bar {
    background: var(--light-bg);
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    gap: 7px;
    font-size: 12.5px;
    color: var(--text-muted);
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }

/* ===================================================
   COURSE DETAIL
=================================================== */
.detail-section { padding: 40px 0 60px; }

.detail-inner {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 30px;
    align-items: start;
}

.detail-main {}

.cat-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.detail-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.detail-short-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.65;
}

.detail-meta {
    display: flex;
    gap: 22px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Tabs */
.info-tabs {
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.info-tab {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.info-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.detail-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Curriculum */
.curriculum { margin-top: 28px; }

.curriculum h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 24px;
}

.curr-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--text);
    padding: 5px 0;
    line-height: 1.45;
    border-bottom: 1px solid rgba(0,0,0,.04);
}

.curr-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    min-width: 19px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    margin-top: 1px;
}

/* Sidebar */
.detail-sidebar {}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-card-img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}

.sidebar-body { padding: 20px; }

.btn-inscricao {
    display: block;
    background: var(--primary);
    color: var(--white) !important;
    text-align: center;
    font-weight: 900;
    font-size: 15px;
    padding: 13px;
    border-radius: 4px;
    margin-bottom: 22px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-inscricao:hover { background: var(--primary-dk); }

.sidebar-info { display: flex; flex-direction: column; gap: 12px; }

.sinfo-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sinfo-row:last-child { border-bottom: none; padding-bottom: 0; }

.sinfo-icon { font-size: 16px; min-width: 20px; }

.sinfo-label { color: var(--text-muted); min-width: 80px; }

.sinfo-value { color: var(--text); font-weight: 700; }

.sidebar-share {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.sidebar-share p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.share-btns { display: flex; gap: 8px; }

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover { opacity: .8; transform: scale(1.1); }
.sfb { background: #3b5998; }
.stw { background: #1da1f2; }
.sli { background: #0077b5; }

/* Related courses */
.related-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.related-card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    padding: 14px 16px;
    border-bottom: 3px solid var(--primary);
}

.related-item {
    display: flex;
    gap: 10px;
    padding: 11px 12px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

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

.related-item:hover { background: var(--light-bg); }

.related-item-img {
    width: 58px;
    height: 46px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-item-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

.related-item-cat {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===================================================
   COURSES LISTING PAGE HEADER
=================================================== */
.listing-header {
    background: var(--header-bg);
    padding: 40px 0;
    color: white;
}

.listing-header h1 {
    font-size: 26px;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
}

.listing-header p {
    font-size: 14px;
    color: rgba(255,255,255,.65);
}

.filter-bar {
    background: white;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    position: sticky;
    top: 60px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.filter-pills {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-pill {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    border: 2px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0,86,199,.05);
}

/* ===================================================
   FLASH / ALERTS
=================================================== */
.alert {
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 13.5px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.alert-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border-color: #bee5eb; }

/* ===================================================
   UTILITY
=================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1100px) {
    .motivos-grid { grid-template-columns: repeat(4, 1fr); }
    .types-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .motivos-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-double { grid-template-columns: 1fr; }
    .detail-inner { grid-template-columns: 1fr; }
    .curriculum-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .uvideo-inner { grid-template-columns: 1fr; }
}

/* ── Hamburger button ───────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav panel ───────────────────────────────── */
.mobile-nav {
    display: none;
    background: var(--primary);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav-inner { padding: 16px 20px 24px; }
.mobile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.mobile-search input {
    flex: 1;
    padding: 9px 14px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    outline: none;
}
.mobile-search button {
    background: var(--accent);
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
    font-size: 16px;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li a,
.mobile-dropdown-toggle {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    letter-spacing: .5px;
}
.mobile-dropdown { padding-left: 14px; }
.mobile-dropdown li a {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 4px;
}
.mobile-dropdown { display: none; }
.mobile-dropdown.open { display: block; }

@media (max-width: 768px) {
    .main-nav, .search-box { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-nav { display: block; }
    .header-inner { justify-content: space-between; }
    .courses-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 26px; }
    .footer-grid { grid-template-columns: 1fr; }
    .motivos-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-left { padding: 36px 28px; }
    .cta-right { padding: 36px 28px; }
}
