:root {
    --pink: #db5ea5;
    --violet: #5b2eff;
    --white: #ffffff;
    --dark: #2b165a;
    --soft: rgba(255, 255, 255, 0.15);
    --shadow: 0 14px 0 rgba(0, 0, 0, 0.18);
    --shadow-soft: 0 8px 0 rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Baloo 2", ui-rounded, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--violet);
    color: var(--white);
    line-height: 1.4;
}

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

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

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.curso-hero {
    position: relative;
    padding: 36px 0 40px;
}

.curso-hero__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.curso-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 30px;
    font-weight: 900;
}

.logo-curso {
    width: 92px;
    margin-left: -14px;
}

.tipo-curso {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    border: 3px solid var(--white);
    font-weight: 900;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.titulo-curso {
    font-size: clamp(32px, 5vw, 52px);
    margin: 8px 0 10px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.descripcion-curso {
    font-size: clamp(16px, 2.2vw, 20px);
    margin: 0 0 20px;
}

.levantar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 4px solid var(--white);
    background: var(--pink);
    color: var(--white);
    font-weight: 900;
    box-shadow: var(--shadow);
}

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

.hero-image {
    border: 6px solid var(--white);
    border-radius: 26px;
    padding: 12px;
    background: var(--pink);
    box-shadow: var(--shadow);
}

.hero-image img {
    border-radius: 18px;
    border: 4px solid var(--white);
}

.onda-inferior {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 20px;
}

.onda-fill {
    fill: var(--pink);
}

.video-wrapper {
    border: 6px solid var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.payment-logos--inline {
    margin-top: 12px;
}

.payment-logos--left {
    justify-content: flex-start;
}

.payment-card {
    padding: 6px 8px;
    border: 3px solid var(--white);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.payment-card img {
    width: 78px;
    height: 38px;
    object-fit: contain;
}

.curso-detalle {
    padding: 30px 0 40px;
}

.detalle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.preview-wrapper {
    background: var(--pink);
    border: 6px solid var(--white);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
}

.preview-wrapper img {
    border-radius: 14px;
    border: 4px solid var(--white);
}

.horas-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 4px solid var(--white);
    background: var(--soft);
    margin-top: 16px;
    box-shadow: var(--shadow-soft);
}

.instructor-card {
    margin-top: 18px;
    border: 4px solid var(--white);
    border-radius: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.avatar-instructor {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--white);
    object-fit: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    overflow: hidden;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.avatar-instructor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-beneficios {
    border: 6px solid var(--white);
    border-radius: 24px;
    padding: 24px;
    background: var(--violet);
    box-shadow: var(--shadow);
}

.panel-beneficios .badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    font-weight: 900;
}

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

.listado-beneficios li {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.listado-beneficios li::before {
    content: "✔";
    font-weight: 900;
}

.curso-contenido {
    background: var(--pink);
    padding: 40px 0;
}

.curso-mensaje {
    padding: 40px 0;
}

.mensaje-card {
    border: 4px solid var(--white);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 16px;
}

.mensaje-card img {
    border-radius: 16px;
    border: 4px solid var(--white);
}

.mod-card {
    background: var(--white);
    color: var(--dark);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
}

.mod-card p {
    margin: 8px 0 0;
}

.circle-status {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--violet);
    margin-top: 4px;
}

.faq-curso {
    padding: 40px 0;
    text-align: center;
}

.faq-curso .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.faq-curso .col-lg-5,
.faq-curso .col-lg-7 {
    width: 100%;
}

.faq-box {
    border: 4px solid var(--white);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.faq-box h4 {
    margin: 0 0 8px;
}

.curso-cta-final {
    background: var(--pink);
    padding: 40px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-main {
    background: var(--violet);
    padding: 22px;
}

.cta-price {
    background: var(--dark);
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.panel-beneficios {
    text-align: center;
}

.listado-beneficios li,
.lista-incluye li {
    justify-content: center;
}

.footer {
    text-align: center;
}

.precio-pill {
    background: var(--white);
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    display: inline-block;
}

.lista-incluye {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.lista-incluye li {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.lista-incluye li::before {
    content: "✔";
    font-weight: 900;
}

.footer {
    padding: 26px 0 40px;
    text-align: center;
}

@media (max-width: 720px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}
