* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0b3975; /* Azul estilo Cenando Canciones */
  color: #f5f5f5;
  line-height: 1.6;
}

header {
  background: #0b3975;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #b48a2c;
}

header h1 {
  color: #b48a2c;
  font-size: 2rem;
  letter-spacing: 2px;
}

nav {
  margin-top: 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #b48a2c;
}

.hero {
  background: url('../images/Cenando canciones 1.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  font-size: 2rem;
  border: 1px solid #b48a2c;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* ===== SWIPE HORIZONTAL EN MÓVIL ===== */
@media (max-width: 768px) {
  .gallery {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
  }

  .gallery img,
  .gallery a {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  .gallery::-webkit-scrollbar {
    display: none;
  }
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 20px;
  background: #0b3975;
  margin-top: 40px;
  border-top: 2px solid #b48a2c;
}

.social a {
  margin: 0 10px;
  color: #b48a2c;
  font-size: 1.5rem;
}
/* ===== AJUSTE TAMAÑO DEL LOGO ===== */
.logo {
  max-width: 260px;
  display: block;
  margin: 0 auto 10px auto;
}
/* ===== MENÚ MÓVIL ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #b48a2c;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    margin-top: 15px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* ===== MENÚ MÓVIL ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #b48a2c;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    margin-top: 15px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== LIGHTBOX GALERÍA ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
  border: 3px solid #b48a2c;
  border-radius: 10px;
}

.lightbox:target {
  display: block;
}

/* ===== FORMULARIO ===== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 12px;
  background: #b48a2c;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #d4a93a;
}
/* ===== SECCIÓN TESTIMONIOS ELEGANTE ===== */

.testimonios-section {
  position: relative;
  padding-top: 80px;
}

.testimonios-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #f5f5f5;
  letter-spacing: 1px;
}

.testimonios {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonio {
  background: linear-gradient(145deg, #112d57, #0a2342);
  padding: 35px 30px 30px;
  border-radius: 12px;
  max-width: 320px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.testimonio:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.7);
}

.testimonio.destacado {
  transform: scale(1.05);
  border: 1px solid #b48a2c;
  box-shadow: 0 20px 45px rgba(180,138,44,0.4);
}

.comillas {
  font-size: 4rem;
  color: #b48a2c;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.25;
  font-family: serif;
}

.testimonio p {
  margin-top: 20px;
  font-style: italic;
  line-height: 1.7;
}

.autor {
  margin-top: 20px;
  font-weight: bold;
  color: #b48a2c;
  text-align: right;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* ===== LISTA DE CANCIONES ===== */
.song-list {
  max-width: 800px;
  margin: 30px auto;
}

.song-list ul {
  list-style: none;
  padding: 0;
}

.song-list li {
  background: linear-gradient(145deg, #112d57, #0a2342);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #b48a2c;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.song-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(180,138,44,0.3);
  background: linear-gradient(145deg, #143a6b, #0c2948);
}

.new-badge {
  background: #b48a2c;
  color: #0b3975;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  margin-left: 10px;
  letter-spacing: 1px;
}

.back-button {
  display: inline-block;
  padding: 12px 30px;
  background: #b48a2c;
  color: #0b3975;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #d4a93a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(180,138,44,0.4);
}
