/* ============================================
   INDEX.CSS — Systelcom
   © 2026 Systelcom. Todos los derechos reservados.
   ============================================ */

:root {
    --primary: #004aad;
    --primary-light: #e6f0fa;
    --accent: #00c853;
    --dark: #f8fafc;
    --text-main: #1e293b;
    --glass: rgba(255, 255, 255, 0.9);
}

body {
    background-color: var(--dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 20px 50px 20px;
}

/* ── Header ── */
header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contenido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contenido-header h1 {
    margin: 0;
    display: flex;
    align-items: center;
}

.contenido-header img {
    max-height: 50px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.contenido-header img:hover {
    transform: scale(1.05);
}

/* ── Nav ── */
.navegacion-principal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navegacion-principal a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.navegacion-principal a:hover {
    color: var(--accent);
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-2px);
}

/* ── Chatbot ── */
.chatbot-widget {
    position: relative;
    background: linear-gradient(135deg, var(--primary), #00b4d8) !important;
    color: white !important;
    height: 60px;
    padding: 0 25px 0 8px;
    border-radius: 50px !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4) !important;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-bot 2s infinite;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    margin-left: 50px;
}

.chatbot-icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 20px 20px 10px 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: flex;
}

.chatbot-icon-wrapper::before,
.chatbot-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 5px;
    height: 15px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.chatbot-icon-wrapper::before { left: -4px; }
.chatbot-icon-wrapper::after  { right: -4px; }

.chatbot-widget:hover {
    transform: scale(1.05) translateY(-3px) !important;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.8) !important;
}

.chatbot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 8px 8px;
    position: relative;
    z-index: 10;
}

.chatbot-text {
    white-space: nowrap;
    letter-spacing: 0.5px;
    color: white;
}

@keyframes pulse-bot {
    0%   { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
    70%  { box-shadow: 0 0 0 15px rgba(0, 200, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* ── Section title ── */
div.header.section-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.section-title h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.section-title h1 span {
    color: var(--accent);
    display: block;
    font-size: 4rem;
}

.section-title h2 {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* ── Sobre Festival ── */
.sobre-festival {
    background: linear-gradient(135deg, white, var(--primary-light));
    border: 1px solid rgba(0, 74, 173, 0.1);
    border-radius: 24px;
    padding: 50px;
    margin: 60px 0;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.08);
    box-sizing: border-box;
}

.sobre-festival .imagen { flex: 1; }

.sobre-festival .imagen img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.sobre-festival .imagen img:hover {
    transform: scale(1.03) rotate(-1deg);
}

.contenido-festival { flex: 1.2; }

.contenido-festival h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 800;
}

.contenido-festival .fecha {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 74, 173, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(0, 74, 173, 0.2);
}

.contenido-festival p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

@media (max-width: 900px) {
    .sobre-festival {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 30px;
    }
}

/* ── Segmentación ── */
.segmentacion-ideal {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f6ff 0%, #f8fafc 50%, #f0fff6 100%);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.seg-bg-left {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 74, 173, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.seg-bg-right {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.seg-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 30px;
    width: 100%;
    max-width: 1100px;
}

.seg-badge {
    display: inline-block;
    background: rgba(0, 74, 173, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0, 74, 173, 0.15);
    margin-bottom: 20px;
}

.seg-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 14px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.seg-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 auto 60px auto;
    max-width: 500px;
    line-height: 1.6;
}

.seg-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.seg-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 50px 40px;
    flex: 1;
    max-width: 420px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.seg-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1); }
.seg-card--hogar:hover  { border-color: rgba(0, 74, 173, 0.3);  box-shadow: 0 25px 60px rgba(0, 74, 173, 0.12); }
.seg-card--negocio:hover { border-color: rgba(0, 200, 83, 0.3); box-shadow: 0 25px 60px rgba(0, 200, 83, 0.12); }

.seg-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.seg-card--hogar .seg-card-glow   { background: radial-gradient(circle, rgba(0, 74, 173, 0.1) 0%, transparent 70%); }
.seg-card--negocio .seg-card-glow { background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%); }
.seg-card:hover .seg-card-glow    { opacity: 1; }

