/**
 * Landing de curso — alineado a cursos/curso-oratoria.html
 * Requiere: css/brand-academia.css
 */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--black);
    line-height: 1.2;
}

h1 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(2.75rem, 5vw, 4rem);
}

h2 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
    font-size: 17px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 100;
    padding: 12px 20px;
    background: var(--dark-blue);
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
    top: 0;
}

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

@media (min-width: 1024px) {
    .container {
        max-width: 1400px;
        padding: 0 48px;
    }
}

/* Promo + Nav */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    min-height: 44px;
    box-sizing: border-box;
}

.promo-banner a {
    color: var(--yellow-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-banner .countdown {
    display: flex;
    gap: 8px;
    align-items: center;
}

.promo-banner .countdown span {
    background: var(--orange-primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

.nav {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: var(--orange-primary);
    transition: box-shadow 0.2s ease;
}

.nav.nav-scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.nav-logo img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-link-button {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link-arrow {
    font-size: 0.8em;
    transition: transform 0.2s ease;
}

.nav-item.is-open .nav-link-arrow {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 280px;
    background: #fff;
    color: var(--dark-blue);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.24);
    padding: 10px 0;
    display: none;
    z-index: 20;
}

.nav-submenu a {
    display: block;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #111827;
    white-space: nowrap;
}

.nav-submenu a:hover {
    background: #f3f4f6;
}

.nav-item.is-open .nav-submenu {
    display: block;
}

@media (min-width: 901px) {
    .nav-item:hover .nav-submenu {
        display: block;
    }
}

.nav-link-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-badge {
    background: var(--yellow-accent);
    color: var(--dark-blue);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}

.nav-cta {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--orange-primary);
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
    background: transparent;
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--white);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-item:hover .nav-submenu {
        display: none;
    }

    .nav-item.is-open .nav-submenu {
        display: block;
    }
}

@media (max-width: 900px) {
    .nav {
        flex-wrap: wrap;
        padding: 16px 20px;
        top: 44px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links,
    .nav-cta {
        display: none;
        width: 100%;
    }

    .nav.nav-open .nav-links,
    .nav.nav-open .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 0;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin-top: 8px;
    }

    .nav-links a,
    .nav-item {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
    }
}

/* Floating CTA */
.floating-oferton {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    bottom: 24px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.floating-oferton.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.floating-oferton a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--orange-primary);
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(247, 70, 4, 0.4);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.floating-oferton a:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-oferton a {
        font-size: 0.9rem;
        padding: 12px 20px;
        white-space: normal;
        text-align: center;
    }
}

/* Hero */
.hero {
    padding: 280px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: var(--black);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--orange-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-title);
}

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--black);
}

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

.hero-brand-line {
    font-family: var(--font-title);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--gray-600);
    max-width: 40ch;
    margin: 0 auto 20px;
    line-height: 1.45;
}

.hero-video-wrap {
    margin: 24px auto 28px;
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.video-block {
    padding: 28px 20px;
    background: var(--gray-100);
    text-align: center;
}

.video-block p {
    margin-bottom: 8px;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.hero-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--orange-primary);
}

.hero-rating-number {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.hero-portada {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hero-portada-quote-img-wrap {
    position: relative;
    margin-bottom: 20px;
}

.hero-portada-quote {
    font-family: var(--font-headline);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: -28px;
    padding: 0 16px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95);
}

.hero-portada-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-portada-text-block {
    margin-top: -48px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 70, 4, 0.15);
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-portada-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-portada-highlight {
    color: var(--orange-primary);
    font-weight: 600;
}

.hero-portada-author {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.hero-portada-handle {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin-bottom: 4px;
}

.hero-portada-handle:hover {
    color: var(--orange-hover);
}

.hero-portada-role {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange-primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 70, 4, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 70, 4, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--black);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-medium);
}

/* Responsive 16:9 embed (YouTube, etc.) */
.video-embed-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0f0f0f;
}

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

