/* =====================================================
   NEWCASTLE IDIOMAS — SITE 2026
   Arquivo organizado por seções para manutenção simples.
===================================================== */

/* =====================================================
   01. TOKENS E RESET
===================================================== */
:root {
    --nci-blue: #14246b;
    --nci-blue-2: #0b1544;
    --nci-red: #e53438;
    --nci-red-2: #c62429;
    --nci-yellow: #f4c542;
    --nci-ink: #141414;
    --nci-muted: #646b7a;
    --nci-soft: #f5f7fb;
    --nci-line: rgba(20, 20, 20, 0.09);
    --nci-white: #ffffff;
    --nci-radius-xl: 32px;
    --nci-radius-lg: 24px;
    --nci-radius-md: 18px;
    --nci-shadow-soft: 0 24px 70px rgba(9, 18, 62, 0.14);
    --nci-shadow-card: 0 14px 42px rgba(9, 18, 62, 0.10);
    --nci-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--nci-ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 40px, var(--nci-container));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--nci-soft);
}

.section-dark {
    color: #ffffff;
    background: var(--nci-blue-2);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-kicker,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--nci-red);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}

.section-kicker::before,
.kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.section-heading h2,
.h2 {
    margin: 0;
    color: var(--nci-ink);
    font-size: clamp(32px, 4.6vw, 58px);
    font-weight: 850;
    letter-spacing: -1.7px;
    line-height: 1.02;
}

.section-dark .section-heading h2,
.section-dark .h2 {
    color: #ffffff;
}

.section-heading p,
.lead {
    max-width: 650px;
    margin: 16px auto 0;
    color: var(--nci-muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-dark .section-heading p,
.section-dark .lead {
    color: rgba(255, 255, 255, 0.78);
}

/* =====================================================
   FIM 01. TOKENS E RESET
===================================================== */


/* =====================================================
   02. COMPONENTES GERAIS
===================================================== */
.btn,
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.65px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.btn:hover,
.btn-pill:hover {
    transform: translateY(-2px);
}

.btn-primary {
    border-color: var(--nci-red);
    background: var(--nci-red);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(229, 52, 56, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--nci-red-2);
    border-color: var(--nci-red-2);
    color: #ffffff;
}

.btn-dark {
    border-color: var(--nci-blue);
    background: var(--nci-blue);
    color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus {
    background: transparent;
    color: var(--nci-blue);
}

.btn-light {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--nci-blue);
}

.btn-light:hover,
.btn-light:focus {
    background: transparent;
    color: #ffffff;
}

.btn-line {
    border-color: rgba(20, 20, 20, 0.18);
    background: transparent;
    color: var(--nci-ink);
}

.btn-line:hover,
.btn-line:focus {
    border-color: var(--nci-blue);
    background: var(--nci-blue);
    color: #ffffff;
}

.card {
    border: 1px solid var(--nci-line);
    border-radius: var(--nci-radius-lg);
    background: #ffffff;
    box-shadow: var(--nci-shadow-card);
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(229, 52, 56, 0.10);
    color: var(--nci-red);
}

.icon-badge svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* =====================================================
   FIM 02. COMPONENTES GERAIS
===================================================== */


/* =====================================================
   03. PRELOADER
===================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity .35s ease, visibility .35s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.loader-content img {
    width: 190px;
    height: auto;
}

.loader-content span {
    color: #686868;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

@keyframes loaderPulse {
    from { opacity: .58; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   FIM 03. PRELOADER
===================================================== */


/* =====================================================
   04. TOPO E HEADER
===================================================== */
.top-alert {
    background: #fff4d6;
    color: #5f4515;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 9px 16px;
}

.topbar {
    background: var(--nci-blue-2);
    color: rgba(255,255,255,.84);
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 18px;
}

.topbar-actions,
.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .2s ease, opacity .2s ease;
}

.topbar a:hover {
    color: #ffffff;
}

.topbar svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(20,20,20,.07);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 28px;
}

.logo img {
    width: 168px;
    height: auto;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--nci-soft);
    color: var(--nci-blue);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: currentColor;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #26304b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .45px;
    text-transform: uppercase;
    transition: color .2s ease;
}

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

.header-cta {
    min-height: 42px;
    padding: 0 20px;
}

/* =====================================================
   FIM 04. TOPO E HEADER
===================================================== */


/* =====================================================
   05. HERO
===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 92px;
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 16%, rgba(229,52,56,.46), transparent 30%),
        radial-gradient(circle at 86% 22%, rgba(244,197,66,.24), transparent 30%),
        linear-gradient(135deg, #08113c 0%, #172b7a 52%, #0b1544 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 58px;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 850;
    letter-spacing: -2.6px;
    line-height: .96;
}

.hero-copy h1 span {
    color: var(--nci-yellow);
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.75;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.hero-pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.hero-pills li::before {
    content: "✓";
    color: var(--nci-yellow);
    font-weight: 850;
}

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

.hero-panel {
    position: relative;
}

.lead-form-card {
    position: relative;
    z-index: 2;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--nci-radius-xl);
    background: rgba(255,255,255,.96);
    color: var(--nci-ink);
    box-shadow: 0 32px 90px rgba(0,0,0,.28);
}

.lead-form-card h2 {
    margin: 0 0 7px;
    color: var(--nci-blue);
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.lead-form-card p {
    margin: 0 0 22px;
    color: var(--nci-muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 6px;
    color: #222;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #dfe3ec;
    border-radius: 14px;
    background: #ffffff;
    color: #1f2433;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
    min-height: 112px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--nci-blue);
    box-shadow: 0 0 0 3px rgba(20, 36, 107, .10);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    color: #666;
    font-size: 12px;
    line-height: 1.45;
}

.form-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--nci-blue);
}

.form-check button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--nci-blue);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-status {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.45;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    background: #eefaf1;
    color: #31563a;
}

.form-status.is-error {
    background: #fff0f0;
    color: #8c2e2e;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
    max-width: 720px;
}

.metric-card {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(12px);
}

.metric-card strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.metric-card span {
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 400;
}

/* =====================================================
   FIM 05. HERO
===================================================== */


/* =====================================================
   06. CURSOS
===================================================== */
.course-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 30px;
    border: 1px solid var(--nci-line);
    border-radius: var(--nci-radius-lg);
    background: #ffffff;
    box-shadow: var(--nci-shadow-card);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20,36,107,.20);
    box-shadow: var(--nci-shadow-soft);
}

.course-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(229,52,56,.08);
}

.course-card h3 {
    margin: 22px 0 12px;
    color: var(--nci-blue);
    font-size: 25px;
    font-weight: 850;
    letter-spacing: -0.7px;
    line-height: 1.05;
}

.course-card p {
    margin: 0 0 20px;
    color: var(--nci-muted);
    font-size: 15px;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.course-list li {
    position: relative;
    padding-left: 20px;
    color: #394157;
    font-size: 14px;
    font-weight: 650;
}

.course-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nci-red);
}

/* =====================================================
   FIM 06. CURSOS
===================================================== */


/* =====================================================
   07. MÉTODO E BENEFÍCIOS
===================================================== */
.method-wrap {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 60px;
}

.method-visual {
    min-height: 520px;
    border-radius: var(--nci-radius-xl);
    background:
        linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.02)),
        radial-gradient(circle at 72% 18%, rgba(244,197,66,.45), transparent 28%),
        linear-gradient(145deg, var(--nci-blue), var(--nci-blue-2));
    box-shadow: var(--nci-shadow-soft);
    padding: 34px;
    color: #ffffff;
}

.method-visual-card {
    display: grid;
    gap: 18px;
}

.method-bubble {
    max-width: 360px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.method-bubble:nth-child(2) {
    margin-left: auto;
}

.method-bubble small {
    display: block;
    margin-bottom: 6px;
    color: var(--nci-yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.method-bubble strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
}

.method-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 4.3vw, 56px);
    font-weight: 850;
    letter-spacing: -1.5px;
    line-height: 1.02;
}

.method-copy p {
    margin: 0 0 24px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
}

.benefit-list {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,.88);
    font-weight: 300;
}

.benefit-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(244,197,66,.16);
    color: var(--nci-yellow);
    font-weight: 850;
}

