/* ====================
   PORTADA DINÁMICA
==================== */
.portada {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Sombras para que el texto resalte sobre la imagen */
.portada h1,
.portada p {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Capa semitransparente */
.portada .bg-dark {
    background: rgba(197, 162, 0, 0.65) !important; /* dorado translúcido */
    border-radius: 1.5rem;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

/* Título principal */
.portada h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
}

/* Subtítulo */
.portada p.lead {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: #FFF8E1; /* dorado muy claro */
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

/* Botón calendario */
.portada .btn-success {
    background-color: #C5A200; /* dorado fuerte */
    border: none;
    font-weight: 600;
    border-radius: 2rem;
    padding: 12px 28px;
    transition: all 0.3s ease-in-out;
}
.portada .btn-success:hover {
    background-color: #A78900; /* dorado oscuro */
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(197, 162, 0, 0.3);
}

/* ====================
   COUNTDOWN
==================== */
.countdown {
    background: linear-gradient(135deg, #FFF8E1, #FFFDF5); /* tonos crema/dorado suave */
    border-radius: 25px;
    padding: 60px 20px;
    box-shadow: 0 8px 25px rgba(197, 162, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* Título */
.countdown .section-title {
    color: #C5A200;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

/* Texto de la cuenta regresiva */
#countdown {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #A78900;
    letter-spacing: 2px;
    text-shadow: 1px 1px 8px rgba(255, 215, 0, 0.5); /* brillo dorado */
}

/* Decoración con un sutil brillo */
.countdown::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 162, 0, 0.08) 0%, transparent 70%);
    animation: pulse 6s infinite;
}

/* Animación de pulso */
@keyframes pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    50%  { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.7; }
}


/* ====================
   FRASE ESPECIAL (Dorado)
==================== */
.frase-especial {
    background: linear-gradient(135deg, #fffbe6, #fff5cc);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
    position: relative;
    padding: 60px 20px;
}

.frase-especial blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 30px;
    border-left: 6px solid #b8860b;
    border-radius: 15px;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.1);
}

.frase-especial blockquote p {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #b8860b;
    font-style: italic;
    line-height: 1.8;
}

.frase-especial blockquote footer {
    font-size: 1.2rem;
    font-weight: 500;
    color: #daa520;
    margin-top: 15px;
}

/* Decoración suave con comillas */
.frase-especial blockquote::before {
    content: "“";
    font-size: 4rem;
    color: rgba(218, 165, 32, 0.25);
    position: absolute;
    left: 15%;
    top: 10px;
    font-family: serif;
}

.frase-especial blockquote::after {
    content: "”";
    font-size: 4rem;
    color: rgba(218, 165, 32, 0.25);
    position: absolute;
    right: 15%;
    bottom: 10px;
    font-family: serif;
}



/* ====================
   VESTIMENTA (Dorado)
==================== */
.vestimenta {
    background: linear-gradient(135deg, #fffbe6, #fff5cc);
    border-radius: 25px;
    padding: 60px 20px;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.12);
    position: relative;
    overflow: hidden;
}

/* Título */
.vestimenta h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(218, 165, 32, 0.25);
}

/* Imagen */
.vestimenta img {
    border: 5px solid #daa520;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vestimenta img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.3);
}

/* Código principal */
.vestimenta p.fw-bold {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #b8860b;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Observaciones */
.vestimenta p.text-muted {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d !important;
}

/* Decoración animada */
.vestimenta::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    animation: floatVest 8s ease-in-out infinite;
}

@keyframes floatVest {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(3deg); }
}



/* ====================
   ITINERARIO (Dorado)
==================== */
.itinerario {
    background: linear-gradient(135deg, #fffbe6, #fff5cc);
    border-radius: 25px;
    padding: 60px 20px;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.12);
}

.itinerario .section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: #b8860b;
    text-shadow: 1px 1px 6px rgba(218, 165, 32, 0.25);
}

/* Contenedor de la línea */
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    max-width: 700px;
}

/* Línea vertical central */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #daa520;
    border-radius: 2px;
    transform: translateX(-50%);
}

/* Cada evento */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

/* Icono circular */
.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #fff;
    border: 4px solid #daa520;
    color: #b8860b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Contenido */
.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.12);
    width: 45%;
    position: relative;
}

/* Alternar lados */
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: calc(55%);
}
.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: calc(55%);
}

/* Títulos */
.timeline-content h4 {
    color: #b8860b;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Texto */
.timeline-content p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Botón mapa */
.timeline-content .btn-outline-primary {
    border-color: #b8860b;
    color: #b8860b;
    border-radius: 20px;
    font-weight: 500;
}
.timeline-content .btn-outline-primary:hover {
    background-color: #b8860b;
    color: #fff;
}


/* ====================
   MESA DE REGALOS
==================== */
section.py-5.bg-light.text-center {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    padding: 60px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.12);
}

/* Título */
section.py-5.bg-light.text-center h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    margin-bottom: 20px;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.2);
}

