:root {
    --purple: #7B2FBE;
    --purple-light: #9C4FD4;
    --pink: #E91E8C;
    --yellow: #FFD93D;
    --orange: #FF6B35;
    --teal: #00BFA5;
    --blue: #2979FF;
    --white: #FFFFFF;
    --bg: #F7F3FF;
    --dark: #1A1A2E;
    --text: #3D3D5C;
    --muted: #74748F;
    --card-shadow: 0 8px 32px rgba(123,47,190,.13);
    --card-shadow-hover: 0 22px 52px rgba(123,47,190,.2);
}

body {
    background: var(--bg);
}

/* ===== BASE ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.15;
}

.section-title .hl {
    color: var(--purple);
}

.section-sub {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--purple);
    top: -100px;
    right: -150px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    bottom: -80px;
    left: -100px;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 40%;
    left: 35%;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,217,61,.15);
    border: 1px solid rgba(255,217,61,.4);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero h1 .accent-pink {
    color: #ff80c0;
}

.hero-desc {
    color: rgba(255,255,255,.78);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-wsp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-hero-primary {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(255,217,61,.4);
}

.btn-hero-wsp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn-hero-primary:hover,
.btn-hero-wsp:hover {
    transform: translateY(-3px);
}

.hero-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.stat-box {
    background: rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.1);
}

.stat-num {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--yellow);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    color: rgba(255,255,255,.68);
    font-size: .88rem;
    font-weight: 700;
}

.hero-horario {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.hero-horario i {
    font-size: 1.6rem;
    color: var(--yellow);
    flex-shrink: 0;
}

.hero-horario strong {
    display: block;
    font-size: 1.1rem;
    font-family: 'Fredoka One', cursive;
}

.hero-horario span {
    font-size: .88rem;
    opacity: .88;
}

/* ===== DIAGONAL ===== */
.diagonal-divider {
    height: 80px;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    margin-bottom: -2px;
}

/* ===== PARA QUIÉN ===== */
.para-quien,
.timeline-section,
.testimonios {
    background: white;
    padding: 80px 0;
}

.quien-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px;
    max-width: 620px;
}

.quien-card {
    background: var(--bg);
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.quien-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.quien-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--teal), var(--blue));
}

.quien-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--purple), var(--pink));
}

.quien-card:hover {
    transform: translateY(-7px);
    border-color: var(--purple);
    background: white;
    box-shadow: var(--card-shadow);
}

.quien-emoji {
    font-size: 3rem;
    margin-bottom: 14px;
    display: block;
}

.quien-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.quien-card p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.55;
}

/* ===== HIGHLIGHTS ===== */
.highlights,
.planes-section {
    background: var(--bg);
    padding: 80px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.highlight-card {
    background: white;
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all .3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: var(--card-shadow-hover);
}

.hl-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
}

.hl-icon.purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: white;
}

.hl-icon.pink {
    background: linear-gradient(135deg, var(--pink), #ff80c0);
    color: white;
}

.hl-icon.teal {
    background: linear-gradient(135deg, var(--teal), #00e5cc);
    color: white;
}

.hl-icon.orange {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
}

.highlight-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 12px;
}

.highlight-card small {
    color: var(--purple);
    font-weight: 900;
    font-size: .82rem;
}

/* ===== TIMELINE ===== */
.timeline-wrap {
    max-width: 920px;
    margin: 48px auto 0;
    position: relative;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--purple), var(--pink), var(--teal));
    border-radius: 3px;
}

.tl-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    cursor: pointer;
}

.tl-time {
    width: 160px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 28px;
    padding-top: 18px;
}

.tl-time span {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
}

.tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--purple);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--purple);
    flex-shrink: 0;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    transition: all .3s ease;
}

.tl-content {
    flex: 1;
    background: var(--bg);
    border-radius: 18px;
    padding: 18px 22px;
    margin-left: 24px;
    border: 2px solid transparent;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tl-item:hover .tl-dot {
    background: var(--yellow);
    box-shadow: 0 0 0 3px var(--yellow);
    transform: scale(1.3);
}

.tl-item:hover .tl-content {
    background: white;
    border-color: var(--purple);
    box-shadow: var(--card-shadow);
    transform: translateX(6px);
}

.tl-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tl-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.tl-text p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.4;
}

.tl-more {
    margin-left: auto;
    color: var(--purple);
    font-size: .8rem;
    font-weight: 900;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== TALLERES ===== */
.talleres-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.talleres-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,47,190,.25), transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.talleres-inner {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 32px;
    padding: 48px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.talleres-subtitle {
    text-align: center;
    color: rgba(255,255,255,.58);
    font-size: 1rem;
    margin-bottom: 36px;
}

.talleres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.taller-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 26px 16px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
}

.taller-card:hover {
    background: rgba(255,255,255,.13);
    border-color: var(--yellow);
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,.3);
}

.taller-card .t-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}

.taller-card h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 4px;
}

.taller-card p {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
}

.dias-semana {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
}

.dia-chip {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    padding: 8px 20px;
    color: white;
    font-size: .9rem;
    font-weight: 800;
}

.dia-chip span {
    color: var(--yellow);
}

/* ===== PLANES ===== */
.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.plan-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all .3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--purple);
}

.plan-card.featured {
    border-color: var(--yellow);
    box-shadow: 0 16px 48px rgba(255,217,61,.2);
}

.plan-top {
    padding: 32px 28px;
    text-align: center;
    position: relative;
}