/* =====================================================
   FIM 07. MÉTODO E BENEFÍCIOS
===================================================== */


/* =====================================================
   08. VANTAGENS, PROVA SOCIAL E EXAMES
===================================================== */
.advantage-card,
.testimonial-card,
.exam-card,
.unit-card {
    padding: 28px;
    border: 1px solid var(--nci-line);
    border-radius: var(--nci-radius-lg);
    background: #ffffff;
    box-shadow: var(--nci-shadow-card);
}

.advantage-card h3,
.exam-card h3,
.unit-card h3 {
    margin: 18px 0 10px;
    color: var(--nci-blue);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.5px;
    line-height: 1.08;
}

.advantage-card p,
.exam-card p,
.unit-card p,
.testimonial-card p {
    margin: 0;
    color: var(--nci-muted);
    font-size: 15px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nci-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--nci-ink);
    line-height: 1.2;
}

.testimonial-author span {
    display: block;
    color: #8a91a1;
    font-size: 12px;
}

.exam-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--nci-radius-xl);
    background: linear-gradient(135deg, var(--nci-blue), var(--nci-blue-2));
    color: #ffffff;
    box-shadow: var(--nci-shadow-soft);
}

.exam-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 42px;
}

.exam-band h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 850;
    letter-spacing: -1.2px;
    line-height: 1.03;
}

.exam-band p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
}

/* =====================================================
   FIM 08. VANTAGENS, PROVA SOCIAL E EXAMES
===================================================== */


/* =====================================================
   09. CTA E FORMULÁRIO FINAL
===================================================== */
.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
    gap: 44px;
    align-items: center;
    padding: 48px;
    border-radius: var(--nci-radius-xl);
    background: #ffffff;
    box-shadow: var(--nci-shadow-soft);
}

.cta-panel h2 {
    margin: 0 0 14px;
    color: var(--nci-blue);
    font-size: clamp(32px, 4.4vw, 58px);
    font-weight: 850;
    letter-spacing: -1.6px;
    line-height: 1.02;
}

.cta-panel p {
    margin: 0;
    color: var(--nci-muted);
    font-size: 17px;
}

.cta-form {
    padding: 0;
    box-shadow: none;
}

.cta-form .form-status {
    margin-top: 0;
}

/* =====================================================
   FIM 09. CTA E FORMULÁRIO FINAL
===================================================== */


/* =====================================================
   10. FOOTER
===================================================== */
.footer {
    color: rgba(255,255,255,.72);
    background: #070d2b;
}

.footer-top {
    padding: 70px 0 54px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .9fr .9fr 1.15fr;
    gap: 34px;
}

.footer-logo img {
    width: 178px;
    margin-bottom: 18px;
}

.footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.footer h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li + li {
    margin-top: 10px;
}

.footer a,
.footer-legal-link {
    display: inline-flex;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.72);
    font: inherit;
    text-align: left;
    transition: color .2s ease;
}

.footer a:hover,
.footer-legal-link:hover,
.footer-legal-link:focus {
    color: #ffffff;
    outline: none;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p + p {
    margin-top: 4px;
    font-size: 12px;
    opacity: .78;
}

/* =====================================================
   FIM 10. FOOTER
===================================================== */


/* =====================================================
   11. MODAIS LEGAIS E COOKIE BAR
===================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(7, 13, 43, .72);
    backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
    display: flex;
}

.modal-box {
    position: relative;
    width: min(860px, 100%);
    max-height: 86vh;
    overflow: auto;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 32px 90px rgba(0,0,0,.28);
}

.modal-body {
    padding: 46px 48px 42px;
}

.modal-close {
    position: sticky;
    top: 16px;
    float: right;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 16px 16px -54px auto;
    border: 0;
    border-radius: 50%;
    background: var(--nci-blue);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
}

.modal-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--nci-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.modal-box h2 {
    margin: 0 0 18px;
    color: var(--nci-blue);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 850;
    letter-spacing: -1px;
    line-height: 1.05;
}

.modal-box h3 {
    margin: 26px 0 10px;
    color: #151515;
    font-size: 17px;
    font-weight: 900;
}

.modal-box p {
    margin: 0 0 16px;
    color: #686868;
    font-size: 14px;
    line-height: 1.7;
}

.modal-note {
    color: #999 !important;
    font-size: 12px !important;
}

.cookie-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1900;
    padding: 16px 0;
    border-top: 1px solid rgba(20,20,20,.08);
    background: #ffffff;
    box-shadow: 0 -12px 38px rgba(0,0,0,.12);
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
}

.cookie-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-inner p {
    max-width: 860px;
    margin: 0;
    color: #686868;
    font-size: 13px;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.cookie-link,
.cookie-accept {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #555;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.cookie-accept {
    border-color: var(--nci-blue);
    background: var(--nci-blue);
    color: #ffffff;
}

/* =====================================================
   FIM 11. MODAIS LEGAIS E COOKIE BAR
===================================================== */


/* =====================================================
   12. RESPONSIVO
===================================================== */
@media (max-width: 1024px) {
    .hero-inner,
    .method-wrap,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 620px;
    }

    .grid-3,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 28px, var(--nci-container));
    }

    .section {
        padding: 68px 0;
    }

    .top-alert {
        font-size: 11px;
        line-height: 1.35;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
    }

    .topbar-actions {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .header-inner {
        min-height: 72px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        right: 14px;
        top: calc(100% + 8px);
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--nci-line);
        border-radius: 20px;
        background: #ffffff;
        box-shadow: var(--nci-shadow-soft);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 12px;
        border-radius: 12px;
    }

    .main-nav a:hover {
        background: var(--nci-soft);
    }

    .header-cta {
        margin-top: 10px;
        width: 100%;
    }

    .hero {
        padding: 64px 0 70px;
    }

    .hero-copy h1 {
        font-size: 42px;
        letter-spacing: -1.4px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-metrics,
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .lead-form-card,
    .cta-panel {
        padding: 24px;
        border-radius: 24px;
    }

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

    .method-visual {
        min-height: auto;
        padding: 24px;
    }

    .exam-band-inner {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .footer-top {
        padding: 54px 0 38px;
    }

    .modal-body {
        padding: 34px 24px 28px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-link,
    .cookie-accept {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .logo img {
        width: 144px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .hero-actions .btn-pill {
        width: 100%;
    }
}

/* =====================================================
   FIM 12. RESPONSIVO
===================================================== */


/* =====================================================
   13. NAVEGAÇÃO — DROPDOWN MAIS OPÇÕES
===================================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #26304b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .45px;
    line-height: 1;
    text-transform: uppercase;
    transition: color .2s ease;
}

.nav-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:focus {
    color: var(--nci-red);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 1005;
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--nci-line);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--nci-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 13px;
    border-radius: 12px;
    color: #26304b;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--nci-soft);
    color: var(--nci-red);
}

/* =====================================================
   FIM 13. NAVEGAÇÃO — DROPDOWN MAIS OPÇÕES
===================================================== */


/* =====================================================
   14. VANTAGENS — CARDS COM IMAGEM
===================================================== */
.advantage-card-media-card {
    overflow: hidden;
    padding: 0 !important;
}

.advantage-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20,36,107,.12), rgba(229,52,56,.12));
}

.advantage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-card-body {
    padding: 26px;
}

/* =====================================================
   FIM 14. VANTAGENS — CARDS COM IMAGEM
===================================================== */


/* =====================================================
   15. REFERÊNCIA NO ENSINO — VÍDEOS
===================================================== */
.reference-section {
    background: #ffffff;
}

.reference-panel {
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid var(--nci-line);
    border-radius: var(--nci-radius-xl);
    background:
        radial-gradient(circle at 12% 12%, rgba(229,52,56,.10), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(20,36,107,.10), transparent 28%),
        #ffffff;
    box-shadow: var(--nci-shadow-card);
}

.reference-heading {
    margin-bottom: 34px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.video-card {
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(9, 18, 62, 0.08);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--nci-blue-2);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card-caption {
    padding: 16px 18px 18px;
}

.video-card-caption span {
    display: block;
    margin-bottom: 4px;
    color: var(--nci-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-card-caption strong {
    color: var(--nci-blue);
    font-size: 16px;
}

/* =====================================================
   FIM 15. REFERÊNCIA NO ENSINO — VÍDEOS
===================================================== */


/* =====================================================
   16. UNIDADES — BUSCA E CARDS
===================================================== */
.units-filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 14px;
    margin-bottom: 22px;
    padding: 14px;
    border: 1px solid var(--nci-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--nci-shadow-card);
}

.units-filter-field label {
    display: block;
    margin: 0 0 7px;
    color: #26304b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.units-filter-field input,
.units-filter-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #dfe3ec;
    border-radius: 999px;
    background: #ffffff;
    color: #1f2433;
    outline: none;
}

.units-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--nci-muted);
    font-size: 14px;
}

.units-result-bar strong {
    color: var(--nci-blue);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.unit-search-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--nci-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(9, 18, 62, 0.08);
}

.unit-search-card.is-hidden {
    display: none;
}

.unit-city {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(229, 52, 56, 0.10);
    color: var(--nci-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.unit-card-top h3 {
    margin: 0 0 8px;
    color: var(--nci-blue);
    font-size: 21px;
    line-height: 1.08;
    letter-spacing: -.4px;
}

.unit-card-top p {
    margin: 0;
    color: var(--nci-muted);
    font-size: 13px;
    line-height: 1.55;
}

.unit-contact-line {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--nci-line);
}

.unit-contact-line span {
    display: block;
    color: var(--nci-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.unit-contact-line strong {
    color: var(--nci-ink);
    font-size: 16px;
}

.unit-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
}

.unit-actions .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
}

.unit-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.unit-socials a {
    color: var(--nci-blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.units-empty-message {
    display: none;
    margin: 26px 0 0;
    padding: 18px;
    border: 1px dashed rgba(20,36,107,.22);
    border-radius: 18px;
    color: var(--nci-muted);
    text-align: center;
}

.units-empty-message.is-visible {
    display: block;
}

/* =====================================================
   FIM 16. UNIDADES — BUSCA E CARDS
===================================================== */


/* =====================================================
   17. SEJA UM FRANQUEADO
===================================================== */
.franchise-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(229,52,56,.42), transparent 30%),
        linear-gradient(135deg, #071039 0%, #14246b 54%, #0b1544 100%);
}

.franchise-wrap {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
}

.franchise-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 4.8vw, 62px);
    font-weight: 850;
    letter-spacing: -1.8px;
    line-height: 1.02;
}

.franchise-copy p {
    margin: 0 0 26px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.75;
}

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

.franchise-link {
    border-color: rgba(255,255,255,.5);
    color: #ffffff;
}

.franchise-link:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--nci-blue);
}

