@charset "UTF-8";
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  border: 1px solid #000000;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

header h1 {
  color: rgb(233, 146, 32);
  background-color: rgb(65, 28, 10);
  background-clip: content-box;
  font-size: 83px;
  font-style: bold;
  text-align: center;
  font-variant: small-caps;
}

nav {
  background-color: rgb(65, 28, 10);
  padding: 10px 0;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: rgb(233, 146, 32);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 20px;
}
nav ul li a:hover {
  text-transform: uppercase;
  font-weight: bolder;
}

.barra {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bn {
  color: rgb(233, 146, 32);
  text-align: center;
  font-weight: bold;
}

body {
  background-image: url(../images/fondo.webp);
  background-size: cover;
  background-repeat: repeat;
  color: rgb(255, 255, 255);
  font-family: Arial, sans-serif;
}
body section h2 {
  color: rgb(233, 146, 32);
  margin: 20px;
}
body h2 {
  color: rgb(233, 146, 32);
}
body p {
  color: rgb(255, 255, 255);
}

p.parrafo {
  font-size: 20px;
  text-indent: 20px;
  margin: 10px;
  color: rgb(255, 255, 255);
}

.promo-bar {
  background-color: rgb(233, 146, 32);
  color: rgb(65, 28, 10);
  text-align: center;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.promo-bar p {
  margin: 0;
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}
.promo-bar .fade-in {
  opacity: 1;
  transform: translateY(0);
}
.promo-bar .fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.info {
  text-align: center;
}

img.Logo:hover {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.288);
}

img.Logo {
  text-align: left;
  float: left;
  width: 100px;
  height: 100px;
}

.titulo-centrado {
  text-align: center;
}

.descripcion {
  text-align: center;
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.info-grid .map-container, .info-grid .info-container {
  color: rgb(233, 146, 32);
  font-weight: bolder;
  padding: 1rem;
  border-radius: 8px;
}
.info-grid .map-container h2, .info-grid .info-container h2 {
  text-align: center;
}
.info-grid .map-container p, .info-grid .info-container p {
  color: rgb(255, 255, 255);
  margin-top: 200px;
  text-align: center;
}
.info-grid iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.info-grid .horarios {
  list-style: none;
  padding: 0;
}
.info-grid .horarios li {
  margin-bottom: 10px;
  text-align: center;
}
.info-grid .direccion {
  margin-top: 1rem;
  font-weight: bold;
}

.carrusel-seccion h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.carrusel-seccion .carousel-item img {
  width: 100%;
  height: 10%;
  object-fit: contain;
  background-color: #000;
}

h2 {
  color: rgb(233, 146, 32);
  text-align: center;
}

.grid-nosotros {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.item {
  max-width: 400px;
  text-align: center;
}
.item img {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 3px solid rgb(233, 146, 32);
}
.item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgb(65, 28, 10);
}
.item .texto {
  margin-top: 10px;
}
.item .texto h2 {
  font-size: 1.5rem;
  color: rgb(233, 146, 32);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: rgba(65, 28, 10, 0.9); /* marrón oscuro semi-transparente */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: rgb(233, 146, 32); /* texto naranja */
  font-family: Arial, sans-serif;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1.5rem;
  border: 2px solid rgb(233, 146, 32);
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  font-size: 16px;
  color: #000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgb(65, 28, 10);
  box-shadow: 0 0 5px rgba(233, 146, 32, 0.7);
}

.contact-form button {
  background-color: rgb(233, 146, 32);
  color: rgb(65, 28, 10);
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1023px) and (min-width: 768px) {
  .contact-form {
    padding: 1.5rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
    padding: 10px;
  }
  .contact-form button {
    font-size: 16px;
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 1rem;
    margin: 1rem;
    border-radius: 12px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 8px;
  }
  .contact-form button {
    font-size: 15px;
    padding: 8px 18px;
  }
}
@media (max-width: 425px) {
  header h1 {
    font-size: 50px;
  }
  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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