/* CITSolar - Main Stylesheet */

:root {
    --red: #E40311;
    --red-dark: #C4020E;
    --red-light: #FDE8E9;
    --yellow: #FFC410;
    --yellow-dark: #E5AA00;
    --yellow-light: #FFF7E0;
    --dark: #0F1629;
    --dark-mid: #1A2038;
    --text: #1A2038;
    --text-secondary: #5A6178;
    --text-muted: #8C91A6;
    --white: #FFFFFF;
    --bg: #FAFBFE;
    --card-border: #E8EAF2;
    --card-hover: #C8CDE6;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── BACKGROUND ── */
.bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(228,3,17,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(228,3,17,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
    position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
    z-index: 100; width: 100%; max-width: 1120px;
    padding: 0 32px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,251,254,0.9);
    backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.nav__logo { height: 58px !important; max-height: 58px !important; width: auto !important; object-fit: contain; }
.nav img { height: 58px !important; max-height: 58px !important; width: auto !important; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
    font-size: 14px; font-weight: 600; color: var(--text-secondary);
    transition: color 0.2s; position: relative;
}
.nav__link:hover { color: var(--red); }
.nav__link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--red);
    transition: width 0.25s;
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
    font-family: var(--font-mono); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 10px 24px; background: var(--red); color: var(--white);
    border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s;
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(228,3,17,0.25); }

/* NAV DROPDOWN */
.nav__dropdown { position: relative; }
.nav__link--dropdown { display: inline-flex; align-items: center; gap: 4px; }
.nav__link--dropdown::after { display: none; }
.nav__dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.25s;
    padding-top: 16px;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown-inner {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15,22,41,0.1);
    padding: 24px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; min-width: 520px;
}
.nav__dropdown-label {
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-muted); margin-bottom: 12px;
}
.nav__dropdown-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 12px; border-radius: 10px;
    transition: background 0.2s;
}
.nav__dropdown-item:hover { background: var(--bg); }
.nav__dropdown-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav__dropdown-icon--red { background: var(--red-light); color: var(--red); }
.nav__dropdown-icon--blue { background: #E8F0FE; color: #3657E4; }
.nav__dropdown-icon--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.nav__dropdown-icon--green { background: #E8F9EE; color: #22A652; }
.nav__dropdown-icon--purple { background: #F0E8FE; color: #7C3AED; }
.nav__dropdown-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.nav__dropdown-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* MOBILE NAV */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s; }

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.section { position: relative; z-index: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em; color: var(--red); margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
    letter-spacing: -0.03em; color: var(--dark); line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
    font-size: 16px; color: var(--text-secondary); line-height: 1.65;
    max-width: 560px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    font-family: var(--font-mono); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 15px 32px; border-radius: 10px; border: none;
    cursor: pointer; transition: all 0.25s; display: inline-flex;
    align-items: center; gap: 8px;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(228,3,17,0.25); }
.btn--secondary { background: var(--white); color: var(--dark); border: 1px solid var(--card-border); }
.btn--secondary:hover { border-color: var(--card-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.btn--yellow { background: var(--yellow); color: var(--dark); }
.btn--yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,196,16,0.25); }
.btn--ghost {
    background: transparent; color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--white); transform: translateY(-2px); }
.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.25); }

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.breadcrumbs {
    padding: 88px 0 0; position: relative; z-index: 1;
}
.breadcrumbs__list {
    list-style: none; display: flex; align-items: center; gap: 0;
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text-muted);
}
.breadcrumbs__list li { display: flex; align-items: center; }
.breadcrumbs__list li::after {
    content: '/'; margin: 0 8px; color: var(--card-border);
}
.breadcrumbs__list li:last-child::after { display: none; }
.breadcrumbs__list a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs__list a:hover { color: var(--red); }
.breadcrumbs__list li:last-child { color: var(--text-secondary); }

/* ═══════════════════════════════════════
   PAGE HERO (shared across pages)
   ═══════════════════════════════════════ */
.page-hero { padding: 140px 0 60px; }
.breadcrumbs + .page-hero { padding-top: 32px; }
.breadcrumbs + .article-hero { padding-top: 32px; }
.page-hero__inner { max-width: 720px; }
.page-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.04em; color: var(--dark);
    margin-bottom: 20px;
}
.page-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--red), #FF3D47);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero__subtitle {
    font-size: 17px; color: var(--text-secondary); line-height: 1.7;
    max-width: 560px;
}
.page-hero__back {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--red); margin-bottom: 24px;
    transition: gap 0.25s;
}
.page-hero__back:hover { gap: 10px; }