.franchise-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.franchise-support-grid article {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: rgba(255,255,255,.08);
}

.franchise-support-grid span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--nci-yellow);
    font-size: 18px;
    font-weight: 500;
}

.franchise-support-grid h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
}

.franchise-support-grid p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
}


/* =====================================================
   FIM 17. SEJA UM FRANQUEADO
===================================================== */


/* =====================================================
   18. PERGUNTAS FREQUENTES
===================================================== */
.faq-section {
    background: #ffffff;
}

.faq-wrap {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 46px;
    align-items: flex-start;
}

.faq-intro h2 {
    margin: 0 0 16px;
    color: var(--nci-ink);
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 850;
    letter-spacing: -1.6px;
    line-height: 1.02;
}

.faq-intro p {
    margin: 0 0 24px;
    color: var(--nci-muted);
    font-size: 16px;
    line-height: 1.75;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--nci-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(9,18,62,.06);
    overflow: hidden;
}

.faq-list summary {
    position: relative;
    padding: 20px 54px 20px 20px;
    color: var(--nci-blue);
    font-weight: 900;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--nci-soft);
    color: var(--nci-red);
    font-size: 20px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--nci-muted);
}

/* =====================================================
   FIM 18. PERGUNTAS FREQUENTES
===================================================== */


/* =====================================================
   19. RESPONSIVO — NOVAS SEÇÕES
===================================================== */
@media (max-width: 1100px) {
    .units-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .video-grid,
    .franchise-wrap,
    .faq-wrap {
        grid-template-columns: 1fr;
    }

    .units-filter-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 13px 12px;
        border-radius: 12px;
    }

    .nav-dropdown-toggle:hover,
    .nav-dropdown.is-open .nav-dropdown-toggle {
        background: var(--nci-soft);
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 0 0 8px;
        padding: 6px;
        border-radius: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--nci-soft);
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 11px 12px;
    }

    .video-grid,
    .units-grid,
    .franchise-support-grid {
        grid-template-columns: 1fr;
    }

    .units-result-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .advantage-card-body {
        padding: 22px;
    }
}
/* =====================================================
   FIM 19. RESPONSIVO — NOVAS SEÇÕES
===================================================== */

/* =====================================================
   20. AJUSTES FINOS — VERSÃO 2026 V3
===================================================== */

/* Tipografia mais leve e com melhor respiro */
.section-heading h2,
.hero-copy h1,
.method-copy h2,
.exam-band h2,
.cta-panel h2,
.faq-intro h2,
.franchise-copy h2,
.modal-box h2 {
    font-weight: 780;
    letter-spacing: -0.65px;
    line-height: 1.08;
}

.course-card h3,
.advantage-card h3,
.exam-card h3,
.unit-card h3,
.footer h3,
.video-card-caption strong,
.faq-list summary {
    font-weight: 760;
    letter-spacing: -0.25px;
}

.section-heading p,
.hero-copy p,
.method-copy p,
.franchise-copy p,
.cta-panel p {
    line-height: 1.75;
}

/* Placeholders de formulário mais discretos */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a9b0bf;
    opacity: 1;
    font-weight: 400;
}

/* Checkbox/consentimento sem quebras estranhas */
.form-check {
    align-items: flex-start;
}

.form-check input {
    flex: 0 0 16px;
}

.form-check label {
    display: block;
    min-width: 0;
    line-height: 1.55;
}

.form-check label button,
.form-check button {
    display: inline;
    vertical-align: baseline;
    white-space: normal;
}

/* Botão Quero estudar no menu */
.main-nav .header-cta,
.main-nav .header-cta:visited {
    color: #ffffff !important;
}

.main-nav .header-cta:hover,
.main-nav .header-cta:focus {
    background: var(--nci-red-2);
    border-color: var(--nci-red-2);
    color: #ffffff !important;
}

.hero-pills-note {
    margin: -20px 0 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.45;
}

/* Cursos com imagem no topo */
.course-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.course-card-media {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
}

.course-card-media::after {
    display: none;
}

.course-card-image,
.advantage-card-image {
    overflow: hidden;
}

.course-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(20,36,107,.08), rgba(229,52,56,.08));
}

.course-card-image img,
.advantage-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.course-card-media:hover .course-card-image img,
.advantage-card-media-card:hover .advantage-card-image img {
    transform: scale(1.055);
}

.course-card-body {
    flex: 1;
    padding: 26px;
}

.course-card-body h3 {
    margin-top: 0;
}

/* Redes sociais das unidades com ícones */
.unit-socials {
    align-items: center;
}

.unit-social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(20,36,107,.14);
    border-radius: 50%;
    background: #ffffff;
    color: var(--nci-blue) !important;
    transition: all .22s ease;
}

.unit-social-link:hover {
    background: var(--nci-blue);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.unit-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Fly Intercâmbios */
.fly-band {
    background:
        radial-gradient(circle at 82% 18%, rgba(244,197,66,.30), transparent 30%),
        linear-gradient(135deg, var(--nci-blue), var(--nci-blue-2));
}

.fly-band .exam-band-inner {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px) auto;
}

.fly-band-image {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
}

.fly-band-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Franquia com imagem */
.franchise-wrap {
    grid-template-columns: minmax(0, .85fr) minmax(240px, .72fr) minmax(0, 1fr);
}

.franchise-image-card {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--nci-radius-xl);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .20);
}

.franchise-image-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.franchise-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
}

/* Footer: horários em múltiplas linhas com respiro */
.footer li {
    line-height: 1.65;
}

