:root {
    --purple:  #7B2FBE;
    --pink:    #E91E8C;
    --yellow:  #FFD93D;
    --teal:    #00BFA5;
    --blue:    #2979FF;
    --orange:  #FF6B35;
    --white:   #FFFFFF;
    --bg:      #F7F3FF;
    --dark:    #1A1A2E;
    --text:    #3D3D5C;
    --cream:   #FFF8E1;
    --shadow:  0 8px 32px rgba(123,47,190,0.13);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Nunito', sans-serif !important;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 0px;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hero {
    background: var(--dark);
    padding: 100px 0 80px;
    position: relative; overflow: hidden;
    text-align: center;
}
.hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.3; pointer-events: none;
}
.blob-1 { width:520px; height:520px; background:var(--purple); top:-150px; right:-100px; }
.blob-2 { width:420px; height:420px; background:var(--pink);   bottom:-80px; left:-80px; }
.blob-3 { width:300px; height:300px; background:var(--yellow); top:30%; left:40%; opacity:0.12; }
.hero-dots {
    position:absolute; inset:0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}
.hero .container { position: relative; z-index: 2; }
.hero-tag {
    display:inline-flex; align-items:center; gap:8px;
    background: rgba(255,217,61,0.15);
    border: 1px solid rgba(255,217,61,0.35);
    color: var(--yellow); padding:7px 20px; border-radius:999px;
    font-size:0.82rem; font-weight:800;
    letter-spacing:1.3px; text-transform:uppercase; margin-bottom:20px;
}
.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    color: white; line-height: 1.1; margin-bottom: 16px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem; line-height: 1.7;
    max-width: 600px; margin: 0 auto 32px;
}
.hero-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.btn-hero-wsp {
    display:inline-flex; align-items:center; gap:10px;
    background:#25D366; color:white;
    padding:16px 34px; border-radius:999px;
    font-weight:900; font-size:1.05rem; text-decoration:none;
    box-shadow:0 8px 24px rgba(37,211,102,0.4); transition:all .3s;
    border:2px solid rgba(255,255,255,0.2);
}
.btn-hero-wsp:hover { transform:translateY(-3px); box-shadow:0 14px 32px rgba(37,211,102,.5); }
.btn-hero-sec {
    display:inline-flex; align-items:center; gap:10px;
    background:rgba(255,255,255,0.1); color:white;
    border:2px solid rgba(255,255,255,0.3);
    padding:16px 34px; border-radius:999px;
    font-weight:900; font-size:1.05rem; text-decoration:none;
    backdrop-filter:blur(8px); transition:all .3s;
}
.btn-hero-sec:hover { background:rgba(255,255,255,0.2); transform:translateY(-3px); }

/* ===== BADGES STRIP ===== */
.badges-strip {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 22px 20px;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.badge {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    border-radius: 999px; padding: 8px 20px;
    color: white; font-size: 0.9rem; font-weight: 800;
}

/* ===== SECTION LABELS / TITLES ===== */
.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: 0.8rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--dark); margin-bottom: 10px; line-height: 1.15;
}
.section-title .hl { color: var(--purple); }
.section-sub {
    color: var(--text); font-size: 1rem;
    max-width: 580px; line-height: 1.65; margin-bottom: 48px;
}

/* ===== PLANES SECTION ===== */
.planes-section { background: var(--bg); padding: 70px 0; }

.season-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem; color: var(--dark);
    text-align: center; margin: 48px 0 28px;
    padding: 14px 20px;
    background: white; border-radius: 14px;
    border-left: 5px solid var(--purple);
    box-shadow: var(--shadow);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 16px;
}

.plan-card {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 15px 35px rgba(123,47,190,0.18);
    transition: all .4s ease;
    border: 3px solid rgba(255,255,255,0.35);
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; padding: 32px 26px; text-align: center;
}
.plan-card::before {
    content:''; position:absolute; top:-30%; left:-20%;
    width:180px; height:180px;
    background:rgba(255,255,255,.07); border-radius:50%; filter:blur(1px);
}
.plan-card::after {
    content:''; position:absolute; bottom:-35%; right:-15%;
    width:200px; height:200px;
    background:rgba(255,255,255,.05); border-radius:50%;
}
.plan-card:hover { transform:translateY(-9px); box-shadow:0 26px 52px rgba(123,47,190,.28); }