/* ═══════════════════════════════════════
   HERO (homepage)
   ═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute;
    top: -100px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(228,3,17,0.06), transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,196,16,0.06), transparent 60%);
    pointer-events: none;
}
.hero__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--red); background: var(--red-light);
    border: 1px solid rgba(228,3,17,0.15);
    padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}
.hero__title {
    font-size: clamp(2.6rem, 5.5vw, 3.8rem); font-weight: 800;
    line-height: 1.06; letter-spacing: -0.04em; color: var(--dark);
    margin-bottom: 20px; animation: fadeInUp 0.6s 0.1s ease both;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--red), #FF3D47);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle {
    font-size: 17px; color: var(--text-secondary); line-height: 1.7;
    max-width: 480px; margin-bottom: 36px;
    animation: fadeInUp 0.6s 0.2s ease both;
}
.hero__actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.3s ease both;
}
.hero__visual {
    position: relative;
    animation: fadeInUp 0.6s 0.35s ease both;
}
.hero__image-wrapper {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 40px rgba(15,22,41,0.08);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--red-light), var(--yellow-light));
    display: flex; align-items: center; justify-content: center;
}
.hero__image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-placeholder {
    font-size: 14px; color: var(--text-muted); font-weight: 500;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__image-placeholder svg { opacity: 0.3; }
.hero__float-card {
    position: absolute; bottom: -20px; left: -24px;
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 14px; padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 12px;
}
.hero__float-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--yellow-light); display: flex;
    align-items: center; justify-content: center;
    font-size: 20px;
}
.hero__float-number { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; }
.hero__float-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats { padding: 0; margin-top: -40px; position: relative; z-index: 2; }
.stats__bar {
    background: var(--dark); border-radius: 16px;
    padding: 36px 48px; display: grid;
    grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.stat { text-align: center; }
.stat__number {
    font-size: 32px; font-weight: 800; letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--yellow), #FFAB00);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 4px;
}
.stat__label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }

/* ═══════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════ */
.services { padding: 120px 0; }
.services__header { text-align: center; margin-bottom: 56px; }
.services__header .section-subtitle { margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 18px; padding: 36px 32px;
    transition: all 0.35s; position: relative; overflow: hidden;
    box-shadow: 0 1px 3px rgba(15,22,41,0.02);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--card-border);
    transition: background 0.35s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(228,3,17,0.08);
    border-color: var(--card-hover);
}
.service-card:hover::before { background: linear-gradient(90deg, var(--red), var(--yellow)); }
.service-card__icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 24px;
}
.service-card__icon--cursos { background: var(--red-light); color: var(--red); }
.service-card__icon--academia { background: #E8F0FE; color: #3657E4; }
.service-card__icon--cert { background: var(--yellow-light); color: var(--yellow-dark); }
.service-card__icon--tienda { background: #E8F9EE; color: #22A652; }
.service-card__icon svg { stroke: currentColor; }
.service-card__title {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin-bottom: 10px; letter-spacing: -0.02em;
}
.service-card__text {
    font-size: 15px; color: var(--text-secondary); line-height: 1.6;
    margin-bottom: 24px;
}
.service-card__link {
    font-family: var(--font-mono); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--red); display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.25s;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about { padding: 100px 0 120px; }
.about__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.about__visual {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 40px rgba(15,22,41,0.06);
    aspect-ratio: 5/4;
    background: linear-gradient(135deg, var(--yellow-light), var(--red-light));
    display: flex; align-items: center; justify-content: center;
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__content .section-subtitle { margin-bottom: 28px; }
.about__features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about__feature {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px; color: var(--text-secondary); line-height: 1.55;
}
.about__feature-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--red-light); display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.about__feature-icon svg { color: var(--red); }

/* ═══════════════════════════════════════
   ABOUT PAGE CARDS
   ═══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 18px; padding: 36px 32px;
    transition: all 0.35s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.about-card__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--red-light); color: var(--red);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.about-card__icon--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.about-card__icon--blue { background: #E8F0FE; color: #3657E4; }
.about-card__title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.about-card__text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-item {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 32px 28px; transition: all 0.35s;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.feature-item__number {
    font-family: var(--font-mono); font-size: 32px; font-weight: 700;
    color: var(--red-light); margin-bottom: 12px;
}
.feature-item__title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-item__text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════
   COURSE CARDS
   ═══════════════════════════════════════ */
.courses { padding: 120px 0; background: var(--white); }
.courses__header { margin-bottom: 56px; }
.courses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.courses__grid--duo { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-right: auto; }

/* Course rows (página de cursos presenciales) */
.course-row {
    display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 0;
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 20px; overflow: hidden; margin-bottom: 28px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.course-row:hover { box-shadow: 0 18px 48px rgba(0,0,0,0.10); transform: translateY(-3px); }
.course-row__image { position: relative; min-height: 300px; background: var(--bg); }
.course-row__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.course-row__body { padding: 38px 42px; }
.course-row__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.course-row__title {
    font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800;
    letter-spacing: -0.03em; color: var(--dark); line-height: 1.18; margin-bottom: 14px;
}
.course-row__desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.course-row__topics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 30px; }
.course-row__topic { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-secondary); }
.course-row__topic svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.course-row__footer { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) {
    .course-row { grid-template-columns: 1fr; }
    .course-row__image { min-height: 220px; }
    .course-row__body { padding: 30px 26px; }
    .course-row__topics { grid-template-columns: 1fr; }
}
.course-card {
    background: var(--bg); border: 1px solid var(--card-border);
    border-radius: 16px; overflow: hidden; transition: all 0.35s;
}
.course-card--link { display: block; }
.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
    border-color: var(--card-hover);
}
.course-card__image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--red-light), var(--yellow-light));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.course-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.course-card:hover .course-card__image img { transform: scale(1.05); }
.course-card__body { padding: 24px; }
.course-card__badge {
    display: inline-block;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 5px 10px; border-radius: 6px; margin-bottom: 12px;
}
.course-card__badge--presencial { background: var(--red-light); color: var(--red); }
.course-card__badge--online, .course-card__badge--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.course-card__badge--cert, .course-card__badge--blue { background: #E8F0FE; color: #3657E4; }
.course-card__badge--hibrido { background: #F0E8FE; color: #7C3AED; }
.course-card__badge--nivel { background: var(--bg); color: var(--text-muted); border: 1px solid var(--card-border); }
.course-card__badge--red { background: var(--red-light); color: var(--red); }
.course-card__badge--green { background: #E8F9EE; color: #22A652; }
.course-card__badge--purple { background: #F0E8FE; color: #7C3AED; }
.course-card__title {
    font-size: 17px; font-weight: 700; color: var(--dark);
    margin-bottom: 8px; letter-spacing: -0.02em; line-height: 1.3;
}
.course-card__text {
    font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 18px;
}
.course-card__meta { display: flex; gap: 16px; margin-bottom: 18px; }
.course-card__meta-item {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.course-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid var(--card-border);
}
.course-card__price { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; }
.course-card__link {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--red); display: inline-flex; align-items: center; gap: 4px;
}

/* ═══════════════════════════════════════
   CURSO INDIVIDUAL PAGE
   ═══════════════════════════════════════ */
.curso-layout {
    display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start;
}
.curso-block { margin-bottom: 48px; }
.curso-block__title {
    font-size: 22px; font-weight: 800; color: var(--dark);
    letter-spacing: -0.02em; margin-bottom: 16px;
}
.curso-block__text { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }
.curso-modules { display: flex; flex-direction: column; gap: 16px; }
.curso-module {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 14px; padding: 24px; transition: all 0.3s;
}
.curso-module:hover { border-color: var(--card-hover); }
.curso-module__header { margin-bottom: 16px; }
.curso-module__number {
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--red); margin-bottom: 4px;
}
.curso-module__title { font-size: 17px; font-weight: 700; color: var(--dark); }
.curso-module__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.curso-module__list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text-secondary);
}