/* Responsivo refinado */
@media (max-width: 1180px) {
    .course-grid,
    .franchise-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .franchise-copy {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .fly-band .exam-band-inner {
        grid-template-columns: 1fr;
    }

    .fly-band-image {
        max-width: 360px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100% - 30px, var(--nci-container));
    }

    .section {
        padding: 62px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .hero-copy h1,
    .method-copy h2,
    .exam-band h2,
    .cta-panel h2,
    .faq-intro h2,
    .franchise-copy h2 {
        letter-spacing: -0.35px;
        line-height: 1.1;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-pills-note {
        margin-top: -16px;
    }

    .hero-pills li {
        font-size: 12px;
    }

    .course-grid,
    .franchise-wrap {
        grid-template-columns: 1fr;
    }

    .course-card-body,
    .advantage-card-body {
        padding: 22px;
    }

    .franchise-image-card img {
        min-height: 260px;
    }

    .units-filter-panel,
    .unit-search-card,
    .lead-form-card,
    .cta-panel,
    .reference-panel,
    .exam-band {
        border-radius: 22px;
    }

    .unit-actions {
        grid-template-columns: 1fr;
    }

    .topbar-actions a[href^="mailto"] {
        word-break: break-word;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 420px) {
    .hero-copy h1 {
        font-size: 36px;
    }

    .btn,
    .btn-pill {
        width: 100%;
    }

    .cookie-actions {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FIM 20. AJUSTES FINOS — VERSÃO 2026 V3
===================================================== */


/* =====================================================
   21. AJUSTES FINAIS — HOME 2026 FINAL
   - Tipografia dos títulos
   - Expansão Newcastle no desktop
   - Termos do formulário
   - Cards de unidades
   - Ícones e selects dos formulários
===================================================== */

/* Títulos com mais respiro visual */
.hero-copy h1,
.section-heading h2,
.method-copy h2,
.exam-band h2,
.cta-panel h2,
.faq-intro h2,
.franchise-copy h2,
.lead-form-card h2,
.modal-card h2,
.legal-modal h2,
.cookie-modal h2 {
    letter-spacing: -0.25px !important;
    line-height: 1.12 !important;
    font-weight: 760 !important;
}

.hero-copy h1 {
    line-height: 1.08 !important;
}

.section-kicker,
.kicker,
.form-field label,
.unit-contact-line span,
.unit-city {
    letter-spacing: 1px !important;
}

.course-card-body h3,
.advantage-card h3,
.exam-card h3,
.unit-card-top h3,
.franchise-support-grid h3,
.faq-question span {
    letter-spacing: 0 !important;
    line-height: 1.18 !important;
    font-weight: 760 !important;
}

/* Expansão Newcastle: desktop em layout mais horizontal e equilibrado */
@media (min-width: 768px) {
    .franchise-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr) !important;
        gap: 34px 42px !important;
        align-items: center;
    }

    .franchise-copy {
        grid-column: auto !important;
    }

    .franchise-image-card {
        grid-column: auto !important;
        align-self: stretch;
    }

    .franchise-image-card img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        max-height: 360px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .franchise-image-card span {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .franchise-support-grid {
        grid-column: 1 / -1;
        margin-top: 6px;
        gap: 16px;
    }
}

@media (min-width: 1181px) {
    .franchise-support-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 768px) and (max-width: 1180px) {
    .franchise-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Termos do formulário: mantém o link inline e evita que o botão quebre estranho */
.form-check {
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.form-check label {
    display: block;
    min-width: 0;
}

.form-check button {
    display: inline !important;
    width: auto !important;
    min-width: 0 !important;
    white-space: nowrap;
    line-height: inherit;
    vertical-align: baseline;
}

/* Unidades: reduz respiro exagerado na parte inferior dos cards no desktop */
@media (min-width: 768px) {
    .unit-search-card {
        padding: 21px 21px 18px;
    }

    .unit-contact-line {
        margin-top: 14px;
        padding-top: 13px;
    }

    .unit-actions {
        margin-top: 13px;
        gap: 8px;
    }

    .unit-socials {
        margin-top: 9px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Ícone de viagem: mantém proporção e leitura visual */
.advantage-card:first-child .icon-badge svg {
    transform: rotate(-8deg);
}

/* Selects com mais respiro para a setinha */
.form-field select,
.units-filter-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 46px !important;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2314246b' d='M7 10l5 5 5-5H7Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 14px;
}

.form-field select:focus,
.units-filter-field select:focus {
    background-position: right 18px center;
}

/* Mobile: mantém conforto nas bordas e preserva leitura */
@media (max-width: 767px) {
    .hero-copy h1,
    .section-heading h2,
    .method-copy h2,
    .exam-band h2,
    .cta-panel h2,
    .faq-intro h2,
    .franchise-copy h2 {
        letter-spacing: -0.15px !important;
        line-height: 1.13 !important;
    }

    .form-check button {
        white-space: normal;
    }

    .franchise-image-card img {
        max-height: none;
    }
}

/* =====================================================
   FIM 21. AJUSTES FINAIS — HOME 2026 FINAL
===================================================== */


/* =====================================================
   AJUSTES FINAIS — HOME IMAGENS
===================================================== */
.testimonial-avatar {
    overflow: hidden;
    background: #eef1f7;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.section-heading h2,
.h2,
.hero h1,
.method-copy h2,
.exam-band h2,
.franchise-content h2,
.fly-band h2 {
    letter-spacing: -0.02em;
    line-height: 1.08;
}
@media (max-width: 767px) {
    .section-heading h2,
    .h2,
    .hero h1,
    .method-copy h2,
    .exam-band h2,
    .franchise-content h2,
    .fly-band h2 {
        letter-spacing: -0.01em;
        line-height: 1.12;
    }
}


/* =====================================================
   AJUSTES V6 — MENU, MOBILE, FORMULÁRIOS E VÍDEOS
===================================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, svg, video, iframe {
    max-width: 100%;
}

.loader-content span {
    display: none !important;
}

.inline-policy-link,
.footer-legal-link {
    display: inline !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: normal;
}

.form-check label,
.form-consent {
    align-items: flex-start;
    line-height: 1.45;
}

.nav-dropdown-menu {
    min-width: 190px;
}

.celebrity-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.celebrity-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 5vw, 52px);
    border: 1px solid rgba(20, 36, 107, .10);
    border-radius: var(--nci-radius-xl);
    background: radial-gradient(circle at 10% 0%, rgba(229, 52, 56, .16), transparent 34%), radial-gradient(circle at 100% 20%, rgba(20, 36, 107, .18), transparent 36%), #ffffff;
    box-shadow: var(--nci-shadow-soft);
}

.celebrity-heading {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.celebrity-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, .94fr);
    gap: 22px;
    align-items: stretch;
}

.celebrity-feature,
.celebrity-video-card {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.celebrity-feature {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 30px;
    background: #0f1f5e;
    box-shadow: 0 28px 70px rgba(12, 24, 70, .22);
    text-align: left;
}

.celebrity-feature-thumb {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform .55s ease;
}

.celebrity-feature:hover .celebrity-feature-thumb {
    transform: scale(1.08);
}

.celebrity-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 43, .05), rgba(7, 13, 43, .78));
}

.celebrity-play {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--nci-red);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.celebrity-play svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.celebrity-feature-text {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: #ffffff;
}

.celebrity-feature-text small,
.celebrity-feature-text em {
    display: block;
    color: rgba(255,255,255,.78);
    font-style: normal;
}

.celebrity-feature-text strong {
    display: block;
    margin: 8px 0 4px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.celebrity-video-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.celebrity-video-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 104px;
    padding: 10px;
    border: 1px solid rgba(20,36,107,.10);
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    color: var(--nci-ink);
    text-align: left;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(20,36,107,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.celebrity-video-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229,52,56,.28);
    box-shadow: 0 20px 42px rgba(20,36,107,.13);
}

.celebrity-thumb {
    display: block;
    width: 88px;
    height: 72px;
    border-radius: 16px;
    background-position: center;
    background-size: cover;
}

.celebrity-thumb-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nci-blue), var(--nci-red));
    color: #fff;
}

.celebrity-thumb-list svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.celebrity-video-card strong,
.celebrity-video-card small {
    display: block;
}

.celebrity-video-card small {
    margin-top: 4px;
    color: #7d8494;
    font-size: 12px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7,13,43,.78);
    backdrop-filter: blur(8px);
}

.video-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
}

.video-modal-frame {
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
    aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--nci-ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 767px) {
    .topbar-actions a[href^="mailto:"] {
        display: none !important;
    }

    .topbar-inner {
        gap: 10px;
    }

    .topbar-actions {
        min-width: 0;
    }

    .topbar-actions a {
        white-space: nowrap;
        font-size: 11px;
    }

    .topbar-social {
        gap: 8px;
    }

    .topbar-social a {
        width: 28px;
        height: 28px;
    }

    .main-nav.is-open {
        max-width: calc(100vw - 28px);
        overflow-x: hidden;
    }

    .nav-dropdown-menu {
        width: 100%;
        min-width: 0;
    }

    .celebrity-panel {
        padding: 22px;
        border-radius: 28px;
    }

    .celebrity-layout {
        grid-template-columns: 1fr;
    }

    .celebrity-feature {
        min-height: 300px;
    }

    .celebrity-video-menu {
        grid-template-columns: 1fr;
    }

    .celebrity-video-card {
        grid-template-columns: 92px 1fr;
    }

    .video-modal-close {
        top: -14px;
        right: -4px;
    }
}
/* =====================================================
   FIM AJUSTES V6
===================================================== */


/* =====================================================
   AJUSTES V7 — MENU, TERMOS, CELEBRIDADES E MOBILE
===================================================== */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    position: relative;
}

.container,
.header-inner,
.footer-grid,
.page-hero-grid,
.hero-inner,
.two-column-form,
.celebrity-layout,
.celebrity-panel,
.lead-panel,
form,
.nci-lead-form,
.form-grid {
    max-width: 100%;
    min-width: 0;
}

img,
svg,
iframe,
video {
    max-width: 100%;
}

.nav-dropdown-menu {
    min-width: 236px;
}

.nav-dropdown-menu a {
    white-space: nowrap;
}

.form-check {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 10px !important;
}

.form-check input,
.form-consent input {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
    margin-top: 3px !important;
}

.form-check label {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    gap: 0 !important;
    line-height: 1.55 !important;
}

.form-consent {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 10px !important;
    max-width: 100% !important;
    line-height: 1.55 !important;
}

.form-consent span {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.inline-policy-link,
.form-check label .inline-policy-link,
.form-consent .inline-policy-link,
.footer-legal-link {
    display: inline !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--nci-blue) !important;
    font: inherit !important;
    font-weight: 800 !important;
    line-height: inherit !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    white-space: nowrap !important;
}

.footer .footer-legal-link {
    color: rgba(255,255,255,.78) !important;
    font-weight: inherit !important;
}

.footer .footer-legal-link:hover {
    color: #ffffff !important;
}

.celebrity-section {
    background: #f2f4f8 !important;
}

.celebrity-panel {
    background: radial-gradient(circle at 8% 0%, rgba(229, 52, 56, .12), transparent 34%), radial-gradient(circle at 100% 12%, rgba(20, 36, 107, .13), transparent 34%), #ffffff !important;
}

.celebrity-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr) !important;
}

.celebrity-video-menu {
    grid-template-columns: 1fr !important;
    align-content: stretch;
    gap: 12px !important;
}

.celebrity-video-card {
    min-height: 86px !important;
    grid-template-columns: 94px minmax(0, 1fr) !important;
}

.celebrity-thumb {
    width: 94px !important;
    height: 66px !important;
}

.franchise-image-card > span {
    display: none !important;
}

@media (max-width: 1040px) {
    .celebrity-layout {
        grid-template-columns: 1fr !important;
    }

    .celebrity-video-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 28px, var(--nci-container)) !important;
    }

    .nav-dropdown-menu {
        min-width: 0;
    }

    .nav-dropdown-menu a {
        white-space: normal;
    }

    .celebrity-video-menu {
        grid-template-columns: 1fr !important;
    }

    .celebrity-video-card {
        grid-template-columns: 86px minmax(0, 1fr) !important;
    }

    .celebrity-thumb {
        width: 86px !important;
        height: 62px !important;
    }

    .inline-policy-link,
    .form-check label .inline-policy-link,
    .form-consent .inline-policy-link {
        white-space: nowrap !important;
    }
}
/* =====================================================
   FIM AJUSTES V7
===================================================== */

/* =====================================================
   AJUSTES V8 — NAVEGAÇÃO, MOBILE, WHATSAPP E NOVAS PÁGINAS
===================================================== */

/* Segurança contra estouro horizontal */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body,
.site-header,
.topbar,
.footer,
.hero,
.section,
.page-hero,
.page-section {
    max-width: 100%;
}

img,
iframe,
video,
svg {
    max-width: 100%;
}

.container,
.header-inner,
.topbar-inner,
.footer-grid,
.hero-inner,
.page-hero-grid,
.method-wrap,
.franchise-wrap,
.two-column-form,
.form-grid,
.units-grid,
.course-grid {
    min-width: 0;
}

/* Menu principal V8 */
.main-nav {
    gap: 22px;
}

.main-nav > a,
.nav-dropdown-toggle {
    font-weight: 730;
}

.main-nav > a.is-active {
    color: var(--nci-red);
}

.nav-dropdown {
    position: relative;
    z-index: 80;
}

.nav-dropdown-toggle {
    cursor: pointer;
    touch-action: manipulation;
}

.nav-dropdown-menu {
    z-index: 1600 !important;
    min-width: 240px;
}

/* Destaque amarelo em heróis internos */
.page-hero .accent-yellow {
    color: #f4c542;
}

.page-hero::before,
.page-hero::after {
    pointer-events: none;
}

/* Observações de horário sempre menores */
.schedule-note,
.hero-pills-note,
.page-note {
    font-size: 11px !important;
    line-height: 1.5 !important;
    letter-spacing: .01em;
}

/* Botões das unidades sem brilho */
.unit-card .btn-primary,
.unit-search-card .btn-primary,
.units-page-section .btn-primary {
    box-shadow: none !important;
    filter: none !important;
}

.unit-card .btn-primary::before,
.unit-card .btn-primary::after,
.unit-search-card .btn-primary::before,
.unit-search-card .btn-primary::after {
    display: none !important;
    content: none !important;
}

/* Rodapé — mais mídias */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Badge reCAPTCHA parcialmente recolhido */
.grecaptcha-badge {
    right: -248px !important;
    bottom: 90px !important;
    opacity: .75 !important;
    transition: right .25s ease, opacity .25s ease !important;
}

.grecaptcha-badge:hover,
.grecaptcha-badge:focus-within {
    right: 0 !important;
    opacity: 1 !important;
}

/* WhatsApp flutuante — apenas onde o bloco existe */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-fab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 19px;
    border: 0;
    border-radius: 999px;
    background: #24d366;
    color: #062e17;
    font-family: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(21, 124, 58, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(21, 124, 58, .34);
}

.whatsapp-fab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.whatsapp-panel {
    width: min(360px, calc(100vw - 28px));
    padding: 22px;
    border: 1px solid rgba(20, 36, 107, .12);
    border-radius: 26px;
    background: #ffffff;
    color: var(--nci-ink);
    box-shadow: 0 28px 80px rgba(7, 18, 55, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.98);
    transition: .22s ease;
}

.whatsapp-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-panel-close {
    float: right;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--nci-soft);
    color: var(--nci-ink);
    font-size: 22px;
    cursor: pointer;
}

.whatsapp-panel-kicker {
    display: block;
    color: var(--nci-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.whatsapp-panel > strong {
    display: block;
    margin: 8px 0 5px;
    font-size: 22px;
}

.whatsapp-panel p {
    margin: 0 0 16px;
    color: var(--nci-muted);
    font-size: 13px;
    line-height: 1.55;
}

.whatsapp-panel label {
    display: block;
    margin: 12px 0 6px;
    color: var(--nci-ink);
    font-size: 12px;
    font-weight: 800;
}

.whatsapp-panel select,
.whatsapp-panel textarea {
    width: 100%;
    border: 1px solid var(--nci-line);
    border-radius: 14px;
    background: #fff;
    color: var(--nci-ink);
    font: inherit;
}

.whatsapp-panel select {
    min-height: 44px;
    padding: 0 42px 0 13px;
}

.whatsapp-panel textarea {
    resize: vertical;
    padding: 12px 13px;
}

.whatsapp-send {
    width: 100%;
    margin-top: 14px;
}

/* Depoimentos da home — controle mobile */
.testimonial-controls {
    display: none;
}

/* Celebridades — grade uniforme 3 x 3 */
.celebrity-section {
    background: #eef1f6 !important;
}

.celebrity-panel {
    background:
        radial-gradient(circle at 8% 0%, rgba(229, 52, 56, .11), transparent 32%),
        radial-gradient(circle at 100% 18%, rgba(20, 36, 107, .12), transparent 34%),
        #ffffff !important;
}

.celebrity-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.celebrity-video-grid .celebrity-video-card {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    min-height: 98px !important;
    width: 100%;
}

.celebrity-video-grid .celebrity-thumb {
    width: 112px !important;
    height: 76px !important;
}

/* Expansão Newcastle — imagem inteira */
.franchise-image-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

#franquia .franchise-image-card img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: contain !important;
    object-position: center;
    background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

/* Curso Teens — observação específica */
.course-method-note {
    margin-top: 16px;
    padding: 12px 14px;
    border-left: 3px solid #f4c542;
    background: rgba(244, 197, 66, .12);
    color: #6e5a18;
    font-size: 12px;
    line-height: 1.55;
}

/* Hotmart */
.hotmart-inline-brand {
    margin-bottom: 18px;
}

.hotmart-inline-brand img,
.hotmart-brand img {
    width: 150px;
    height: auto;
}

.hotmart-hero-video {
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 30px;
    background: rgba(255,255,255,.10);
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.hotmart-hero-video .hotmart-brand {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.hotmart-hero-video .video-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(244,197,66,.16);
    color: #f7d46e;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.responsive-video {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.responsive-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hotmart-hero-video p {
    margin: 14px 0 0;
    color: rgba(255,255,255,.78) !important;
    font-size: 13px;
}

.online-popup-heading {
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(135deg, rgba(240,78,35,.22), rgba(255,255,255,.04));
    color: #fff;
}

.online-popup-heading span {
    display: block;
    color: #ff8b5d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.online-popup-heading strong {
    display: block;
    margin: 6px 0;
    font-size: 24px;
}

.online-popup-heading p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

/* Mobile */
@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    .container {
        width: min(100% - 28px, var(--nci-container)) !important;
    }

    /* Topo: WhatsApp à esquerda e mídias à direita */
    .topbar-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .topbar-actions,
    .topbar-social {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        margin: 0 !important;
    }

    .topbar-email,
    .topbar-actions a[href^="mailto:"] {
        display: none !important;
    }

    .topbar-whatsapp {
        display: inline-flex !important;
        width: 34px !important;
        height: 34px !important;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        border-radius: 50%;
    }

    .topbar-whatsapp-label {
        display: none !important;
    }

    .topbar-whatsapp svg {
        width: 19px !important;
        height: 19px !important;
    }

    .topbar-social {
        gap: 7px !important;
    }

    .topbar-social a {
        width: 30px !important;
        height: 30px !important;
    }

    /* Menu mobile e dropdown confiáveis */
    .main-nav {
        z-index: 1600 !important;
        width: calc(100vw - 28px) !important;
        max-width: calc(100vw - 28px) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .main-nav > a,
    .nav-dropdown-toggle {
        width: 100%;
    }

    .nav-dropdown,
    .nav-dropdown-menu {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .nav-dropdown-menu {
        position: static !important;
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        margin: 0 0 8px !important;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block !important;
    }

    .nav-dropdown-menu a {
        white-space: normal !important;
    }

    /* WhatsApp flutuante */
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-fab {
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-fab span {
        display: none;
    }

    .grecaptcha-badge {
        bottom: 78px !important;
    }

    /* Home — cursos: presencial, online e Teens */
    #cursos .course-grid .course-card:nth-child(n+5) {
        display: none !important;
    }

    /* Home — método: passos logo após o título */
    #metodo .method-wrap > .method-visual:not(.mobile-method-steps) {
        display: none !important;
    }

    .mobile-method-steps {
        display: block !important;
        margin: 22px 0 26px;
    }

    .mobile-method-steps .method-visual-card {
        display: grid;
        gap: 12px;
        min-height: 0;
        padding: 18px;
    }

    .mobile-method-steps .method-bubble,
    .mobile-method-steps .method-bubble:nth-child(2) {
        position: static;
        width: 100%;
        transform: none;
    }

    /* Home — depoimentos: um por vez */
    .testimonial-track {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }

    .testimonial-track::-webkit-scrollbar {
        display: none;
    }

    .testimonial-track .testimonial-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .testimonial-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 18px;
    }

    .testimonial-controls button {
        width: 38px;
        height: 38px;
        border: 1px solid var(--nci-line);
        border-radius: 50%;
        background: #fff;
        color: var(--nci-blue);
        font-size: 24px;
        cursor: pointer;
    }

    .testimonial-controls span {
        color: var(--nci-muted);
        font-size: 11px;
    }

    /* Home — celebridades: 3 vídeos + playlist */
    .celebrity-video-grid {
        grid-template-columns: 1fr !important;
    }

    .celebrity-video-grid .celebrity-video-card {
        display: none !important;
        grid-template-columns: 92px minmax(0, 1fr) !important;
    }

    .celebrity-video-grid .celebrity-video-card:nth-child(-n+3),
    .celebrity-video-grid .celebrity-playlist-card {
        display: grid !important;
    }

    .celebrity-video-grid .celebrity-thumb {
        width: 92px !important;
        height: 66px !important;
    }

    /* Home — expansão: texto + imagem da mulher; sem steps */
    #franquia .franchise-wrap {
        grid-template-columns: 1fr !important;
    }

    #franquia .franchise-copy {
        text-align: center;
    }

    #franquia .franchise-actions {
        justify-content: center;
    }

    #franquia .franchise-support-grid {
        display: none !important;
    }

    #franquia .franchise-image-card {
        order: 2;
    }

    #franquia .franchise-image-card img {
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 10;
        object-fit: cover !important;
        object-position: center;
    }

    /* Cards/grades */
    .celebrity-panel,
    .lead-panel,
    .media-card,
    .exam-choice-card,
    .course-detail-card,
    .feature-card,
    .unit-card {
        max-width: 100%;
        min-width: 0;
    }
}