.video-placeholder {
    margin-top: 14px;
    aspect-ratio: 16/9;
    background: #1a1a2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 20px;
    text-align: center;
    line-height: 1.4;
}

/* Course includes */
.course-includes-section {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.course-includes-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
}

.course-includes-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

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

.feature-card {
    background: rgba(220, 220, 220, 0.5);
    padding: 20px 24px;
    border-radius: 12px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    font-family: var(--font-title);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.5;
    margin: 0;
}

.course-includes-image {
    position: relative;
    width: 320px;
    height: 400px;
}

.course-includes-image::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 4px solid var(--orange-primary);
    border-radius: 16px;
    z-index: 0;
}

.course-includes-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    z-index: 1;
}

.course-includes-carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.course-includes-carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
    height: 100%;
}

.course-includes-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.course-includes-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.course-includes-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.course-includes-carousel-dot.active {
    background: var(--white);
    box-shadow: 0 0 0 2px var(--orange-primary);
}

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

.stat-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange-primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-top: 16px;
}

/* Modules */
.modules-content-section {
    padding: 80px 0;
    background: var(--white);
}

.modules-content-section .container {
    max-width: 1100px;
}

.modules-content-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--black);
    line-height: 1.2;
}

.modules-content-title span {
    color: var(--orange-primary);
}

.modules-content-divider {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 50px;
    width: 100%;
}

.modules-content-divider-line {
    height: 4px;
    background: var(--orange-primary);
    border-radius: 2px;
}

.modules-content-divider-line--thin {
    height: 2px;
    background: var(--gray-medium);
}

.module-block {
    display: grid;
    grid-template-columns: 384px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.module-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.module-block.reverse {
    grid-template-columns: 1fr 384px;
}

.module-block.reverse .module-image {
    order: 2;
}

.module-block.reverse .module-content {
    order: 1;
}

.module-image {
    position: relative;
}

.module-image::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 4px solid var(--orange-primary);
    border-radius: 12px;
    z-index: 0;
}

.module-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.module-content h3 {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--orange-primary);
}

.module-content h3 span {
    color: var(--orange-primary);
}

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

.module-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.module-number {
    font-weight: 700;
    color: var(--orange-primary);
    font-size: 1rem;
    min-width: 36px;
    flex-shrink: 0;
}

.module-list li p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
}

.module-divider {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 40px 0;
}

.module-divider-line {
    height: 4px;
    background: var(--orange-primary);
    border-radius: 2px;
}

.module-divider-line--thin {
    height: 2px;
    background: var(--gray-medium);
}

/* Bonus */
.bonus-section {
    padding: 80px 0;
    background: var(--dark-blue);
}

.bonus-section .section-header {
    text-align: center;
    margin-bottom: 0;
}

.bonus-section .section-title {
    font-family: var(--font-headline);
    color: var(--white);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.bonus-section .section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Marcas */
.marcas-section {
    background: var(--white);
    padding: 48px 40px;
    text-align: center;
}

.marcas-title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 40px;
}

.marcas-title strong {
    font-weight: 700;
}

.marcas-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.marcas-img {
    max-height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Instructor */
.instructor-section {
    padding: 80px 0;
    background: var(--white);
}

.instructor-header {
    text-align: center;
    margin-bottom: 40px;
}

.instructor-header h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.instructor-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
}

.instructor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
    margin: 0 auto;
}

.instructor-image {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 30px;
}

.instructor-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--orange-primary);
    border-radius: 50%;
    z-index: 0;
}

.instructor-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
}

.instructor-name {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--orange-primary);
    text-align: center;
    margin-bottom: 8px;
}

.instructor-title {
    font-size: 1.1rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 30px;
}

.instructor-bio p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* For who */
.for-who-section {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.for-who-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
}

.for-who-title span {
    color: var(--orange-primary);
}