/* CURSO SIDEBAR */
.curso-sidebar { position: sticky; top: 96px; }
.curso-sidebar__card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 18px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.curso-sidebar__price {
    font-size: 28px; font-weight: 800; color: var(--dark);
    letter-spacing: -0.03em; margin-bottom: 20px; text-align: center;
}
.curso-sidebar__details { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.curso-sidebar__item { display: flex; align-items: center; gap: 12px; }
.curso-sidebar__item svg { color: var(--red); flex-shrink: 0; }
.curso-sidebar__label { font-size: 12px; color: var(--text-muted); }
.curso-sidebar__value { font-size: 14px; font-weight: 600; color: var(--dark); }
.curso-sidebar__includes {
    margin-top: 24px; padding-top: 24px;
    border-top: 1px solid var(--card-border);
}
.curso-sidebar__includes-title {
    font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 12px;
}
.curso-sidebar__includes ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.curso-sidebar__includes li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   CERTIFICATION PAGE
   ═══════════════════════════════════════ */
.cert-featured {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 48px; position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.cert-featured__badge {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--red); background: var(--red-light);
    padding: 6px 14px; border-radius: 100px;
    display: inline-block; margin-bottom: 24px;
}
.cert-featured__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cert-featured__title {
    font-size: 42px; font-weight: 800; color: var(--dark);
    letter-spacing: -0.04em; margin-bottom: 4px;
}
.cert-featured__subtitle {
    font-size: 18px; font-weight: 600; color: var(--text-secondary);
    margin-bottom: 16px; line-height: 1.4;
}
.cert-featured__text { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.cert-featured__items { display: flex; flex-direction: column; gap: 10px; }
.cert-featured__item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text-secondary);
}
.cert-featured__visual {
    border-radius: 16px; overflow: hidden;
    background: linear-gradient(135deg, var(--yellow-light), var(--red-light));
    display: flex; align-items: center; justify-content: center;
}

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 32px 24px; text-align: center;
    transition: all 0.35s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.process-step__number {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--red); color: var(--white);
    font-size: 20px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.process-step__title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-step__text { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ═══════════════════════════════════════
   BENEFITS (academia)
   ═══════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 28px 24px; text-align: center;
    transition: all 0.35s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.benefit-card__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--red-light); color: var(--red);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.benefit-card__icon--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.benefit-card__icon--blue { background: #E8F0FE; color: #3657E4; }
.benefit-card__icon--green { background: #E8F9EE; color: #22A652; }
.benefit-card__title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.benefit-card__text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { padding: 120px 0; }
.testimonials__header { text-align: center; margin-bottom: 56px; }
.testimonials__header .section-subtitle { margin: 0 auto; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonials__grid--video { align-items: start; }
.video-testimonial {
    border-radius: 16px; overflow: hidden; background: #000;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.video-testimonial__thumb {
    position: relative; display: block; width: 100%; aspect-ratio: 16/9;
    padding: 0; border: 0; cursor: pointer; background: #000; overflow: hidden;
}
.video-testimonial__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.video-testimonial__thumb:hover img { transform: scale(1.05); }
.video-testimonial__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--red); color: var(--white);
    display: flex; align-items: center; justify-content: center; padding-left: 4px;
    box-shadow: 0 8px 24px rgba(228,3,17,0.40);
    transition: transform 0.25s, background 0.25s;
}
.video-testimonial__thumb:hover .video-testimonial__play { transform: translate(-50%, -50%) scale(1.08); background: var(--red-dark); }
.video-testimonial iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }
.testimonial-card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 32px 28px; transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.testimonial-card__stars { margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card__text {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.65; margin-bottom: 20px; font-style: italic;
}
.testimonial-card__author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--card-border);
}
.testimonial-card__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--red-light); display: flex;
    align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: var(--red);
}
.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════
   BLOG
   ═══════════════════════════════════════ */