@media (min-width: 768px) {
    .mobile-method-steps {
        display: none !important;
    }
}

/* =====================================================
   FIM AJUSTES V8
===================================================== */

/* Links de consentimento podem quebrar naturalmente sem estourar a largura */
.inline-policy-link,
.form-check label .inline-policy-link,
.form-consent .inline-policy-link {
    white-space: normal !important;
    overflow-wrap: anywhere;
}

.form-consent span,
.form-check label {
    overflow-wrap: anywhere;
}


/* =====================================================
   AJUSTES V9 — CARROSSEL, NAVEGAÇÃO, UNIDADES E ACESSIBILIDADE
===================================================== */

/* Barra de rolagem personalizada */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--nci-red) #e9edf5;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: #e9edf5;
}

::-webkit-scrollbar-thumb {
    border: 3px solid #e9edf5;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--nci-red), #b92129);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nci-blue);
}

/* Menu sempre acima das seções */
.site-header {
    position: relative;
    z-index: 5000 !important;
    overflow: visible !important;
}

.header-inner,
.main-nav,
.nav-dropdown {
    overflow: visible !important;
}

.nav-dropdown {
    z-index: 5100 !important;
}

.nav-dropdown-menu {
    z-index: 5200 !important;
    isolation: isolate;
}

/* O painel invisível do WhatsApp não bloqueia a página */
.whatsapp-float {
    pointer-events: none;
    bottom: 86px;
}

