@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2 {
  text-align: center;
  padding: 30px;
  text-decoration: underline;
  color: white;
}

img {
  max-width: 500px;
  max-height: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo {
  width: 200px;
  height: auto;
}

.img-grupo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.img-grupo img {
  max-width: 280px;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
}

.video {
  display: flex;
  justify-content: center;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  aspect-ratio: 16/9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-container p {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
}

.parrafo-video {
  text-align: center;
}

.form-label {
  color: white;
}

.form-label:hover {
  filter: brightness(0.5);
}

button {
  background-color: grey;
  color: white;
  padding: 10px 20px;
  transition: background-color 0.5s ease;
}

.button:hover {
  background-color: rgb(22, 92, 196);
}

.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Estilos del Header */
header {
  background-color: black;
  padding: 20px;
  font-size: 18px;
}

/* ✅ Estilos del Footer */
footer {
  color: white;
  background-color: rgba(19, 17, 16, 0.856);
  border: 10px solid black;
  text-align: center;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ✅ Redes sociales en el Footer */
footer .redes {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

footer .redes img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

footer .redes img:hover {
  filter: brightness(0.7);
  transform: scale(1.1);
}

/* ✅ Media Queries */
@media (max-width: 768px) {
  header {
    text-align: center;
    padding: 15px;
  }
  .nav-link {
    display: block;
    text-align: center;
    padding: 10px;
  }
}
/* ✅ Ajuste del Footer en móviles */
@media (max-width: 576px) {
  footer {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 15px 5% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .redes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  footer .redes img {
    width: 30px;
    height: 30px;
  }
  /* ✅ Centra el contenido del Footer */
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-content p, .footer-content a {
    text-align: center !important;
  }
}
/* Importar otros archivos SCSS */
/*  Media Queries */
/*  Ajustes para Tablets grandes */
@media (max-width: 1024px) {
  .img-grupo img {
    max-width: 220px;
  }
}
/*  Ajustes para Tablets y Móviles */
@media (max-width: 768px) {
  footer {
    font-size: 14px;
    padding: 10px;
  }
  .nav-link.active {
    font-size: 14px;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-link {
    padding: 10px;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 12px;
  }
  .logo {
    width: 120px;
  }
  .img-grupo img {
    max-width: 180px;
  }
  .video-container {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
/* Ajustes para Celulares pequeños */
@media (max-width: 576px) {
  body {
    width: 100% !important;
  }
  main {
    padding: 4% !important;
  }
  .container {
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    padding: 0 3% !important;
  }
  p {
    display: block !important;
    width: 95% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: 18px !important;
    text-align: justify !important;
    line-height: 1.8 !important;
    padding: 0 2% !important;
    white-space: normal !important;
    hyphens: auto !important;
  }
  .img-grupo {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .img-grupo img {
    max-width: 100% !important;
    display: block;
    height: auto;
    margin: 0 auto;
  }
  .logo {
    width: 120px !important;
  }
  .video-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: auto;
  }
  /* Ajuste del Mapa en móviles */
  .mapa-container {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mapa-container iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
  /* Alineación del footer */
  footer {
    text-align: center !important;
    padding: 20px !important;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .redes {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  footer .redes img {
    width: 30px !important;
    height: 30px !important;
  }
}
/*  Ajustes de imágenes en "Guitarras a Pedido" */
.contenedor-imagenes {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.guitarra-img {
  width: 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

/*  Ajuste del párrafo */
.lead {
  width: 80%;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  margin: 0 auto;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .contenedor-imagenes {
    flex-direction: column;
    align-items: center;
  }
  .guitarra-img {
    width: 80%;
  }
  .lead {
    width: 90%;
    text-align: justify;
  }
}
/* Estilos Generales */
body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

main {
  background-color: black;
  color: white;
  text-align: justify;
  padding: 4%; /* Reducido para mejorar el ancho del texto */
}

/* Contenedor */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3%;
}

/* Párrafos */
p {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-size: 18px;
  text-align: justify;
  line-height: 1.8;
  padding: 0 3%;
  word-spacing: normal;
  letter-spacing: normal;
  white-space: normal;
  hyphens: auto;
}

/* Imágenes */
.img-grupo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.img-grupo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Logo */
.logo {
  width: 150px;
  display: block;
  margin: 0 auto;
}

/* Video */
.video-container {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

/*  Media Queries */
/*  Ajustes para Tablets grandes */
@media (max-width: 1024px) {
  .img-grupo img {
    max-width: 220px;
  }
}
/*  Ajustes para Tablets y Móviles */
@media (max-width: 768px) {
  footer {
    font-size: 14px;
    padding: 10px;
  }
  .nav-link.active {
    font-size: 14px;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-link {
    padding: 10px;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 12px;
  }
  .logo {
    width: 120px;
  }
  .img-grupo img {
    max-width: 180px;
  }
  .video-container {
    max-width: 100%;
    aspect-ratio: 16/9;
  }
}
/* Ajustes para Celulares pequeños */
@media (max-width: 576px) {
  body {
    width: 100% !important;
  }
  main {
    padding: 4% !important;
  }
  .container {
    width: 100% !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    padding: 0 3% !important;
  }
  p {
    display: block !important;
    width: 95% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: 18px !important;
    text-align: justify !important;
    line-height: 1.8 !important;
    padding: 0 2% !important;
    white-space: normal !important;
    hyphens: auto !important;
  }
  .img-grupo {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .img-grupo img {
    max-width: 100% !important;
    display: block;
    height: auto;
    margin: 0 auto;
  }
  .logo {
    width: 120px !important;
  }
  .video-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: auto;
  }
  /* Ajuste del Mapa en móviles */
  .mapa-container {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mapa-container iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
  /* Alineación del footer */
  footer {
    text-align: center !important;
    padding: 20px !important;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .redes {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  footer .redes img {
    width: 30px !important;
    height: 30px !important;
  }
}
/*  Ajustes de imágenes en "Guitarras a Pedido" */
.contenedor-imagenes {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.guitarra-img {
  width: 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

/*  Ajuste del párrafo */
.lead {
  width: 80%;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  margin: 0 auto;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
  .contenedor-imagenes {
    flex-direction: column;
    align-items: center;
  }
  .guitarra-img {
    width: 80%;
  }
  .lead {
    width: 90%;
    text-align: justify;
  }
}

/*# sourceMappingURL=styles.css.map */