.blog { padding: 120px 0; background: var(--white); }
.blog__header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px;
}
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog__grid--archive { grid-template-columns: repeat(3, 1fr); }
.blog-card {
    background: var(--bg); border: 1px solid var(--card-border);
    border-radius: 16px; overflow: hidden; transition: all 0.35s;
    display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.05); }
.blog-card__image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--red-light), #F0F1F5);
    overflow: hidden;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 22px 24px; }
.blog-card__date {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 8px;
}
.blog-card__title {
    font-size: 16px; font-weight: 700; color: var(--dark);
    line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 8px;
}
.blog-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.blog-card__read-more {
    display: inline-block; margin-top: 12px;
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--red);
}

/* PAGINATION */
.pagination { margin-top: 56px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    font-size: 14px; font-weight: 600; color: var(--text-secondary);
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 8px; transition: all 0.2s;
}
.pagination .page-numbers:hover { border-color: var(--red); color: var(--red); }
.pagination .page-numbers.current {
    background: var(--red); color: var(--white); border-color: var(--red);
}

/* EMPTY STATE */
.empty-state {
    text-align: center; padding: 80px 0;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state h2 { font-size: 20px; color: var(--dark); }
.empty-state p { font-size: 15px; color: var(--text-muted); }

/* ═══════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════ */
.article-hero { padding: 140px 0 40px; }
.article-hero__inner { max-width: 720px; }
.article-hero__meta {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 12px; font-weight: 500;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 16px;
}
.article-hero__sep { color: var(--card-border); }
.article-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    line-height: 1.12; letter-spacing: -0.03em; color: var(--dark);
}
.article-hero__excerpt {
    font-size: 17px; color: var(--text-secondary); line-height: 1.7;
    margin-top: 16px;
}
.article-featured-image {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 40px rgba(15,22,41,0.06);
}
.article-featured-image img { width: 100%; height: auto; display: block; }