.seg-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.seg-card--hogar .seg-card-icon   { background: rgba(0, 74, 173, 0.08); color: var(--primary); }
.seg-card--negocio .seg-card-icon { background: rgba(0, 200, 83, 0.1);  color: #00a855; }
.seg-card:hover .seg-card-icon    { transform: scale(1.1) rotate(-5deg); }

.seg-card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.seg-card--hogar .seg-card-tag   { color: var(--primary); }
.seg-card--negocio .seg-card-tag { color: #00a855; }

.seg-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.seg-card p {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 28px 0;
}

.seg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seg-features li {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seg-card--hogar .seg-features li i   { color: var(--primary); }
.seg-card--negocio .seg-features li i { color: #00a855; }

.seg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.seg-card--hogar .seg-cta          { background: rgba(0, 74, 173, 0.07); color: var(--primary); }
.seg-card--negocio .seg-cta        { background: rgba(0, 200, 83, 0.08); color: #00a855; }
.seg-card--hogar:hover .seg-cta    { background: var(--primary); color: white; }
.seg-card--negocio:hover .seg-cta  { background: #00a855; color: white; }

.seg-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    flex-shrink: 0;
}

.seg-divider span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .seg-cards { flex-direction: column; align-items: center; }
    .seg-divider { padding: 16px 0; transform: rotate(90deg); }
    .seg-card { max-width: 100%; width: 100%; }
}

/* ── Pricing ── */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    width: 100%;
}

.plan-card {
    background: var(--glass);
    border: 1px solid rgba(0, 74, 173, 0.15);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.plan-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent);
    color: black;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-icon   { font-size: 3rem; margin-bottom: 20px; color: var(--primary); }
.plan-name   { font-size: 1.5rem; font-weight: bold; margin-bottom: 10px; }

.plan-megas {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    display: block;
    color: var(--primary);
}

.plan-megas span { font-size: 1.2rem; color: #64748b; }

.plan-price { font-size: 2rem; color: var(--accent); margin: 20px 0; }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plan-features li { margin-bottom: 12px; font-size: 0.95rem; color: #475569; font-weight: 500; }
.plan-features i  { color: var(--accent); margin-right: 10px; }

.btn-select {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
    cursor: pointer;
}

.plan-card:hover .btn-select {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(0, 74, 173, 0.4);
}

.btn-select.btn-gamer { background: var(--accent); border-color: var(--accent); color: white; }

.plan-card:hover .btn-select.btn-gamer {
    background: white;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
}

.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
}

.plan-card:hover .shine { left: 150%; }

/* ── WhatsApp Button ── */
.whatsapp-button-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 74, 173, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 8px 25px 8px 8px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.whatsapp-button-fixed:hover {
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 200, 83, 0.12);
    border-color: rgba(0, 200, 83, 0.2);
}

.systelcom-contact {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.systelcom-image-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    transition: 0.3s;
}

.whatsapp-button-fixed:hover .systelcom-contact { transform: scale(1.05); }

.online-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #25D366;
    border: 2px solid #ffffff;
    border-radius: 50%;
    z-index: 15;
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.5);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-label h3 {
    margin: 0 0 2px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.whatsapp-label p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-button-fixed:hover .whatsapp-label h3 { color: var(--accent); }
.whatsapp-button-fixed:hover .whatsapp-label p  { color: #475569; }

/* ── Mapa ── */
.custom-div-icon div {
    animation: pulse-map 2s infinite;
}

@keyframes pulse-map {
    0%   { transform: scale(1);   box-shadow: 0 0 0 0 rgba(0, 168, 89, 0.7); }
    70%  { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(0, 168, 89, 0); }
    100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(0, 168, 89, 0); }
}

/* ── Tailwind overrides (atención / oficinas) ── */
.hover-lift:hover { transform: translateY(-3px); transition: all 0.2s ease; }
.bg-systel        { background-color: #0056b3; }
.text-systel-green { color: #00a859; }

/* ============================================================
   RESPONSIVE — Celular · Tablet · TV
   Breakpoints:
     xs  < 480px   (celular pequeño)
     sm  < 768px   (celular grande / landscape)
     md  < 1024px  (tablet)
     lg  < 1280px  (tablet grande / laptop pequeño)
     xl  > 1600px  (TV / pantalla grande)
   ============================================================ */

/* ── Hamburger button ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animación X al abrir */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TV / pantallas grandes (≥ 1600px) ── */
@media (min-width: 1600px) {
    body { padding-top: 160px; }

    .contenido-header { max-width: 1600px; }

    .sobre-festival,
    .pricing-container { max-width: 1500px; }

    .seg-inner { max-width: 1400px; }

    .contenido-festival h2 { font-size: 3.4rem; }
    .contenido-festival p  { font-size: 1.25rem; }

    .plan-megas  { font-size: 4.5rem; }
    .plan-price  { font-size: 2.4rem; }
    .plan-name   { font-size: 1.8rem; }

    .seg-card    { max-width: 560px; padding: 60px 50px; }
    .seg-card h3 { font-size: 2.4rem; }
}

/* ── Tablet grande (≤ 1280px) ── */
@media (max-width: 1280px) {
    .navegacion-principal a { font-size: 0.9rem; padding: 7px 12px; }
    .chatbot-widget         { margin-left: 20px; }
    .pricing-container      { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
    body { padding-top: 130px; }

    .navegacion-principal a { font-size: 0.82rem; padding: 6px 10px; gap: 8px; }

    .sobre-festival         { padding: 35px; gap: 30px; }
    .contenido-festival h2  { font-size: 2.2rem; }

    .seg-card               { padding: 40px 28px; }
    .seg-card h3            { font-size: 1.6rem; }

    .pricing-container      { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .plan-megas             { font-size: 3rem; }
}

/* ── Tablet pequeña / celular grande (≤ 768px) ── */
@media (max-width: 768px) {
    /* Body */
    body { padding-top: 90px; padding-left: 16px; padding-right: 16px; }

    /* Header */
    .contenido-header { padding: 0 16px; }

    /* Mostrar hamburguesa, ocultar nav */
    .nav-toggle { display: flex; }

    .navegacion-principal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 1050;
        padding: 80px 30px 40px;
    }

    .navegacion-principal.nav-open { display: flex; }

    .navegacion-principal a {
        font-size: 1.1rem;
        padding: 12px 28px;
        width: 100%;
        text-align: center;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.06);
    }

    .chatbot-widget {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        height: 52px;
    }

    /* Video hero */
    .video { min-height: 260px; }
    .contenido-video h2 { font-size: 1.6rem; }
    .contenido-video p  { font-size: 0.95rem; }

    /* Sobre festival */
    .sobre-festival {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        text-align: center;
        margin: 30px 0;
    }
    .contenido-festival h2  { font-size: 1.8rem; }
    .contenido-festival p   { font-size: 1rem; }

    /* Segmentación */
    .seg-inner              { padding: 50px 20px; }
    .seg-cards              { flex-direction: column; align-items: center; gap: 20px; }
    .seg-divider            { padding: 0; transform: none; }
    .seg-card               { max-width: 100%; width: 100%; padding: 32px 24px; }
    .seg-card h3            { font-size: 1.5rem; }
    .seg-subtitle           { margin-bottom: 36px; }

    /* Planes */
    .pricing-container      { grid-template-columns: 1fr; gap: 18px; }
    .plan-megas             { font-size: 2.8rem; }
    .plan-card              { padding: 28px 20px; }

    /* WhatsApp flotante */
    .whatsapp-button-fixed  { bottom: 16px; right: 16px; padding: 6px 16px 6px 6px; }
    .whatsapp-label h3      { font-size: 0.9rem; }
    .whatsapp-label p       { font-size: 0.72rem; }
    .systelcom-contact      { width: 40px; height: 40px; }
}

/* ── Celular pequeño (≤ 480px) ── */
@media (max-width: 480px) {
    body { padding-top: 80px; padding-left: 12px; padding-right: 12px; }

    .contenido-header img   { max-height: 38px; }

    .sobre-festival         { padding: 18px; border-radius: 16px; }
    .contenido-festival h2  { font-size: 1.5rem; }
    .contenido-festival .fecha { font-size: 0.9rem; letter-spacing: 1px; }

    .seg-title              { font-size: 1.7rem; }
    .seg-card               { padding: 24px 18px; border-radius: 20px; }
    .seg-card h3            { font-size: 1.3rem; }
    .seg-card-icon          { width: 56px; height: 56px; font-size: 1.5rem; }

    .plan-megas             { font-size: 2.4rem; }
    .plan-price             { font-size: 1.6rem; }
    .plan-name              { font-size: 1.2rem; }
    .btn-select             { padding: 10px 20px; font-size: 0.85rem; }

    /* Ocultar label WhatsApp en pantallas muy pequeñas */
    .whatsapp-label         { display: none; }
    .whatsapp-button-fixed  { padding: 6px; border-radius: 50%; }
    .systelcom-contact      { margin-right: 0; }
}