.for-who-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.for-who-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.for-who-image-wrap {
    position: relative;
    width: 320px;
    height: 400px;
}

.for-who-image-wrap::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 4px solid var(--orange-primary);
    border-radius: 16px;
    z-index: 0;
}

.for-who-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.for-who-img-desktop {
    display: block;
}

.for-who-img-mobile {
    display: none;
}

/* Gallery */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
}

.gallery-title span {
    color: var(--orange-primary);
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Video embed block */
.video-embed-section {
    padding: 72px 0;
    background: var(--gray-lighter);
}

.video-embed-section h2 {
    text-align: center;
    margin-bottom: 28px;
    font-family: var(--font-title);
    font-weight: 700;
}

/* Outcomes */
.outcomes-section {
    padding: 72px 0;
    background: var(--white);
}

.outcomes-section .section-lead {
    text-align: center;
    color: var(--gray-600);
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
}

.outcomes-grid-pod {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 640px) {
    .outcomes-grid-pod {
        grid-template-columns: repeat(2, 1fr);
    }
}

.outcome-pod {
    background: var(--gray-100);
    padding: 22px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.outcome-pod h3 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.08rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.outcome-pod p {
    font-size: 0.96rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.mockup-wrap {
    max-width: 520px;
    margin: 28px auto 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Prose */
.prose-section {
    padding: 64px 0;
    background: var(--white);
}

.prose-block {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.65;
}

.prose-block p {
    margin-bottom: 16px;
}

.two-col-img {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

@media (min-width: 700px) {
    .two-col-img {
        grid-template-columns: 1fr 1fr;
    }
}

.two-col-img img {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Testimonios */
.testimonios-section {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.testimonios-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--orange-primary);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 700;
}

.testimonios-subtitle {
    font-size: 1.05rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .testi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testi-card {
    background: var(--white);
    padding: 22px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.92rem;
    color: var(--gray-600);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.testi-card .name {
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 6px;
    font-family: var(--font-title);
}

.testi-card .stars {
    color: var(--yellow-accent);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.testi-strip-cta {
    text-align: center;
    margin-top: 28px;
    font-size: 1rem;
}

.testi-strip-cta a {
    color: var(--orange-primary);
    font-weight: 800;
    font-family: var(--font-title);
    text-decoration: underline;
}

.reviews-pdf-box {
    text-align: center;
    margin-top: 28px;
    padding: 24px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 16px;
}

.reviews-pdf-box p {
    margin-bottom: 10px;
}

.reviews-pdf-box a {
    display: inline-block;
    padding: 12px 22px;
    background: var(--yellow-accent);
    color: var(--black);
    font-weight: 800;
    border-radius: 10px;
    font-family: var(--font-title);
    font-size: 0.9rem;
}

/* Social strip */
.social-strip-section {
    padding: 56px 0;
    background: var(--white);
}

.social-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 640px) {
    .social-stats.four-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

.social-stats .n {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--orange-primary);
}

.social-stats .l {
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* In-company mini */
.incompany-mini {
    padding: 48px 0;
    background: var(--gray-lighter);
    text-align: center;
}

.incompany-mini h2 {
    margin-bottom: 16px;
}

/* Certificates */
.certificates-section {
    padding: 80px 0;
    background: linear-gradient(145deg, var(--dark-blue) 0%, #1a2238 55%, #243056 100%);
    color: var(--white);
    text-align: center;
}

.certificates-section h2 {
    color: var(--white);
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
}

.certificates-section .hl {
    color: var(--turquoise);
}

.certificates-section p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto;
}

.cert-cta-row {
    margin-top: 16px;
}

.certificates-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.certificates-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.certificates-section .muted-link {
    margin-top: 18px;
    font-size: 0.95rem;
}

.certificates-section .muted-link a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
}

/* FAQ */
.faq-section {
    padding: 72px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 24px;
}

.faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq details {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.faq summary {
    font-family: var(--font-title);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    color: var(--dark-blue);
}

.faq details[open] summary {
    margin-bottom: 8px;
}

.faq p {
    font-size: 0.93rem;
    color: var(--gray-600);
    margin: 0;
}

/* Combo promo block (page-specific overrides in HTML) */
.combo-promo-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 28px 24px;
    background: var(--gray-100);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.combo-promo-inner h2 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.combo-promo-inner h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.combo-promo-inner p {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.strip-section {
    padding: 48px 0;
    text-align: center;
}

.strip-section h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.ingles-strip {
    padding: 48px 0;
    background: var(--white);
    text-align: center;
}

.ingles-strip p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* Footer */
.footer-section {
    background: var(--white);
    padding: 48px 24px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-top {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-logo {
    max-height: 52px;
    margin: 0 auto 14px;
}

.footer-form-wrap {
    max-width: 480px;
    margin: 0 auto 32px;
}

.footer-newsletter-heading {
    font-family: var(--font-title);
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px;
    margin-bottom: 22px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 15px;
    color: var(--black);
}

.footer-col a:hover {
    color: var(--orange-primary);
}

.footer-col-title {
    font-weight: 700;
    font-family: var(--font-title);
    margin-bottom: 4px;
}

.footer-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-cta-btn {
    padding: 12px 22px;
    background: #e5e5e5;
    border-radius: 10px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
}

.footer-legal {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer-legal a {
    text-decoration: underline;
    color: #666;
}

.mp-cta-wrapper {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 9999;
}

.mp-cta-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    border: 4px solid #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-cta-button svg {
    width: 30px;
    height: 30px;
}

/* Persuasion close */
.persuasion-close {
    padding: 56px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--white) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.persuasion-close h2 {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.persuasion-close .hero-cta {
    margin-top: 8px;
}

/* Pricing — layout en página */
.pricing-section-ventas {
    padding: 80px 0 100px;
    background: var(--white);
}

.pricing-section-ventas h2 {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-two {
    display: grid;
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 900px) {
    .pricing-two {
        grid-template-columns: 1fr 1fr;
    }
}

.price-card-box {
    background: var(--white);
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.price-card-box.featured {
    border: 2px solid var(--orange-primary);
}

.price-card-box h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.badge-off {
    display: inline-block;
    background: var(--yellow-accent);
    color: var(--black);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.price-row {
    margin: 12px 0 8px;
}

.price-current {
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--orange-primary);
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-600);
    font-size: 1.15rem;
    margin-left: 10px;
}

.price-tagline {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.price-card-box ul:not(.combo-list) {
    text-align: left;
    margin: 14px auto;
    max-width: 400px;
    padding-left: 1.2em;
    color: var(--gray-600);
    font-size: 0.92rem;
}

.price-card-box .combo-list {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin: 12px 0;
    padding-left: 1.1em;
}

.price-card-box .combo-list li {
    margin-bottom: 6px;
}

.guarantee-strip {
    margin-top: 16px;
    padding: 16px;
    background: var(--orange-light);
    border-radius: 12px;
    font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 768px) {
    .course-includes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .course-includes-image {
        order: -1;
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }

    .features-column {
        max-width: 500px;
        margin: 0 auto;
    }

    .module-block,
    .module-block.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .module-block .module-image,
    .module-block.reverse .module-image {
        order: -1;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .module-block.reverse .module-content {
        order: 0;
    }

    .for-who-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .for-who-image-wrap {
        order: -1;
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 300px 0 56px;
    }

    .hero-portada-text-block {
        margin-top: -36px;
        padding: 20px;
    }

    .instructor-image {
        width: 220px;
        height: 220px;
    }

    .marcas-logos {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .course-includes-image {
        width: 220px;
        height: 280px;
    }

    .for-who-img-desktop {
        display: none;
    }

    .for-who-img-mobile {
        display: block;
    }

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