/* Texto introductorio */
section.py-5.bg-light.text-center p.text-muted {
    font-size: 1.1rem;
    color: #6c757d !important;
    margin-bottom: 40px;
}

/* Tarjetas */
section.py-5.bg-light.text-center .card {
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: center;
}

section.py-5.bg-light.text-center .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(201, 162, 39, 0.25);
}

/* Imagen del logo */
section.py-5.bg-light.text-center .card img {
    width: 65px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
section.py-5.bg-light.text-center .card img:hover {
    transform: scale(1.15);
}

/* Nombre del tipo */
section.py-5.bg-light.text-center .card-title {
    color: #c9a227;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
    font-size: 1.35rem;
}

/* Botón "Ir al sitio" */
section.py-5.bg-light.text-center .btn-outline-primary {
    border-color: #c9a227;
    color: #c9a227;
    font-weight: 500;
    transition: all 0.3s ease;
}
section.py-5.bg-light.text-center .btn-outline-primary:hover {
    background: #c9a227;
    color: #fff;
}



/* ====================
   RSVP
==================== */
.rsvp-section {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    padding: 60px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.12);
}

/* Título */
.rsvp-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.2);
}

/* Botón Confirmar */
.rsvp-section .btn-primary {
    background-color: #c9a227;
    border-color: #c9a227;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rsvp-section .btn-primary:hover {
    background-color: #a37e1d;
    border-color: #a37e1d;
}

/* Botón Ver lista */
.rsvp-section .btn-outline-secondary {
    color: #c9a227;
    border-color: #c9a227;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.rsvp-section .btn-outline-secondary:hover {
    background-color: #c9a227;
    color: #fff;
}

/* Modal */
.modal-content {
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #c9a227;
}

.modal-footer {
    border-top: none;
}

.modal .btn-primary {
    border-radius: 10px;
    font-weight: 600;
}

/* Inputs */
.modal input.form-control,
.modal select.form-select {
    border-radius: 10px;
    border: 2px solid #c9a227;
    padding: 10px;
}
.modal input.form-control:focus,
.modal select.form-select:focus {
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.3);
    border-color: #a37e1d;
}


/* ====================
   MENSAJES
==================== */
.mensaje-section {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    padding: 60px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.12);
}

/* Título */
.mensaje-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.2);
    margin-bottom: 40px;
}

/* Tarjetas de mensajes */
.mensaje-section .card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}
.mensaje-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.25);
}

/* Texto del mensaje */
.mensaje-section .card-text {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Autor y fecha */
.mensaje-section footer {
    font-size: 0.9rem;
    color: #c9a227;
    margin-top: 10px;
}

/* Botón modal */
.mensaje-section .btn-primary {
    background-color: #c9a227;
    border-color: #c9a227;
    font-weight: 600;
    transition: all 0.3s ease;
}
.mensaje-section .btn-primary:hover {
    background-color: #a37e1d;
    border-color: #a37e1d;
}

/* Modal formulario */
.modal-content {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);
    padding: 20px;
}

/* Modal títulos */
.modal-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #c9a227;
}

/* Inputs y textarea */
.modal input.form-control,
.modal textarea.form-control {
    border-radius: 10px;
    border: 2px solid #c9a227;
    padding: 10px;
}
.modal input.form-control:focus,
.modal textarea.form-control:focus {
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.3);
    border-color: #a37e1d;
}

/* Botones modal */
.modal .btn-primary {
    border-radius: 10px;
    font-weight: 600;
}
.modal .btn-secondary {
    border-radius: 10px;
}



/* ====================
   GALERÍA DINÁMICA
==================== */
.galeria-section {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    padding: 60px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.12);
}

/* Título */
.galeria-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.2);
}

/* Card del formulario de subida */
.galeria-section .card {
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.12);
}

.galeria-section .card-title {
    font-family: 'Dancing Script', cursive;
    color: #c9a227;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Inputs y botón */
.galeria-section input.form-control {
    border-radius: 10px;
    border: 2px solid #c9a227;
    padding: 10px;
}
.galeria-section input.form-control:focus {
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.3);
    border-color: #a37e1d;
}

.galeria-section .btn-primary {
    background-color: #c9a227;
    border-color: #c9a227;
    font-weight: 600;
    transition: all 0.3s ease;
}
.galeria-section .btn-primary:hover {
    background-color: #a37e1d;
    border-color: #a37e1d;
}

/* Imágenes de galería */
.galeria-section img {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.galeria-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.25);
}

/* Modal de foto */
.galeria-section .modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.2);
}
.galeria-section .modal-body img {
    display: block;
    width: 100%;
    height: auto;
}
.galeria-section .modal-footer .btn-light {
    border-radius: 10px;
}



/* ====================
   PEINADO / MAQUILLAJE
==================== */
.peinado-section {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    padding: 60px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.12);
}

/* Título */
.peinado-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.2);
}

/* Card */
.peinado-section .card {
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}
.peinado-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.25);
}

