/* =======================================
   TIPOGRAFÍA Y PALETA
======================================= */

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
}

/* Marca Subsitio */
.brand-subsite {
    font-size: 18px;
    font-weight: 600;
    color: #C8A565; /* dorado */
}

/* Botón dorado */
.btn-gold {
    background: #C8A565;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}
.btn-gold:hover {
    background: #b18f4e;
    color: #fff;
}

/* Iconos dorados */
.icon-gold {
    font-size: 2.8rem;
    color: #C8A565;
}

/* Hero */
.hero-section {
    min-height: 85vh;
    position: relative;
}


/* Servicio Cards */
.service-card {
    border: none;
    border-radius: 12px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

/* CTA Final */
.cta-final {
    background: #111;
}

/* Footer */
footer img {
    filter: drop-shadow(0 0 5px rgba(200,165,101,0.4));
}


/* =======================
   Marca del Navbar
   (logo + texto en dos líneas)
=========================*/

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contenedor de los textos */
.brand-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Línea de arriba: marca principal */
.brand-mark {
    font-size: 16px;
    font-weight: 700;
    color: #a28550;
    margin: 0;
    padding: 0;
}

/* Línea de abajo: subsitio */
.brand-subsite {
    font-size: 14px;
    font-weight: 600;
    color: #C8A565; /* dorado Alma */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.socialmedia a {
    font-size: 2em;
    opacity: .5
}

.socialmedia a:hover {
    opacity: 1
}


/*precios*/

/* Tarjetas de precios */
.price-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.price-card h4 {
    color: #111;
}

.price-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    border: 1px solid #eee;
}

/* Botón dorado (ya definido, pero lo repito por claridad) */
.btn-gold {
    background: #C8A565;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
}
.btn-gold:hover {
    background: #b18f4e;
    color: #fff;
}

/**/
.coverage-list .coverage-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all .2s ease;
}

.coverage-list .coverage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    border-color: #c8a565;
}

.coverage-list a {
    color: #C8A565;
    font-weight: 600;
    text-decoration: none;
}

.coverage-list a:hover {
    text-decoration: underline;
}

/**/

.accordion-button {
    font-weight: 600;
    padding: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: #C8A565;
    color: #fff;
}

.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 10px;
}


/* === MEDIA QUERY PARA SMARTPHONE === */
@media (max-width: 576px) {

    .navbar-brand img{
        width: 50px;     /* más pequeño para móvil */
        height: auto;
    }

    .brand-mark {
        font-size: 12px; /* reducido ligeramente */
        line-height: 1.1;
    }

    .brand-subsite {
        font-size: 12px;  /* subsitio más compacto */
        letter-spacing: 0.3px;
    }

    .navbar-brand {
        gap: 6px; /* reduce separación entre logo y texto */
    }

    .brand-text-group {
        margin-top: 2px; /* alinea verticalmente */
    }
}

/* ================================
   BOTONES FLOTANTES CONTACTO
================================ */

.floating-contact{
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Botón base */
.btn-float{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    animation: floatPulse 2.5s infinite;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover */
.btn-float:hover{
    transform: scale(1.12);
    box-shadow: 0 12px 25px rgba(0,0,0,.35);
}

/* WhatsApp */
.btn-float.whatsapp{
    background: #C8A565;
    animation-delay: 0s;
}

/* Teléfono */
.btn-float.telefono{
    background: #111;
    animation-delay: 1.2s;
}

/* Animación */
@keyframes floatPulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.08);
    }
    100%{
        transform: scale(1);
    }
}

/* Responsive (más pequeño en móvil) */
@media(max-width:768px){
    .btn-float{
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

p a {
    color: #c8a565
}


/* BOTÓN FLOTANTE */
#spotify-float{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #1DB954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    animation: pulse 2s infinite;
}

#spotify-float img{
    width: 28px;
}

/* POPUP */
#spotify-popup{
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 320px;
    max-width: 90%;
    background: #121212;
    color: #fff;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

/* HEADER */
.player-header{
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #1DB954;
    border-radius: 12px 12px 0 0;
}