.article-layout {
    display: grid; grid-template-columns: 1fr 300px;
    gap: 48px; align-items: start;
}

/* ARTICLE CONTENT */
.article-content {
    font-size: 16px; color: var(--text-secondary); line-height: 1.75;
    max-width: 720px;
}
.article-content h2 {
    font-size: 24px; font-weight: 800; color: var(--dark);
    margin: 40px 0 16px; letter-spacing: -0.02em;
}
.article-content h3 {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin: 32px 0 12px;
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content img {
    border-radius: 12px; margin: 24px 0;
    border: 1px solid var(--card-border);
}
.article-content blockquote {
    border-left: 3px solid var(--red);
    padding: 16px 24px; margin: 24px 0;
    background: var(--red-light); border-radius: 0 12px 12px 0;
    font-style: italic;
}
.article-content a { color: var(--red); font-weight: 600; }
.article-content a:hover { text-decoration: underline; }
.article-content pre {
    background: var(--dark); color: #E8EAF2;
    padding: 20px 24px; border-radius: 12px;
    overflow-x: auto; margin: 24px 0;
    font-family: var(--font-mono); font-size: 14px;
}

/* ARTICLE SIDEBAR */
.article-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.article-sidebar__card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 14px; padding: 24px;
}
.article-sidebar__card--cta {
    background: var(--dark); border-color: var(--dark);
}
.article-sidebar__title {
    font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 16px;
}
.article-sidebar__cta-title {
    font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.article-share { display: flex; gap: 8px; }
.article-share__link {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--bg); display: flex;
    align-items: center; justify-content: center;
    color: var(--text-muted); transition: all 0.2s;
}
.article-share__link:hover { background: #E8F0FE; color: #1877F2; }
.article-share__link--wa:hover { background: #E8F9EE; color: #25D366; }
.article-related { display: flex; flex-direction: column; gap: 12px; }
.article-related__item {
    padding: 12px; border-radius: 8px;
    transition: background 0.2s; display: block;
}
.article-related__item:hover { background: var(--bg); }
.article-related__date {
    font-family: var(--font-mono); font-size: 10px;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 4px;
}
.article-related__title { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.35; }

/* POST NAV */
.post-nav {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    border-top: 1px solid var(--card-border); padding-top: 40px;
}
.post-nav__item--next { text-align: right; }
.post-nav__link { display: block; padding: 20px; border-radius: 12px; transition: background 0.2s; }
.post-nav__link:hover { background: var(--white); }
.post-nav__label {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--red); margin-bottom: 8px; display: block;
}
.post-nav__title { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.35; }

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-layout {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 48px; align-items: start;
}
.contact-form {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 40px;
}
.contact-form__title {
    font-size: 22px; font-weight: 800; color: var(--dark);
    margin-bottom: 28px; letter-spacing: -0.02em;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--dark); margin-bottom: 6px;
}
.form__input {
    width: 100%; padding: 12px 16px;
    font-family: var(--font-body); font-size: 14px;
    color: var(--dark); background: var(--bg);
    border: 1px solid var(--card-border); border-radius: 10px;
    transition: border-color 0.2s;
    appearance: none;
}
.form__input:focus {
    outline: none; border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(228,3,17,0.1);
}
.form__input::placeholder { color: var(--text-muted); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__select { cursor: pointer; }
.form__message { margin-bottom: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; display: none; }
.form__message:not(:empty) { display: block; }
.form__message--success { background: #E8F9EE; color: #22A652; border: 1px solid rgba(34,166,82,0.2); }
.form__message--error { background: var(--red-light); color: var(--red); border: 1px solid rgba(228,3,17,0.2); }
.form__label span { color: var(--red); }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__card {
    background: var(--white); border: 1px solid var(--card-border);
    border-radius: 16px; padding: 28px;
}
.contact-info__title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.contact-info__items { display: flex; flex-direction: column; gap: 20px; }
.contact-info__item { display: flex; align-items: center; gap: 14px; }
.contact-info__icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--red-light); display: flex;
    align-items: center; justify-content: center;
    color: var(--red); flex-shrink: 0;
}
.contact-info__label { font-size: 12px; color: var(--text-muted); }
.contact-info__value { font-size: 15px; font-weight: 600; color: var(--dark); }
.contact-social { display: flex; gap: 10px; }
.contact-social__link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: 8px;
    background: var(--bg); font-size: 14px; font-weight: 600;
    color: var(--text-secondary); transition: all 0.2s;
}
.contact-social__link:hover { background: var(--red-light); color: var(--red); }

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta { padding: 80px 0 120px; }
.cta__box {
    background: var(--dark); border-radius: 24px;
    padding: 72px 64px; position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cta__box::before {
    content: ''; position: absolute; top: -150px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(228,3,17,0.15), transparent 55%);
    pointer-events: none;
}
.cta__box::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.cta__content { position: relative; z-index: 1; }
.cta__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
    letter-spacing: -0.03em; color: var(--white); margin-bottom: 10px;
}
.cta__sub { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 440px; }
.cta__actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--dark); padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer__brand p {
    font-size: 14px; color: rgba(255,255,255,0.4);
    line-height: 1.6; margin-top: 16px; max-width: 280px;
}
.footer__logo { height: 48px !important; max-height: 48px !important; width: auto !important; }
.footer__col-title {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links li a {
    font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer__links li a:hover { color: var(--white); }
.footer__contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.footer__contact-item svg { color: var(--red); flex-shrink: 0; }
.footer__bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.05); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); transition: all 0.25s;
}
.footer__social a:hover { background: var(--red); color: var(--white); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transition: all 0.25s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { max-width: 500px; }
    .services__grid { grid-template-columns: 1fr; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .courses__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
    .blog__grid--archive { grid-template-columns: repeat(2, 1fr); }
    .stats__bar { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 28px 32px; }
    .cta__box { grid-template-columns: 1fr; padding: 48px 32px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-featured__inner { grid-template-columns: 1fr; }
    .curso-layout { grid-template-columns: 1fr; }
    .curso-sidebar { position: static; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .nav__dropdown-menu { left: 0; transform: translateY(8px); }
    .nav__dropdown:hover .nav__dropdown-menu { transform: translateY(0); }
    .nav__dropdown-inner { min-width: 400px; grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav { padding: 0 16px; }
    .nav { top: 8px; border-radius: 14px; padding: 0 20px; height: 60px; }
    .nav__links {
        display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
        background: var(--white); border: 1px solid var(--card-border);
        border-radius: 14px;
        flex-direction: column; padding: 24px; gap: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    .nav__links.active { display: flex; }
    .nav__toggle { display: block; }
    .nav__dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        pointer-events: auto; padding-top: 8px; transform: none;
    }
    .nav__dropdown-inner {
        min-width: auto; grid-template-columns: 1fr;
        box-shadow: none; border: none; padding: 0;
    }
    .courses__grid { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .blog__grid--archive { grid-template-columns: 1fr; }
    .stats__bar { grid-template-columns: 1fr 1fr; }
    .hero__float-card { position: static; margin-top: 16px; display: inline-flex; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
    .blog__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .post-nav { grid-template-columns: 1fr; }
    .post-nav__item--next { text-align: left; }
}

/* ═══════════════════════════════════════
   LANDING WEBINAR (registro-webinar-zoom)
   ═══════════════════════════════════════ */
.landing-webinar .bg-grid { display: none; }
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lp-narrow { max-width: 760px; }

/* Topbar */
.lp-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; background: var(--white);
    border-bottom: 1px solid var(--card-border); position: sticky; top: 0; z-index: 50;
}
.lp-topbar__logo { height: 44px; width: auto; display: block; }
.lp-topbar__cta { padding: 10px 20px; font-size: 13px; }

/* Hero */
.lp-hero {
    position: relative; color: var(--white); background-color: #0c1424;
    background-image: linear-gradient(rgba(8,14,26,0.82), rgba(8,14,26,0.88)), url('/wp-content/uploads/2026/06/webinar-IMG_9490-2.webp');
    background-size: cover; background-position: center;
    padding: 72px 0 84px;
}
.lp-hero__inner {
    max-width: 1140px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.lp-badge {
    display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--white);
    background: var(--red); padding: 7px 14px; border-radius: 100px; margin-bottom: 20px;
}
.lp-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.1;
    letter-spacing: -0.03em; margin-bottom: 18px;
}
.lp-hero__title em { font-style: normal; color: #FFC410; }
.lp-hero__sub { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 26px; }
.lp-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.lp-facts li {
    display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #fff;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
    padding: 9px 15px; border-radius: 100px; backdrop-filter: blur(6px);
}
.lp-facts svg { color: #FFC410; flex-shrink: 0; }

/* Form card */
.webinar-form-card { position: relative; background: var(--white); border-radius: 18px; padding: 30px 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.28); overflow: hidden; }
.webinar-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--yellow)); }
.webinar-form-card__title { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; margin-bottom: 10px; }
.webinar-form-card__gift {
    font-size: 13px; line-height: 1.5; color: var(--text-secondary);
    background: var(--yellow-light); border-radius: 10px; padding: 12px 14px; margin-bottom: 20px;
}
.webinar-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.webinar-form .form__group { margin-bottom: 14px; }
.webinar-form__check {
    display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px;
    color: var(--text-secondary); line-height: 1.45; margin: 4px 0 18px;
}
.webinar-form__check input { margin-top: 2px; flex-shrink: 0; }

/* Secciones */
.lp-section { position: relative; padding: 84px 0; }
.lp-section--alt { background: var(--bg); }
.lp-section--dark { background: #0c1424; color: var(--white); }
.lp-section:not(.lp-section--dark)::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(228,3,17,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(228,3,17,0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.lp-section > .lp-container { position: relative; z-index: 1; }

/* Realidad (2 columnas) */
.lp-reality { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.lp-reality__media { position: relative; }
.lp-reality__media img { width: 100%; border-radius: 20px; display: block; box-shadow: 0 18px 48px rgba(0,0,0,0.14); }
.lp-reality__tag {
    position: absolute; left: 18px; bottom: 18px;
    background: var(--red); color: #fff; font-family: var(--font-mono);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 8px 14px; border-radius: 100px;
}
.lp-lead { font-size: 19px; font-weight: 600; color: var(--dark); line-height: 1.6; margin-bottom: 10px; }
.lp-muted { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.lp-section--dark .lp-muted { color: rgba(255,255,255,0.8); }

/* Listas con icono */
.lp-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-list li { position: relative; padding-left: 32px; font-size: 16px; color: var(--text-secondary); line-height: 1.5; }
.lp-list li::before {
    position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}
.lp-list--check li::before { content: '✓'; background: #E8F9EE; color: #22A652; }
.lp-list--x li::before { content: '✕'; background: #FDE8E9; color: var(--red); }

/* Para quién */
.lp-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-audience__card {
    background: var(--white); border: 1px solid var(--card-border); border-radius: 18px;
    padding: 32px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.lp-audience__card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.08); }
.lp-audience__card h3 { font-size: 19px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.lp-audience__card--yes { border-top: 4px solid #22A652; }
.lp-audience__card--yes:hover { border-color: rgba(34,166,82,0.4); }
.lp-audience__card--no { border-top: 4px solid var(--red); }
.lp-audience__card--no:hover { border-color: rgba(228,3,17,0.35); }
.lp-audience__icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.lp-audience__icon--yes { background: #E8F9EE; color: #22A652; }
.lp-audience__icon--no { background: var(--red-light); color: var(--red); }

/* Chips ponente */
.lp-speaker__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 22px; }
.lp-chip {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--red);
    background: var(--red-light); padding: 7px 13px; border-radius: 100px;
}

/* CTA band */
.lp-ctaband { background: linear-gradient(135deg, var(--red), #b80210); color: var(--white); padding: 70px 0; }
.lp-ctaband__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.lp-ctaband__sub { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; line-height: 1.6; }
.lp-ctaband__btn { font-size: 16px; padding: 16px 32px; }

/* Ponente */
.lp-speaker { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.lp-speaker__photo img { width: 100%; border-radius: 20px; display: block; box-shadow: 0 18px 48px rgba(0,0,0,0.12); }

/* Final CTA */
.lp-finalcta { display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; }
.lp-finalcta__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.lp-finalcta__title em { font-style: normal; color: #FFC410; }
.lp-finalcta__copy p { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.6; }

/* Footer */
.lp-footer { background: #070d18; color: rgba(255,255,255,0.55); text-align: center; padding: 28px 24px; font-size: 13px; }

@media (max-width: 880px) {
    .lp-hero__inner, .lp-audience, .lp-speaker, .lp-finalcta { grid-template-columns: 1fr; }
    .lp-hero { padding: 48px 0 56px; }
    .lp-hero__form { order: -1; }
    .lp-section { padding: 60px 0; }
    .lp-speaker__photo { max-width: 420px; }
    .lp-topbar__cta { display: none; }
}
@media (max-width: 560px) {
    .webinar-form__row { grid-template-columns: 1fr; }
}

/* Campo de teléfono con prefijo de país (+52) */
.phone-field { display: flex; align-items: stretch; }
.phone-field__prefix {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 13px; white-space: nowrap;
    font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--dark);
    background: var(--bg); border: 1px solid var(--card-border); border-right: none;
    border-radius: 10px 0 0 10px;
}
.phone-field__flag { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.07); flex-shrink: 0; }
.phone-field__input { border-radius: 0 10px 10px 0 !important; border-left: none !important; }
.phone-field:focus-within .phone-field__prefix { border-color: var(--red); }

/* ═══════════════════════════════════════
   PÁGINA GRACIAS (confirmación webinar)
   ═══════════════════════════════════════ */
.gr-hero {
    position: relative; color: var(--white); background-color: #0c1424;
    background-image: linear-gradient(rgba(8,14,26,0.86), rgba(8,14,26,0.9)), url('/wp-content/uploads/2026/06/webinar-IMG_9490-2.webp');
    background-size: cover; background-position: center;
    padding: 84px 24px 88px; text-align: center;
}
.gr-hero__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.gr-check {
    width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    background: #22A652; color: #fff;
    box-shadow: 0 12px 36px rgba(34,166,82,0.45);
}
.gr-hero .lp-badge { margin-bottom: 18px; }
.gr-hero__title {
    font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; line-height: 1.12;
    letter-spacing: -0.03em; margin-bottom: 16px;
}
.gr-hero__title em { font-style: normal; color: #FFC410; }
.gr-hero__sub { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 540px; margin: 0 auto; }

/* Grid detalles + pasos */
.gr-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }

.gr-event {
    background: var(--white); border: 1px solid var(--card-border); border-radius: 20px;
    padding: 34px 32px; box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}
.gr-event__title { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 22px; }
.gr-event__list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.gr-event__list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--card-border); }
.gr-event__list li:first-child { border-top: none; padding-top: 0; }
.gr-event__list svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.gr-event__list strong { display: block; font-size: 15px; color: var(--dark); font-weight: 700; }
.gr-event__list span { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.gr-steps { display: flex; flex-direction: column; gap: 16px; }
.gr-step {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--white); border: 1px solid var(--card-border); border-radius: 16px; padding: 22px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gr-step:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.gr-step__num {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--red); color: #fff; font-weight: 800; font-size: 16px;
}
.gr-step__num--gift { background: var(--yellow-light); font-size: 18px; }
.gr-step h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.gr-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 880px) {
    .gr-grid { grid-template-columns: 1fr; }
    .gr-hero { padding: 60px 20px 64px; }
}
