/* ======================= DISTANCIA ARRIBA ======================= */
body.index #talleres-disponibles .service-row {
    padding-top: 140px; /* igual que Superhéroes */
}

/* ======================= CAJA DERECHA: RESERVA TU TALLER ======================= */
#reserva-taller {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

#reserva-taller .talleres-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 40px 25px 30px 25px;
    position: relative;
    max-width: 520px;
}

/* Fondo estilo cómic */
#reserva-taller .talleres-right::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 520px;
    min-height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #d0f0ff 0%, #a0e0ff 100%);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    padding: 30px 25px 45px 25px;
    box-sizing: border-box;
}

/* Destellos animados */
#reserva-taller .talleres-right::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 20%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: sparkle 6s linear infinite;
    mix-blend-mode: screen;
}

@keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Texto principal */
#reserva-taller .talleres-right .emphasis {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.6rem;
    font-weight: 900;
    color: #06425c;
    text-align: center;
    line-height: 1.3;
}

#reserva-taller .talleres-right .highlight {
    font-size: 2.3rem;
    font-weight: 900;
    color: #1abc9c;
}

/* Botones estilo Superhéroes */
#reserva-taller .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

#reserva-taller .button-link {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

#reserva-taller .button-link.whatsapp {
    background-color: #25D366;
}

#reserva-taller .button-link.instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

#reserva-taller .button-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    #reserva-taller .talleres-right {
        max-width: 90%;
        padding: 30px 20px 25px 20px;
    }
}

@media (max-width: 768px) {
    body.index #talleres-disponibles .service-row {
        padding-top: 80px; /* aumenta espacio en móvil si quieres */
    }

    #reserva-taller .talleres-right::before {
        width: 90%;
        min-height: 200px;
        padding: 20px 15px 35px 15px;
    }

    #reserva-taller .talleres-right .emphasis {
        font-size: 1.2rem;
       font-family: 'Comic Sans MS';
    }

    #reserva-taller .talleres-right .highlight {
        font-size: 1.5rem;
      font-family: 'Comic Sans MS';
    }

    #reserva-taller .button-link {
        padding: 14px 26px;
        font-size: 1.1rem;
      font-family: 'Comic Sans MS';
    }
}