.whatsapp-fab,
.whatsapp-panel.is-open,
.whatsapp-panel.is-open * {
    pointer-events: auto;
}

.whatsapp-panel {
    pointer-events: none;
}

/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9996;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(20,36,107,.12);
    border-radius: 50%;
    background: #ffffff;
    color: var(--nci-blue);
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(7,18,55,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .22s ease, color .22s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--nci-blue);
    color: #ffffff;
}

.back-to-top svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

/* Reconhecimento: controles apenas no mobile */
.recognition-controls {
    display: none;
}

/* Celebridades: 3 colunas x 2 linhas no desktop */
.celebrity-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.celebrity-video-grid .celebrity-video-card {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    min-height: 96px !important;
}

.celebrity-video-grid .celebrity-thumb {
    width: 104px !important;
    height: 72px !important;
}

/* Página de cursos — faixa TOEIC */
.courses-exam-section {
    background: #ffffff;
}

.courses-exam-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.courses-exam-actions .btn-ghost-light {
    border-color: rgba(255,255,255,.55);
    color: #ffffff;
}

/* Hotmart: centralização visual da marca */
.hotmart-page #vantagens .hotmart-inline-brand,
.hotmart-page #modulos .hotmart-inline-brand {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.hotmart-page #vantagens .section-heading,
.hotmart-page #modulos .section-heading {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 767px) {
    /* Topbar: somente o número, sem a palavra WhatsApp */
    .topbar-whatsapp {
        width: auto !important;
        min-width: 0 !important;
        height: 34px !important;
        padding: 0 10px 0 8px !important;
        gap: 7px !important;
        border-radius: 999px !important;
    }

    .topbar-whatsapp-label {
        display: inline-flex !important;
        align-items: center;
        color: inherit;
        font-size: 11px;
        font-weight: 800;
        white-space: nowrap;
    }

    .topbar-whatsapp-prefix {
        display: none !important;
    }

    .topbar-whatsapp-number {
        display: inline !important;
    }

    /* Reconhecimento: um vídeo por vez com rolagem lateral */
    .recognition-video-track {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        overflow-x: auto !important;
        padding: 2px 2px 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }

    .recognition-video-track::-webkit-scrollbar {
        display: none;
    }

    .recognition-video-track > .video-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }

    .recognition-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    .recognition-controls button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border: 1px solid var(--nci-line);
        border-radius: 50%;
        background: #ffffff;
        color: var(--nci-blue);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }

    .recognition-controls span {
        color: var(--nci-muted);
        font-size: 11px;
        text-align: center;
    }

    /* WhatsApp acima da seta de topo */
    .whatsapp-float {
        right: 14px;
        bottom: 76px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }

    .grecaptcha-badge {
        bottom: 138px !important;
    }

    /* Home: somente Matriz no carregamento mobile; desktop permanece com todas */
    .home-page #unidades .units-grid {
        grid-template-columns: 1fr !important;
    }

    /* Franquia: comportamento visual da V7 no mobile */
    .franchise-page .timeline-mobile-controls {
        display: none !important;
    }

    .franchise-page .timeline-modern {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
        scroll-snap-type: none !important;
    }

    .franchise-page .timeline-modern article {
        min-height: 0 !important;
        width: auto !important;
        flex: none !important;
    }

    .franchise-page .franchise-history-media .media-card {
        display: block !important;
    }

    .franchise-page .franchise-history-media .media-card img {
        min-height: 0 !important;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    /* TOEIC em Cursos */
    .courses-exam-actions {
        width: 100%;
        justify-content: stretch;
    }

    .courses-exam-actions .btn {
        width: 100%;
    }
}


