html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  scroll-behavior: smooth;
  background-color: #ffffff;
  font-family: "Raleway", sans-serif;
}

.navbar {
  transition: background 0.3s;
}

.navbar .nav-link {
  font-weight: 700; /* Puedes usar 700 para más grosor */
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.seccion {
  padding: 100px 0;
}

h1, h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* IMG */
.card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
.card img {
  height: 220px;
  object-fit: cover;
}

.cardss {
  margin: 0 20px;
}

.card {
  color: #000000;
  text-align: center;
  background-color: #e6c484;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* button */
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.parallax-section {
  background-image: url('../img_fondo/carrusel3.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capts {
  color: white;
  text-align: center;
}

.container h2{
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 20px;
}

.text a {
  color: #000000;
  text-decoration: none;
}


/* Botón flotante de WhatsApp (círculo perfecto) */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 35px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* CONTACTO */
.contacto {
  padding: 2rem;
  background-color: #f9f9f9;
}

.contacto h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Raleway', sans-serif;
}

.contacto-contenido {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.formulario {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario input,
.formulario textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.formulario input:focus,
.formulario textarea:focus {
  outline: none;
  border-color: #e6c484;
}

.formulario button {
  background-color: #e6c484;
  color: rgb(0, 0, 0);
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.formulario button:hover {
  background-color: #e6c484;
}

.info-contacto {
  flex: 1 1 250px;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #e6c484;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.mapa {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.redes-sociales {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

.redes-sociales a {
  width: 50px;
  aspect-ratio: 1 / 1; /* círculo perfecto */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.8rem;
  color: #444;
  background-color: #eaeaea;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.redes-sociales a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Colores específicos en hover */
.redes-sociales a:nth-child(1):hover {
  background-color: #3b5998; /* Facebook */
}

.redes-sociales a:nth-child(2):hover {
  background-color: #E4405F; /* Instagram */
}

.redes-sociales a:nth-child(3):hover {
  background-color: #25D366; /* WhatsApp */
}

/*inicio catalogo */
.fondo_cata {
  background-color: #e6c484;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.catalogo-img {
  max-width: 70%;
  height: auto;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.catalogo-img:hover {
  transform: scale(1.03);
}

.btn-descarga {
  background: linear-gradient(45deg, #000000, #3c3c3c, #000000);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-descarga:hover {
  color: #fff;
  background: linear-gradient(45deg, #262626, #515151, #262626);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Nosotros */
#nosotros h2 {
  font-size: 2.5rem;
}

#nosotros img {
  max-height: 500px;
  object-fit: cover;
}

.fw-bold {
  font-size: 2.5rem;
  color: #000000;
}


/* Footer */
.footer-custom {
  background-color: #1a1a1a;
  color: #f1f1f1;
  padding: 40px 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
  width: 150px;
  max-width: 100%;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
}

.footer-contact {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start; /* ⬅️ Alinea el ícono al tope del texto */
  gap: 10px;
  margin-bottom: 12px;
  color: #cccccc;
  line-height: 1.4;
}

.footer-contact i {
  color: #e6c484;
  font-size: 1rem;
  margin-top: 4px; /* ⬅️ Ajuste fino para que no quede muy arriba */
  flex-shrink: 0;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e6c484;
}

.footer-social a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #e6c484;
}

.footer-bottom {
  font-size: 0.9rem;
  margin-top: 20px;
  color: #aaaaaa;
}

/* galeria */
.ftos {
  background-color: #e6c484;
}
.galeria-item img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.galeria-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Gracias */
.mensaje_gracias {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff8e5;
  border-radius: 12px;
  max-width: 600px;
  margin: 100px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Raleway', sans-serif;
}

.mensaje_gracias h2 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mensaje_gracias p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
}

.btn-volver1 {
  display: inline-block;
  background-color: #e6c484;
  color: #000000;
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-volver1:hover {
  background-color: #d4b26e;
  transform: scale(1.05);
}

/*responsive */
@media (max-width: 768px) {
  .parallax-section {
    background-image: url('../img_fondo/portadamovil.png');
    background-attachment: scroll;
    background-size: cover;
    background-position: center top; /* Enfoca la parte superior de la imagen */
    height: 35vh;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

}