.plan-basico    { background: linear-gradient(135deg, #9C27B0, #E91E63); }
.plan-intermedio{ background: linear-gradient(135deg, #3F51B5, #9C27B0); }
.plan-premium   {
    background: linear-gradient(135deg, #FF9800, #E91E63);
    border: 3px solid rgba(255,235,59,.7);
    box-shadow: 0 18px 40px rgba(255,152,0,.25);
}

.plan-header { position:relative; z-index:2; color:white; }
.plan-icon {
    width:76px; height:76px; margin:0 auto 16px; border-radius:50%;
    background:rgba(255,255,255,.16); border:2px solid rgba(255,255,255,.28);
    display:flex; align-items:center; justify-content:center;
    font-size:2rem; backdrop-filter:blur(8px);
}
.plan-name {
    font-family:'Fredoka One', cursive;
    font-size:2rem; margin-bottom:12px; color:white;
    text-shadow:2px 2px 6px rgba(0,0,0,.18);
}
.plan-badge {
    display:inline-block; background:rgba(255,255,255,.18); color:white;
    padding:8px 18px; border-radius:999px; font-size:.95rem;
    margin-bottom:10px; backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.18);
}
.plan-tag {
    display:inline-block; margin-bottom:22px;
    padding:7px 14px; border-radius:999px;
    font-size:.9rem; font-weight:700;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.16); color:white;
}
.plan-premium .plan-tag { background:rgba(255,235,59,.2); border-color:rgba(255,235,59,.45); }
.plan-footer { position:relative; z-index:2; }
.btn-ver-plan {
    display:inline-flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.16); color:white;
    padding:14px 26px; border-radius:999px; font-weight:800;
    font-size:1rem; transition:all .35s ease;
    border:2px solid rgba(255,255,255,.38);
    width:100%; max-width:240px;
    font-family:'Fredoka One', cursive;
    cursor:pointer; backdrop-filter:blur(8px);
    position:relative; overflow:hidden;
}
.btn-ver-plan::before {
    content:''; position:absolute; top:0; left:-120%;
    width:100%; height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
    transition:left .6s;
}
.btn-ver-plan:hover::before { left:120%; }
.btn-ver-plan:hover { background:rgba(255,255,255,.26); transform:translateY(-2px) scale(1.02); }

/* ===== QUINCHO BANNER ===== */
.quincho-banner {
    background: linear-gradient(135deg, var(--dark), #2D1B69);
    border-radius: 22px; padding: 36px 32px;
    margin-top: 50px; text-align: center; color: white;
    position: relative; overflow: hidden;
    border: 2px solid rgba(255,217,61,0.3);
}
.quincho-banner::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at center, rgba(123,47,190,0.3) 0%, transparent 70%);
}
.quincho-banner h3 {
    font-family:'Fredoka One', cursive;
    font-size:1.8rem; color:var(--yellow);
    margin-bottom:10px; position:relative; z-index:2;
}
.quincho-banner p { font-size:1rem; color:rgba(255,255,255,.85); position:relative; z-index:2; margin-bottom:18px; }
.quincho-items {
    display:flex; justify-content:center; flex-wrap:wrap; gap:10px;
    position:relative; z-index:2;
}
.quincho-item {
    background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
    border-radius:999px; padding:8px 18px;
    font-size:.88rem; font-weight:700; color:white; backdrop-filter:blur(8px);
}

/* ===== SERVICIOS ADICIONALES ===== */
.servicios-section { background: white; padding: 70px 0; }
.servicios-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.servicio-card {
    border-radius: 22px; overflow: hidden;
    box-shadow: var(--shadow); transition: all .35s;
    border: 2px solid transparent;
    display: flex; flex-direction: column;
}
.servicio-card:hover { transform:translateY(-7px); box-shadow:0 20px 48px rgba(123,47,190,.2); border-color:var(--purple); }
.serv-top {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 22px; text-align: center; color: white;
}
.serv-icon {
    width:64px; height:64px; border-radius:18px;
    margin:0 auto 12px;
    background:rgba(255,255,255,.16); border:2px solid rgba(255,255,255,.25);
    display:flex; align-items:center; justify-content:center;
    font-size:1.8rem; backdrop-filter:blur(8px);
}
.serv-top h3 { font-family:'Fredoka One', cursive; font-size:1.2rem; }
.serv-body {
    background:var(--bg); padding:20px;
    display:flex; flex-direction:column; gap:14px; flex-grow:1;
}
.serv-body p { font-size:.93rem; color:var(--text); line-height:1.55; flex-grow:1; }
.btn-serv-wsp {
    display:flex; align-items:center; justify-content:center; gap:8px;
    background:#25D366; color:white;
    padding:12px; border-radius:14px; text-decoration:none;
    font-weight:800; font-size:.9rem; transition:all .3s;
}
.btn-serv-wsp:hover { background:#128C7E; transform:translateY(-2px); }

/* ===== TESTIMONIOS ===== */
.testi-section { background: var(--bg); padding: 70px 0; }
.testi-grid {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:22px; margin-top:48px;
}
.testi-card {
    background:white; border-radius:20px; padding:26px;
    border-left:4px solid var(--purple); transition:transform .3s;
    box-shadow:var(--shadow);
}
.testi-card:hover { transform:translateY(-5px); }
.testi-stars { color:var(--yellow); font-size:1.1rem; margin-bottom:10px; }
.testi-text  { font-style:italic; color:var(--text); line-height:1.65; margin-bottom:14px; font-size:.95rem; }
.testi-autor { font-weight:800; color:var(--purple); font-size:.88rem; }

/* ===== FAQ ===== */
.faq-section { background:white; padding:70px 0; }
.faq-wrap {
    max-width:800px; margin:48px auto 0;
    display:flex; flex-direction:column; gap:12px;
}
.faq-item { border:2px solid #ede5f8; border-radius:14px; overflow:hidden; transition:border-color .3s; }
.faq-item:hover { border-color:var(--purple); }
.faq-btn {
    width:100%; text-align:left; background:none; border:none;
    padding:18px 22px; font-family:'Fredoka One', cursive;
    font-size:1.05rem; color:var(--purple);
    cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.faq-btn i { transition:transform .3s; color:var(--pink); flex-shrink:0; }
.faq-item.open .faq-btn i { transform:rotate(180deg); }
.faq-ans {
    max-height:0; overflow:hidden;
    transition:max-height .4s ease, padding .3s;
    padding:0 22px; color:var(--text); line-height:1.65; font-size:.97rem;
}
.faq-item.open .faq-ans { max-height:300px; padding:0 22px 18px; }

/* ===== CTA ===== */
.cta-section {
    background:linear-gradient(135deg, var(--dark) 0%, #2D1B69 100%);
    padding:90px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before {
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse at center, rgba(123,47,190,.3) 0%, transparent 70%);
}
.cta-section .container { position:relative; z-index:2; }
.cta-section h2 {
    font-family:'Fredoka One', cursive;
    font-size:clamp(2rem,4vw,3rem); color:white; margin-bottom:14px;
}
.cta-section p { color:rgba(255,255,255,.75); font-size:1.1rem; margin-bottom:32px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-btn {
    display:inline-flex; align-items:center; gap:12px;
    background:#25D366; color:white;
    padding:20px 48px; border-radius:999px;
    font-weight:900; font-size:1.25rem; text-decoration:none;
    box-shadow:0 10px 32px rgba(37,211,102,.4); transition:all .3s;
    border:3px solid rgba(255,255,255,.2);
}
.cta-btn:hover { transform:translateY(-4px) scale(1.02); box-shadow:0 18px 48px rgba(37,211,102,.5); }
.cta-btn i { font-size:1.5rem; }

/* ===== MODAL ===== */
.modal {
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,.8); z-index:2000;
    backdrop-filter:blur(6px);
    align-items:center; justify-content:center; padding:20px;
}
.modal.open { display:flex; }
.modal-box {
    background:white; border-radius:28px;
    max-width:860px; width:100%;
    max-height:90vh; overflow-y:auto;
    animation:modalIn .35s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow:0 32px 80px rgba(0,0,0,.35);
}
@keyframes modalIn {
    from { opacity:0; transform:scale(0.85) translateY(20px); }
    to   { opacity:1; transform:scale(1) translateY(0); }
}
.modal-head {
    background:linear-gradient(135deg, var(--purple), var(--pink));
    padding:28px 32px; border-radius:28px 28px 0 0;
    text-align:center; color:white;
}
.modal-head h3 { font-family:'Fredoka One', cursive; font-size:2rem; margin-bottom:6px; }
.modal-head p  { font-size:1rem; opacity:.9; }
.modal-body { padding:28px 32px; }
.modal-cols { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-bottom:24px; }
.modal-col h4 {
    font-family:'Fredoka One', cursive;
    color:var(--purple); font-size:1.15rem;
    margin-bottom:14px; border-bottom:3px solid var(--bg); padding-bottom:8px;
}
.modal-list { list-style:none; }
.modal-list li {
    padding:9px 0 9px 26px; position:relative;
    border-bottom:1px solid #f5f0fc; font-size:.93rem; color:var(--text);
}
.modal-list li::before { content:'✓'; position:absolute; left:0; color:var(--purple); font-weight:900; }
.modal-list li:last-child { border-bottom:none; }
.modal-foot {
    padding:0 32px 28px;
    display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}
.btn-m-wsp {
    flex:1; min-width:160px;
    display:flex; align-items:center; justify-content:center; gap:8px;
    background:#25D366; color:white;
    padding:14px 20px; border-radius:16px;
    text-decoration:none; font-weight:800; font-size:.97rem; transition:all .3s;
}
.btn-m-wsp:hover { background:#128C7E; }
.btn-m-close {
    flex:1; min-width:160px;
    background:var(--bg); color:var(--text);
    border:2px solid #e0d8f0; padding:14px 20px; border-radius:16px;
    font-weight:800; font-size:.97rem; cursor:pointer;
    font-family:'Nunito',sans-serif; transition:all .3s;
}
.btn-m-close:hover { background:#ede5f8; border-color:var(--purple); }

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position:fixed; bottom:28px; right:28px;
    width:64px; height:64px;
    background:#25D366; color:white; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:2.2rem; box-shadow:0 6px 24px rgba(37,211,102,.5);
    z-index:999; text-decoration:none; border:3px solid white;
    animation:wapulse 2.5s infinite; transition:transform .3s,box-shadow .3s;
}
.whatsapp-float:hover { transform:scale(1.12) rotate(6deg); animation:none; }
@keyframes wapulse {
    0%  { box-shadow:0 0 0 0   rgba(37,211,102,.7); }
    70% { box-shadow:0 0 0 18px rgba(37,211,102,0); }
    100%{ box-shadow:0 0 0 0   rgba(37,211,102,0); }
}

/* ===== ANIMACIONES ===== */
.fade-up { opacity:0; transform:translateY(28px); 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; }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
    .plans-grid     { grid-template-columns:1fr; max-width:380px; margin-left:auto; margin-right:auto; }
    .servicios-grid { grid-template-columns:1fr 1fr; }
    .testi-grid     { grid-template-columns:1fr; }
    .modal-cols     { grid-template-columns:1fr; }
}
@media (max-width:640px) {
    body { padding-top:0px; }
    .hero { padding:100px 0 70px; }
    .hero h1 { font-size:2.1rem; }
    .hero-actions { flex-direction:column; align-items:center; }
    .servicios-grid { grid-template-columns:1fr; }
    .whatsapp-float { width:56px; height:56px; font-size:1.9rem; bottom:18px; right:18px; }
    .modal-foot { flex-direction:column; }
}