/* =====================================================
   FIM AJUSTES V9
===================================================== */


/* =====================================================
   AJUSTES FINAIS V10
===================================================== */

html { scrollbar-color: var(--nci-red) #eef2fb; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #eef2fb; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--nci-red), #a71d2b); border-radius: 999px; border: 3px solid #eef2fb; }

/* Menu principal com botão vermelho para Mais opções */
.nav-dropdown-toggle {
    padding: 11px 16px;
    border: 1px solid var(--nci-red);
    border-radius: 999px;
    background: var(--nci-red);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(229,52,56,.18);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:focus { color: #ffffff; background: #c52a31; border-color: #c52a31; }
.nav-dropdown-menu { top: calc(100% + 12px); }
.site-header, .header-inner, .main-nav, .nav-dropdown, .nav-dropdown-menu { overflow: visible !important; }
.site-header { box-shadow: 0 10px 26px rgba(9,18,62,.06); }

/* Topbar mobile */
@media (max-width: 767px) {
    .topbar-whatsapp-prefix { display: none !important; }
    .topbar-whatsapp-label { gap: 0; }
    .nav-dropdown-menu a { padding: 10px 12px; }
}

/* Formulários — evitar quebra nos links de políticas */
.form-consent { display: flex; align-items: flex-start; gap: 10px; }
.form-consent span { flex: 1; min-width: 0; }
.inline-policy-link, .footer-legal-link { display: inline !important; white-space: nowrap; }
.form-field label { word-break: normal; }

/* Botões outline */
.btn-line, .btn-ghost-light, .btn.btn-line, .btn.btn-ghost-light {
    border-width: 1px !important;
    border-style: solid !important;
}

/* Seção de logos parceiros na home */
.partners-marquee-section { padding-top: 8px; }
.compact-heading { margin-bottom: 22px; }
.brand-marquee { position: relative; overflow: hidden; padding: 10px 0; }
.brand-marquee::before, .brand-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 86px; z-index: 2; pointer-events: none; }
.brand-marquee::before { left: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%); }
.brand-marquee::after { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }
.brand-track { display: flex; align-items: center; gap: 18px; width: max-content; animation: partner-marquee 34s linear infinite; }
.brand-logo-slot { display: inline-flex; align-items: center; justify-content: center; min-width: 152px; height: 74px; padding: 0 20px; border: 1px solid var(--nci-line); border-radius: 22px; background: #fff; color: #7b8498; filter: grayscale(1); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
@keyframes partner-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Vídeos de alunos */
.student-video-section { background: linear-gradient(180deg, #fbfcff 0%, #f2f5ff 100%); }
.student-video-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.student-video-track::-webkit-scrollbar { display: none; }
.student-video-track .student-video-card { flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start; }
.student-video-card { display: flex; flex-direction: column; gap: 10px; padding: 14px; border: 1px solid var(--nci-line); border-radius: 24px; background: #fff; color: var(--nci-blue); text-align: left; box-shadow: var(--nci-shadow-soft); }
.student-video-thumb { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 18px; background-size: cover; background-position: center; }
.student-video-card strong { font-size: 17px; }
.student-video-card small { color: var(--nci-muted); }
.student-video-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }

/* Celebridades home */
.celebrity-section { background: linear-gradient(180deg, #f6f7fb 0%, #ebeff8 100%); }
.celebrity-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.celebrity-playlist-card { display: grid !important; align-items: center; }
.celebrity-playlist-thumb { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--nci-red), #16235a) !important; }
.celebrity-playlist-thumb::before { content: '▶'; font-size: 34px; color: #fff; }

/* Depoimentos */
#depoimentos .testimonial-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
#depoimentos .testimonial-controls { display: none; }

/* Home franquia / expansão */
#franquia .franchise-image-card, #franquia .franchise-image-card picture, #franquia .franchise-image-card img {
    background: transparent !important;
}
#franquia .franchise-image-card { display:flex; align-items:center; justify-content:center; overflow:hidden; }
#franquia .franchise-image-card img { width: 100%; height: auto; min-height: 0; object-fit: contain !important; }

/* Unidades mini / cards */
.unit-mini-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.unit-mini-actions a { min-width: auto; }
#contato-form .info-pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* TOEIC cards white text fix */
.toeic-page .modules-grid .module-card, .toeic-page .modules-grid .module-card p, .toeic-page .modules-grid .module-card h3, .toeic-page .modules-grid .module-card span {
    color: var(--nci-ink) !important;
}
.toeic-page .modules-grid .module-card { background: #fff; border: 1px solid var(--nci-line); }

/* Formulários iniciais com caixa padrão */
.page-hero .lead-panel, .two-column-form .lead-panel { box-shadow: var(--nci-shadow-soft); }

/* Parceiros */
.partner-hero { background: radial-gradient(circle at 14% 16%, rgba(229,52,56,.46), transparent 30%), radial-gradient(circle at 86% 22%, rgba(244,197,66,.24), transparent 30%), linear-gradient(135deg, #08113c 0%, #172b7a 52%, #0b1544 100%); color: #fff; }
.single-copy-hero { grid-template-columns: 1fr !important; }
.partners-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.partner-card { display: flex; flex-direction: column; gap: 14px; padding: 22px; border: 1px solid var(--nci-line); border-radius: 26px; background: #fff; box-shadow: var(--nci-shadow-soft); }
.partner-logo-slot { display: flex; align-items:center; justify-content:center; height: 96px; border: 1px dashed rgba(20,36,107,.24); border-radius: 20px; background: #f8faff; color: #7b8498; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.partner-card h3 { margin: 0; color: var(--nci-blue); font-size: 20px; }
.partner-card p { margin: 0; color: var(--nci-muted); font-size: 14px; line-height: 1.6; }
.partner-card-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: auto; }
.partner-socials { display: flex; gap: 12px; }
.partner-socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--nci-soft); color: var(--nci-blue); }
.partner-socials svg { width: 18px; height: 18px; fill: currentColor; }
.partners-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.partners-pagination button { width: 42px; height: 42px; border: 1px solid var(--nci-line); border-radius: 50%; background: #fff; color: var(--nci-blue); font-weight: 800; }
.partners-pagination button.is-active { background: var(--nci-red); color: #fff; border-color: var(--nci-red); }
.partner-modal-socials { display:flex; gap:12px; margin:18px 0; }

@media (max-width: 991px) {
    .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    #depoimentos .testimonial-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .student-video-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .brand-logo-slot { min-width: 126px; height: 62px; font-size: 11px; }
    .student-video-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .student-video-track::-webkit-scrollbar { display: none; }
    .student-video-track .student-video-card { flex: 0 0 100%; scroll-snap-align: start; }
    .student-video-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
    #depoimentos .testimonial-track { display: flex !important; gap: 14px !important; overflow-x: auto; scroll-snap-type: x mandatory; }
    #depoimentos .testimonial-track .testimonial-card { flex: 0 0 100%; scroll-snap-align: start; }
    #depoimentos .testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
    .celebrity-video-grid { grid-template-columns: 1fr !important; }
    .celebrity-video-grid .celebrity-video-card { display: none !important; grid-template-columns: 92px minmax(0,1fr) !important; }
    .celebrity-video-grid .celebrity-video-card:nth-child(-n+3), .celebrity-video-grid .celebrity-playlist-card { display: grid !important; }
    .partner-card { padding: 18px; }
    .partners-grid { grid-template-columns: 1fr; }
    #contato-form .info-pill-grid { grid-template-columns: 1fr; }
    .courses-page .course-card h3 { text-align: left; }
    .franchise-page .timeline-media-stack .media-card:not(:first-child) { display: none; }
}


/* =====================================================
   AJUSTES V10.1
===================================================== */

/* Menu principal sempre visível durante a rolagem */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10050 !important;
    width: 100%;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 10px 28px rgba(9, 18, 62, .08);
    backdrop-filter: blur(14px);
}

/* Bloco único de experiências da home */
.home-experience-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fc 100%);
}

.home-experience-heading {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    padding: 9px 14px;
    border: 1px solid rgba(20, 36, 107, .09);
    border-radius: 999px;
    background: #ffffff;
    color: var(--nci-ink);
    box-shadow: 0 12px 28px rgba(9, 18, 62, .08);
}

.google-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4285f4;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.google-rating-badge strong {
    font-size: 13px;
}

.google-stars {
    color: #f4b400;
    letter-spacing: 1px;
}

.story-video-wrap,
.written-testimonials-wrap {
    position: relative;
}

.story-video-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.story-video-track::-webkit-scrollbar,
.written-testimonial-track::-webkit-scrollbar {
    display: none;
}

.story-video-card {
    position: relative;
    flex: 0 0 calc((100% - 54px) / 4);
    aspect-ratio: 9 / 16;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: #0d173f;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: 0 18px 44px rgba(9, 18, 62, .16);
}

.story-video-card > span {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform .45s ease;
}

.story-video-card:hover > span {
    transform: scale(1.05);
}

.story-video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 43, .02), rgba(7, 13, 43, .34));
}

.story-video-card i {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--nci-red);
    font-style: normal;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.story-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 4px 0 36px;
}

.story-controls button,
.written-testimonial-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--nci-line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--nci-blue);
    font-size: 26px;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.story-controls button:hover,
.written-testimonial-controls button:hover {
    transform: translateY(-2px);
    background: var(--nci-blue);
    color: #ffffff;
}

.written-testimonial-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 18px !important;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.written-testimonial-track .testimonial-card {
    flex: 0 0 calc((100% - 36px) / 3);
    scroll-snap-align: start;
}

.written-testimonial-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.written-testimonial-controls span {
    color: var(--nci-muted);
    font-size: 12px;
}

/* Marcas parceiras simplificada */
.partners-marquee-section {
    background: var(--nci-soft) !important;
}

.partners-marquee-section .compact-heading {
    margin-bottom: 18px;
    text-align: center;
}

.brand-marquee-title {
    margin: 0;
    color: var(--nci-blue);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.partners-marquee-section .brand-marquee::before {
    background: linear-gradient(90deg, var(--nci-soft) 0%, rgba(246,248,255,0) 100%);
}

.partners-marquee-section .brand-marquee::after {
    background: linear-gradient(270deg, var(--nci-soft) 0%, rgba(246,248,255,0) 100%);
}

@media (max-width: 991px) {
    .story-video-card {
        flex-basis: calc((100% - 36px) / 3);
    }
}

@media (max-width: 767px) {
    .story-video-card {
        flex: 0 0 78%;
        border-radius: 22px;
    }

    .written-testimonial-track .testimonial-card {
        flex: 0 0 100%;
    }

    .google-rating-badge {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =====================================================
   FIM AJUSTES V10.1
===================================================== */


/* =====================================================
   AJUSTES V10.2
===================================================== */

/* Contorno visível nos CTAs claros das páginas TOEIC e Unidades */
.toeic-page .page-hero .btn-ghost-light,
.units-page .page-hero .btn-ghost-light {
    border: 1px solid rgba(255,255,255,.72) !important;
    background: transparent !important;
    color: #ffffff !important;
}

.toeic-page .page-hero .btn-ghost-light:hover,
.units-page .page-hero .btn-ghost-light:hover {
    border-color: #ffffff !important;
    background: #ffffff !important;
    color: var(--nci-blue) !important;
}

@media (max-width: 767px) {
    /* Home: cria respiro entre a miniatura e os textos dos depoimentos de celebridades */
    .home-page .celebrity-video-grid .celebrity-video-card {
        column-gap: 14px !important;
        align-items: center;
    }

    .home-page .celebrity-video-card > span:last-child {
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
        padding-left: 2px;
    }

    .home-page .celebrity-video-card strong {
        line-height: 1.2;
    }

    /* Cursos: somente os nomes dos cursos alinhados à esquerda */
    .courses-page #cursos .course-detail-text h3,
    .courses-page .course-detail-text h3,
    .courses-page .course-card-body h3 {
        width: 100%;
        text-align: left !important;
    }
}

/* =====================================================
   AJUSTES V10.3 — HOME
===================================================== */
/* Experiências reais: remove o efeito de sombra inferior dos vídeos e comentários */
.home-page .home-experience-section .story-video-card,
.home-page .home-experience-section .written-testimonial-track .testimonial-card {
    box-shadow: none !important;
}

.home-page .home-experience-section .story-video-card {
    border: 1px solid rgba(20, 36, 107, .10);
}

.home-page .home-experience-section .written-testimonial-track .testimonial-card {
    border: 1px solid rgba(20, 36, 107, .10);
}

@media (max-width: 767px) {
    /* Celebridades: mais respiro entre a miniatura e o bloco de texto */
    .home-page .celebrity-video-grid .celebrity-video-card {
        grid-template-columns: 92px minmax(0, 1fr) !important;
        column-gap: 20px !important;
        padding: 12px 14px !important;
    }

    .home-page .celebrity-video-grid .celebrity-thumb {
        width: 92px !important;
        height: 68px !important;
    }

    .home-page .celebrity-video-card > span:last-child {
        gap: 7px !important;
        padding-left: 0 !important;
    }
}
/* =====================================================
   FIM AJUSTES V10.3 — HOME
===================================================== */

#franquia .franchise-image-card img {
    width: 100% !important;
    height: 100% !important;
    min-height: 380px;
    object-fit: cover !important;
    object-position: center top;
}