.player-header button{
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* BODY */
.player-body{
    padding: 15px;
    text-align: center;
    z-index: 9999;
}

.controls{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.controls button{
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* ANIMACIÓN */
@keyframes pulse{
    0%{ transform: scale(1); }
    50%{ transform: scale(1.1); }
    100%{ transform: scale(1); }
}

.controls{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.controls button{
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease;
}

.controls button:hover{
    transform: scale(1.15);
    color: #1DB954;
}

/* Botón central tipo Spotify */
.play-main{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1DB954;
    color: #000;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-main:hover{
    background: #1ed760;
}


.nav-item{
    text-align: center!important
}



/*pestaña menu*/
nav li ul {
    display: none;
    position: absolute;
    width: 250px;
    background: #FFFFFF;
    z-index: 3000;
}

nav li:hover > ul {
    display: block;
    max-height: 250px;
    overflow-y: scroll;   
}


nav li ul li {
    position: relative;
    left: -0;
    margin: 8px 0;
    list-style: none;
}

.nav-item ul {
    padding-left: 0
}

nav li ul li ul {
    right: -150px;
    top: 0px;
}

@media screen and (max-width: 736px) {


/*pestaña menu*/
nav li ul {
    display: none;
    position: relative;
    width: 100%;
}

nav li:hover > ul {
    display: inline-block;  
    max-height: 250px;
    overflow-y: scroll;
    overflow-x: hidden; 
}

nav{
    max-height: 600px!important;
}

}

.py-5 .text-center h1{
    font-size: 2em
}

.py-5 .text-center h2{
    font-size: 1.5em;
    color: rgb(88,87,87)
}

.py-5 .text-center h3{
    font-size: 1em;
    color: #7e6639;
    text-transform: uppercase;
}

/*VIDEOS*/

/* ===============================
   CONTENEDOR GENERAL
================================ */

#videos{
  max-width: 1200px;
  margin: 80px auto 50px;
  overflow: hidden; /* limpia floats */
  padding: 0 25px;
}

/* ===============================
   LISTA DE VIDEOS (IZQUIERDA)
================================ */

#Lista{
  width: 40%;
  float: left;
  text-align: left;
}

.videos-musicales{
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #b89b5e;
  border-bottom: 2px solid #e5d3a3;
  padding-bottom: 12px;
}

.lista-de-videos{
  margin-bottom: 14px;
}

.lista-de-videos a{
  display: block;
  padding: 14px 20px;
  background: #f9f9f9;
  border-left: 4px solid #b89b5e;
  text-decoration: none;
  color: #333;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.lista-de-videos a:hover{
  background: #b89b5e;
  color: #fff;
  padding-left: 26px;
}

/* ===============================
   REPRODUCTOR (DERECHA)
================================ */

#Reproductor{
  width: 60%;
  float: left;
  text-align: center;
}

#Reproductor h1{
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #222;
  font-weight: 600;
}

#Reproductor .video{
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

#Reproductor .tel{
  display: inline-block;
  margin-top: 30px;
  padding: 14px 34px;
  background: #b89b5e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

#Reproductor .tel:hover{
  background: #9f854d;
}

/* ===============================
   TEXTO INFERIOR (EDITORIAL)
================================ */

#informacion{
  max-width: 1000px;
  margin: 70px auto 90px;
  padding: 0 25px;
}

#informacion blockquote{
  background: #fafafa;
  padding: 40px 50px;
  border-left: 5px solid #b89b5e;
  border-radius: 6px;
}

#informacion p{
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
}

#informacion strong{
  color: #222;
}

/* ===============================
   RESPONSIVE (MÓVIL)
================================ */

@media (max-width: 900px){

  #Lista,
  #Reproductor{
    float: none;
    width: 100%;
    text-align: center;
  }

  #Reproductor{
    margin-bottom: 40px;
  }

  #Lista{
    text-align: left;
  }

  #Reproductor h1{
    font-size: 1.8rem;
  }

  #informacion blockquote{
    padding: 30px 25px;
  }
}

@media (max-width: 900px){

  /* 🔑 activamos flex SOLO en móvil */
  #videos{
    display: flex;
    flex-direction: column;
  }

  #Reproductor{
    order: 1;   /* ⬅️ aparece primero */
    width: 100%;
    margin-bottom: 40px;
  }

  #Lista{
    order: 2;   /* ⬅️ aparece después */
    width: 100%;
  }
}

/*TEXTOS GENERAL*/



/* ===============================
   SECCIÓN PRESENTACIÓN
================================ */

#presentacion {
  padding: 80px 20px;
}


#presentacion .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ===============================
   TÍTULOS
================================ */

#presentacion h1 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: #222;
}

#presentacion h2 {
  font-size: 1.8rem;
  margin: 60px 0 20px;
  color: #222;
}

/* ===============================
   IMAGEN CENTRAL
================================ */

#presentacion img{
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  text-align: center;
}


/* ===============================
   TEXTO
================================ */

#presentacion p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  max-width: 760px;
  margin: 0 auto 25px;
}

#presentacion strong {
  color: #222;
}