/* Card title */
.peinado-section .card-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #c9a227;
    margin-bottom: 15px;
}

/* Detalles */
.peinado-section p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.peinado-section a.btn-outline-primary {
    border-color: #c9a227;
    color: #c9a227;
    font-weight: 500;
    transition: all 0.3s ease;
}
.peinado-section a.btn-outline-primary:hover {
    background-color: #c9a227;
    color: #fff;
}

/* ====================
   TRANSPORTACIÓN
==================== */
section.py-5 {
    padding: 60px 20px;
}

section.py-5 h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.3);
}

/* Cards de transporte */
section.py-5 .card {
    border-radius: 20px;
    background: #fffdf5;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.py-5 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.3);
}

/* Título dentro de la card */
section.py-5 .card-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #c9a227;
    margin-bottom: 10px;
}

/* Botones */
section.py-5 .btn-outline-primary {
    border-color: #c9a227;
    color: #c9a227;
    font-weight: 500;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

section.py-5 .btn-outline-primary:hover {
    background-color: #c9a227;
    color: #fff;
}

section.py-5 .btn-success {
    background-color: #d4af37;
    border-color: #d4af37;
}

section.py-5 .btn-success:hover {
    background-color: #b9972f;
    border-color: #a88428;
}

section.py-5 .btn-primary {
    background-color: #c9a227;
    border-color: #c9a227;
}

section.py-5 .btn-primary:hover {
    background-color: #a88428;
    border-color: #967822;
}

/* Contacto y detalle */
section.py-5 .card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}



/* ====================
   CLIMA
==================== */
.clima-section {
    background: linear-gradient(135deg, #fffdf5, #fff7e0);
    padding: 60px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.15);
}

.clima-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.3);
    margin-bottom: 30px;
}

/* Widget de clima */
.clima-section .weatherwidget-io {
    width: 100% !important;
    max-width: 400px;
    margin: 0 auto;
    display: inline-block;
    border-radius: 20px !important;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.2);
    overflow: hidden;
}




/* ====================
   QUÉ HACER EN LA CIUDAD
==================== */
section.py-5 .card {
    border-radius: 20px;
    background: #fffdf5;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.py-5 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.3);
}

section.py-5 .card-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #c9a227;
    margin-bottom: 10px;
}

section.py-5 .card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 10px;
}

section.py-5 h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.3);
}

/* Botones dentro de la sección */
section.py-5 .btn-outline-primary,
section.py-5 .btn-outline-success {
    font-weight: 500;
    margin-top: 5px;
    transition: all 0.3s ease;
}

section.py-5 .btn-outline-primary {
    border-color: #c9a227;
    color: #c9a227;
}

section.py-5 .btn-outline-primary:hover {
    background-color: #c9a227;
    color: #fff;
}

section.py-5 .btn-outline-success {
    border-color: #d4af37;
    color: #d4af37;
}

section.py-5 .btn-outline-success:hover {
    background-color: #d4af37;
    color: #fff;
}


/* ====================
   SOLICITUD DE CANCIONES
==================== */
.canciones-section {
    background: linear-gradient(135deg, #fffdf5 0%, #fff7e0 100%);
    padding: 60px 20px;
}

.canciones-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #c9a227;
    text-shadow: 1px 1px 6px rgba(201, 162, 39, 0.3);
    margin-bottom: 30px;
}

/* Botón principal */
.canciones-section .btn-primary {
    background-color: #c9a227;
    border-color: #c9a227;
    font-weight: 500;
    transition: all 0.3s ease;
}
.canciones-section .btn-primary:hover,
.canciones-section .btn-primary:focus {
    background-color: #a88428;
    border-color: #a88428;
    color: #fff;
    transform: scale(1.05);
}

/* Modal */
.modal-content {
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fffdf5 0%, #fff7e0 100%);
    max-height: 80vh;
    overflow-y: auto;
}

.modal-title {
    font-family: 'Dancing Script', cursive;
    color: #c9a227;
    font-size: 1.8rem;
}

/* Lista de canciones */
.list-group-item {
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff7e0;
    box-shadow: 0 3px 10px rgba(201, 162, 39, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-group-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3);
}

.list-group-item strong {
    color: #c9a227;
}

.list-group-item span.text-muted {
    font-size: 0.9rem;
}

/* Botón "Ver todas las canciones" */
.btn-outline-primary {
    color: #c9a227;
    border-color: #c9a227;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #c9a227;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 576px) {
    .canciones-section h2 {
        font-size: 2rem;
    }
    .list-group-item {
        font-size: 0.95rem;
    }
    .modal-dialog {
        max-width: 95%;
    }
}

.carousel-item .card {
    background: #fff7e0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(201,162,39,0.2);
    transition: transform 0.5s ease;
}

.carousel-item.active .card {
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0.3);
}

@media (max-width: 576px) {
    .canciones-section h2 {
        font-size: 2rem;
    }
    .carousel-item .card {
        width: 95%;
    }
}
