.wlc-site {
    color: #1f2933;
    font-family: inherit;
}

.wlc-site * {
    box-sizing: border-box;
}

.wlc-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
}

.wlc-nav span {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wlc-nav a {
    color: var(--wlc-primary);
    font-weight: 600;
    text-decoration: none;
}

.wlc-hero {
    min-height: 62vh;
    display: grid;
    align-items: center;
    padding: clamp(52px, 9vw, 110px) clamp(18px, 6vw, 80px);
    background: linear-gradient(135deg, var(--wlc-primary), #263238);
    color: #fff;
}

.wlc-hero > div {
    max-width: 760px;
}

.wlc-hero p:first-child {
    color: var(--wlc-accent);
    font-weight: 700;
    text-transform: uppercase;
}

.wlc-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(36px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: 0;
}

.wlc-button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    margin-top: 14px;
    border-radius: 6px;
    color: #111827;
    background: var(--wlc-accent);
    font-weight: 700;
    text-decoration: none;
}

.wlc-card-action {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    margin-top: 14px;
    border: 1px solid var(--wlc-primary);
    border-radius: 6px;
    color: var(--wlc-primary);
    font-weight: 700;
    text-decoration: none;
}

.wlc-section,
.wlc-contact {
    padding: clamp(36px, 6vw, 76px) clamp(18px, 6vw, 80px);
}

.wlc-section h2,
.wlc-contact h2 {
    margin: 0 0 24px;
    color: var(--wlc-primary);
    font-size: 32px;
    letter-spacing: 0;
}

.wlc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.wlc-course-card,
.wlc-teacher-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
}

.wlc-course-card img,
.wlc-teacher-card img,
.wlc-course-card__placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.wlc-course-card__placeholder {
    background: linear-gradient(135deg, #14532d, #1f2937);
}

.wlc-program-details {
    margin-top: 12px;
}

.wlc-program-content {
    margin: 12px 0;
}

.wlc-whatsapp-share {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    border-radius: 8px;
    padding: 12px 16px;
    background: #25d366;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
}

.wlc-whatsapp-share:hover {
    background: #1ebe57;
    color: #fff !important;
}

.wlc-whatsapp-share__icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.wlc-card-body,
.wlc-teacher-card {
    padding: 18px;
}

.wlc-pill {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff7ed;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
}

.wlc-course-card h3,
.wlc-teacher-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 22px;
    letter-spacing: 0;
}

.wlc-course-card dl {
    display: grid;
    gap: 8px;
    margin: 16px 0;
}

.wlc-course-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 8px;
}

.wlc-course-card dt {
    font-weight: 700;
}

.wlc-course-card dd {
    margin: 0;
    text-align: right;
}

.wlc-course-card summary {
    cursor: pointer;
    color: var(--wlc-primary);
    font-weight: 700;
}

.wlc-runs {
    display: grid;
    gap: 8px;
    margin: 14px 0;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
}

.wlc-runs > strong {
    color: #111827;
}

.wlc-run-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e5e7eb;
    padding-top: 8px;
}

.wlc-run-row a {
    flex: 0 0 auto;
    color: var(--wlc-primary);
    font-weight: 800;
    text-decoration: none;
}

.wlc-no-runs {
    display: inline-flex;
    margin-top: 12px;
    color: #667085;
    font-weight: 700;
}

.wlc-contact {
    background: #f8fafc;
}

.wlc-section-signup {
    padding-top: 0;
}

.wlc-signup {
    max-width: 980px;
}

.wlc-signup-form {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
}

.wlc-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px 18px;
}

.wlc-signup label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.wlc-signup input,
.wlc-signup select,
.wlc-signup textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 10px;
    font: inherit;
}

.wlc-signup textarea {
    min-height: 100px;
    resize: vertical;
}

.wlc-form-message {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.wlc-form-message-success {
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
}

.wlc-form-message-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.wlc-contact a,
.wlc-contact span {
    display: inline-flex;
    margin: 8px 14px 0 0;
    color: var(--wlc-primary);
    font-weight: 700;
}

@media (max-width: 640px) {
    .wlc-nav {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Landing de inscripcion por comision */
.wlc-landing-body {
    margin: 0;
    background: #f4f6f8;
}

.wlc-landing-main {
    padding: clamp(20px, 4vw, 48px) clamp(16px, 5vw, 72px) 80px;
}

.wlc-landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

.wlc-landing-hero__media img,
.wlc-landing-hero__placeholder {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.wlc-landing-hero__placeholder {
    background: linear-gradient(135deg, var(--wlc-primary), #1f2937);
}

.wlc-landing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.wlc-landing-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.wlc-landing-badge--primary {
    border-color: transparent;
    background: var(--wlc-primary);
    color: #fff;
}

.wlc-landing-card {
    position: sticky;
    top: 80px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.wlc-landing-card__eyebrow {
    margin: 0 0 6px;
    color: var(--wlc-accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.wlc-landing-card__title {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    color: #0f172a;
}

.wlc-landing-card__date {
    margin: 0 0 18px;
    color: #64748b;
    font-weight: 600;
}

.wlc-landing-price {
    margin: 0 0 20px;
    padding: 16px 0;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.wlc-landing-price__value {
    display: block;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    color: var(--wlc-primary);
    line-height: 1;
}

.wlc-landing-price__value--consult {
    font-size: 28px;
}

.wlc-landing-price__label,
.wlc-landing-price__sub {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-weight: 600;
}

.wlc-landing-specs {
    display: grid;
    gap: 10px;
    margin: 0 0 20px;
}

.wlc-landing-specs div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.wlc-landing-specs dt {
    font-weight: 700;
    color: #475569;
}

.wlc-landing-specs dd {
    margin: 0;
    text-align: right;
    font-weight: 600;
}

.wlc-landing-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0;
    text-align: center;
}

.wlc-button--block {
    width: 100%;
    justify-content: center;
}

.wlc-landing-full {
    margin: 0;
    padding: 12px;
    border-radius: 8px;
    background: #fef2f2;
    color: #991b1b;
    font-weight: 700;
}

.wlc-landing-about,
.wlc-landing-program,
.wlc-landing-form-section {
    max-width: 900px;
    margin: 40px auto 0;
}

.wlc-landing-about h2,
.wlc-landing-program h2,
.wlc-landing-form-section h2 {
    margin: 0 0 14px;
    color: var(--wlc-primary);
}

.wlc-landing-fee-hint {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 600;
}

.wlc-signup-form--landing {
    max-width: 720px;
}

.wlc-landing-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.wlc-landing-whatsapp svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 900px) {
    .wlc-landing-hero {
        grid-template-columns: 1fr;
    }

    .wlc-landing-card {
        position: static;
    }
}