/* ===============================
   BOTÓN TELÉFONO
================================ */

#presentacion .accion {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: #b89b5e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

#presentacion .accion:hover {
  background: #9f854d;
}

/* ===============================
   VIDEO
================================ */

#presentacion iframe {
  display: block;
  width: 100%;
  max-width: 520px;
  height: 300px;
  margin: 40px auto 0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}


#presentacion iframe{
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  #presentacion h1 {
    font-size: 1.9rem;
  }

  #presentacion h2 {
    font-size: 1.5rem;
  }

  #presentacion p {
    font-size: 1.05rem;
  }

  #presentacion iframe {
    height: 220px;
  }
}


/*CONTACTO NEW*/

/* ===============================
   SECCIÓN CONTACTO MARIACHI
================================ */

.contacto-mariachi{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 60px 20px;
}

/* ===============================
   IMAGEN
================================ */

.imagen-mariachi{
  flex: 0 0 280px;
  text-align: center;
}

.imagen-mariachi img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

/* ===============================
   TEXTO
================================ */

.info-mariachi{
  flex: 1;
  text-align: left;
}

.info-mariachi h2{
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.info-mariachi h2 i{
  color: #b89b5e;
  margin-right: 10px;
}

.info-mariachi .intro{
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

/* ===============================
   DATOS DE CONTACTO
================================ */

.datos-contacto{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
  margin-bottom: 35px;
}

.dato{
  background: #fafafa;
  padding: 16px 18px;
  border-left: 4px solid #b89b5e;
  border-radius: 6px;
  font-size: 1rem;
}

.dato i{
  color: #b89b5e;
  margin-right: 8px;
}

.dato span{
  font-weight: 600;
  color: #222;
}

.dato a{
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

/* ===============================
   BOTONES
================================ */

.cta-contacto{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-principal{
  background: #b89b5e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-principal:hover{
  background: #9f854d;
}

.btn-whatsapp{
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.btn-whatsapp i{
  margin-right: 6px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px){
  .contacto-mariachi{
    flex-direction: column;
    text-align: center;
  }

  .info-mariachi{
    text-align: center;
  }

  .cta-contacto{
    justify-content: center;
  }
}




/* ===============================
   SECCIÓN MÚSICA – PLAYLIST
================================ */

#musica{
  background:#0f0f0f;
  padding:70px 20px;
}

.titulo-musica{
  text-align:center;
  color:#fff;
  font-size:2.2rem;
  margin-bottom:40px;
}

.titulo-musica i{
  color:#b89b5e;
  margin-right:10px;
}

/* Playlist */
.playlist{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Track */
.track{
  display:flex;
  align-items:center;
  gap:20px;
  padding:16px 20px;
  background:#181818;
  border-radius:14px;
  text-decoration:none;
  color:#fff;
  transition:background .3s ease, transform .3s ease;
  position:relative;
}

.track:hover{
  background:#202020;
  transform:translateX(6px);
}

/* Imagen */
.track img{
  width:64px;
  height:64px;
  border-radius:10px;
  object-fit:cover;
}

/* Info */
.track-info{
  flex:1;
}

.track-info h3{
  margin:0;
  font-size:1.1rem;
  font-weight:600;
}

.track-info p{
  margin:4px 0 0;
  font-size:.9rem;
  color:#bbb;
}

/* Botón play */
.play{
  width:44px;
  height:44px;
  border-radius:50%;
  background:#b89b5e;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-size:1rem;
  opacity:0;
  transform:scale(.8);
  transition:all .3s ease;
}

.track:hover .play{
  opacity:1;
  transform:scale(1);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width:600px){
  .track{
    gap:14px;
    padding:14px;
  }

  .track img{
    width:54px;
    height:54px;
  }

  .titulo-musica{
    font-size:1.8rem;
  }
}


#musica {
    border-radius: 15px;
    margin-bottom: 3em;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
}
.titulo-musica {
    color: #fff!important
}
.track img{
  width: 64px;
  height: 64px;
  object-fit: cover;           /* recorta sin deformar */
  object-position: left center;/* ⬅️ muestra el extremo izquierdo */
  border-radius: 10px;
}

.track-info p {
    color: #aaaaaa!important
}


/*IMAGEN CONTACTO*/

.imagen-mariachi{
  width: 280px;              /* tamaño grande */
  aspect-ratio: 1 / 1;       /* ⬅️ cuadrado perfecto */
  overflow: hidden;          /* recorte limpio */
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.imagen-mariachi img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* recorta sin deformar */
  object-position: center;   /* puedes moverlo si quieres */
  display: block;
}