.plan-card:nth-child(1) .plan-top {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.plan-card:nth-child(2) .plan-top {
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.plan-card:nth-child(3) .plan-top {
    background: linear-gradient(135deg, var(--teal), var(--blue));
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--yellow);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 0 0 12px 12px;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-top i {
    font-size: 2.2rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 12px;
    display: block;
}

.plan-top h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 6px;
}

.plan-top p {
    color: rgba(255,255,255,.82);
    font-size: .9rem;
}

.plan-body {
    padding: 28px;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    padding: 9px 0 9px 28px;
    border-bottom: 1px solid #f0f0f0;
    font-size: .95rem;
    color: var(--text);
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan-wsp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    transition: all .3s ease;
}

.btn-plan-wsp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ===== TESTIMONIOS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testi-card {
    background: var(--bg);
    border-radius: 22px;
    padding: 28px;
    border-left: 4px solid var(--purple);
    transition: transform .3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
}

.testi-stars {
    color: #FFD93D;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testi-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: .97rem;
}

.testi-autor {
    font-weight: 900;
    color: var(--purple);
    font-size: .9rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1B69 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(123,47,190,.3) 0%, transparent 70%);
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
}

.cta-final p {
    color: rgba(255,255,255,.72);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25D366;
    color: white;
    padding: 20px 48px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(37,211,102,.4);
    transition: all .3s ease;
    border: 3px solid rgba(255,255,255,.2);
}

.cta-final-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 48px rgba(37,211,102,.5);
}

/* ===== MODALES ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 2000;
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.modal.open {
    display: flex;
}

.modal-box {
    background: white;
    border-radius: 28px;
    max-width: 540px;
    width: min(100%, 540px);
    max-height: 86vh;
    overflow: hidden;
    animation: modalIn .35s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 32px 80px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-head {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 28px 56px 24px 30px;
    border-radius: 28px 28px 0 0;
    text-align: center;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.modal-head i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.modal-head h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.7rem;
    line-height: 1.15;
}

.modal-head::after {
    display: none !important;
    content: none !important;
}


.modal-body {
    padding: 28px 30px;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 9px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,.04);
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(123,47,190,.35);
    border-radius: 999px;
}

.modal-body h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--purple);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.modal-list {
    list-style: none;
    margin-bottom: 16px;
}

.modal-list li {
    padding: 9px 0 9px 28px;
    border-bottom: 1px solid #f5f5f5;
    font-size: .95rem;
    color: var(--text);
    position: relative;
}

.modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: 900;
}

.modal-body p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.modal-info-box {
    background: var(--bg);
    border-radius: 14px;
    padding: 14px 18px;
    margin-top: 12px;
    border-left: 3px solid var(--purple);
    font-size: .9rem;
    color: var(--text);
}

.modal-foot {
    padding: 0 30px 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    flex-shrink: 0;
    background: white;
}

.btn-m-wsp {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 13px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    font-size: .95rem;
    transition: all .3s ease;
}

.btn-m-wsp:hover {
    background: #128C7E;
}

.btn-m-close {
    flex: 1;
    min-width: 140px;
    background: var(--bg);
    color: var(--text);
    border: 2px solid #e0e0e0;
    padding: 13px 20px;
    border-radius: 14px;
    font-weight: 900;
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-m-close:hover {
    background: #f0f0f0;
    border-color: var(--purple);
}

/* ===== ANIMACIONES ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }
.fade-up-d5 { transition-delay: .5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .highlights-grid,
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planes-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 100px 0 70px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        display: none;
    }

    .timeline-wrap::before {
        left: 22px;
    }

    .tl-time {
        width: 46px;
        padding-right: 0;
        text-align: left;
    }

    .tl-time span {
        display: none;
    }

    .tl-time::after {
        content: attr(data-hora);
        background: linear-gradient(135deg, var(--purple), var(--pink));
        color: white;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: .7rem;
        font-weight: 900;
        display: inline-block;
        white-space: nowrap;
        transform: translateX(-6px);
    }

    .tl-content {
        margin-left: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-wsp {
        width: 100%;
    }

    .quien-grid,
    .highlights-grid,
    .talleres-grid,
    .testi-grid {
        grid-template-columns: 1fr;
    }

    .talleres-inner {
        padding: 28px 20px;
    }

    .tl-content {
        align-items: flex-start;
    }

    .tl-more {
        display: none;
    }

    .cta-final-btn {
        font-size: 1.05rem;
        padding: 18px 30px;
    }

    .modal {
        padding: 14px;
    }

    .modal-box {
        max-height: 88vh;
        border-radius: 22px;
    }

    .modal-head {
        border-radius: 22px 22px 0 0;
        padding: 24px 48px 20px 24px;
    }

    .modal-body {
        padding: 22px 22px;
    }

    .modal-foot {
        padding: 0 22px 22px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 86px 0 54px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .para-quien,
    .timeline-section,
    .testimonios,
    .highlights,
    .planes-section,
    .talleres-section {
        padding: 62px 0;
    }

    .tl-content {
        padding: 16px;
        gap: 12px;
    }

    .tl-icon {
        width: 40px;
        height: 40px;
    }

    .modal-head h2 {
        font-size: 1.45rem;
    }
}
@media (max-width: 768px) {
    .modal-head::after,
    .modal-head::before,
    .modal-close,
    .btn-close,
    .close-modal {
        display: none !important;
        content: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

@media (max-width: 480px) {
    .modal-head::after,
    .modal-head::before,
    .modal-close,
    .btn-close,
    .close-modal {
        display: none !important;
        content: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}