

.row{
  padding: 0;
  margin: 0;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Reset y configuraciones generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-color: #C8B9AB; */
    color: #333;
    line-height: 1.6;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
 
}

/* Títulos */
h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
p{

  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.imglogo {
  width: 150px;
  height: 70px;
}
/* Header Fijo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar dentro del header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1F2325;

}

/* Logo y enlaces */
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

/* Ocultar el menú por defecto en pantallas pequeñas */
.nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    transition: transform 0.3s ease;
    margin-top: 1%;
}

.menu-toggle {
    display: none; /* Ocultamos el botón por defecto */
    font-size: 30px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    position: fixed;
    top: 0.5%; /* Ajusta según el espacio superior de la página */
    right: 20px; /* Coloca el botón a la derecha */
    z-index: 1001;
}




.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* esto centra horizontalmente */
  align-items: center;     /* opcional, por si quieres alinear verticalmente */
  gap: 30px;               /* separa los botones si deseas más espacio */
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 22px;
  padding: 10px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}



.icono {
  color: white;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icono2 {
  color: white;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.icono:hover {
  color: #00e676; /* puedes personalizar el color del hover */
  transform: scale(1.2);
}

.icono2:hover {
  color: #e60082; /* puedes personalizar el color del hover */
  transform: scale(1.2);
}



.banner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.banner-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}

.banner-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 25px;
  background-color: #ffffffcc;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #D4EDF5;
  color: #000;
  
}

 

/* Estilo para las demás secciones */
section {
    padding: 80px ;  /* Espacio extra para separar las secciones */
    text-align: center;
    background-color: #fff;
    /* margin-bottom: 50px;  */
}

/* Estilo para los Títulos */
h2 {
    font-size: 32px;
    margin-bottom: 30px;
}



/*Nosotros */
.about-us{
  background-color: #ECD9C6;
  
}
#nosotros  h1 {
  /* font-size: 3.5rem; */
  /* font-weight: bold; */
}

#nosotros  p {
  font-size: 1.15rem;
  text-align: justify;
}
.img-fluid {
  width: 100%;
  /* height: 600px; */
}
.img-fluid2 {
  width: 100%;
  height: 600px;
  object-fit: cover; /* para asegurarte que la imagen no se deforme */
  border-radius: 10px; /* por si quieres esquinas más suaves */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    /* margin-top: 50px;  */
}

.footer .footer-content p {
    font-size: 14px;
    margin-top: 10px;
}

.titulohist{
  text-align: left;
}





  /*CONTACTO*/

  #contact {
    background-color: #D4EDF5;

    background: linear-gradient(#9cb2bd9a, #9cb2bd9a), url(../img/home-garden-message-lightbox.jpg);
  
    background-size: cover;
  
      background-attachment: fixed;
  
    color: #111111;
  
    padding: 100px 0;
    margin-bottom: 0;
  
  }

  #contact .btn-danger {

    color: #fff;

    background-color: #313e49;

    border-color: #313e49;

    padding: 10px 35px;

    border-radius: 4em;

    text-transform: uppercase;

}

#contact .btn-danger:focus,

#contact .btn-danger:hover{

    background-color: #232323;

    border-color: #232323;

    /* padding: 10px 65px; */

}

.form-control {

  height: unset;

  border-radius: 2em;

  margin: 0 0 15px 0;

  color: #fff;

border: 1px solid #313e49;

background: #313e49;

padding: 10px 20px;

}

.form-control:focus {

  border-color: transparent;

  outline: 0;

  -webkit-box-shadow: inset 0 0 0 #fff0, 0 0 8px #0006;

  box-shadow: inset 0 0 0 #fff0, 0 0 8px #0006;

}

.form-control::-webkit-input-placeholder{color:#fff;}


.info-contacto {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.titulo-contacto {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
}

.item-contacto {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 28px;
}
.item-contacto span {
  display: block;
  text-align: left;
}

.icono-contacto {
  font-size: 20px;
  margin-right: 10px;
  color: #000;
}

.hr_2 {
  border-top: 5px solid #fff;
  margin: 30px auto;
  width: 30%;
}

.item-contacto a{
   list-style: none;
  text-decoration: none;
  color: #000;
  padding: 0;
}

.item-contacto i{
  font-size: 2rem;
}

.vmv-section {
  color: white;
  padding: 60px ;
  /* background: linear-gradient(to bottom, #D4EDF5, #f1f1f1); */
  font-family: 'Poppins', sans-serif;
  color: #2f2f2f;
}

.vmv-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.vmv-box {
  flex: 1 1 28%;
  min-width: 200px;
  background: white;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.vmv-icon {
  font-size: 34px;
  margin-bottom: 12px;
  color: #a88e60; /* Tono dorado elegante */
}

.vmv-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.vmv-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.vmv-values {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.vmv-values li {
  font-size: 15px;
  margin: 6px 0;
  color: #555;
}

/*footer*/


/* Estilo general del footer */
.footer-decor {
  background-color: #1F2325;
  padding: 30px 0;
}

.footer-logo img {
  max-width: 100%;
}

.footer-description p {
  font-size: 14px;
  color: #6c757d;
}

.footer-description a{
  list-style: none;
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  padding: 0;
}

.footer-links ul {
  list-style: none;
  font-size: 1.2rem;
  color: white;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links .footer-link {
  color: white;
  text-decoration: none;
}

.footer-links .footer-link:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 1.2rem;
  color: white;
}

.btn-contact {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #C8B9AB;
  color: rgb(0, 0, 0);
  text-decoration: none;
  border-radius: 5px;
}

.btn-contact:hover {
  background-color: #8a8078;
}

.footer-social {
  display: flex;
  /* justify-content: center; */
  margin-top: 20px;
 
}

.footermini{
  background-color: #1F2325;
  padding: 0;
  margin: 0;
}

.social-icon {
  width: 60px;
  height: 60px;
  margin: 0 10px;
   border-radius: 50%;
    border: 1px solid #ffffff;
  /* background-color: #ccc;  */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 35px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* .social-icon.facebook {
  background-color: #3b5998;
}

.social-icon.instagram {
  background-color: #e4405f;
}

.social-icon.twitter {
  background-color: #0BBF41;
} */

.social-icon4:hover {
  /* opacity: 0.8; */
  background-color: #3b5998;
}

.social-icon2:hover {
 background-color: #e4405f;
}

.social-icon3:hover {
  background-color: #0BBF41;
}



.footer-description p{
  font-size: 1.2rem;
  color: white;
}



/* Media Querys */

@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background-color: white;
      width: 100%;
      /* border-radius: 8px; */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      z-index: 1000;
  }

  .nav-links.active {
      display: flex; /* Mostramos el menú cuando está activo */
  }

  .nav-links.open {
      transform: translateY(100%); /* Cuando se abre, se mueve hacia abajo */
  }

  .menu-toggle {
      display: block; /* Mostramos el botón solo en dispositivos pequeños */
  }

  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
  }

  .logo a {
      font-size: 24px;
      font-weight: bold;
      color: #333;
      text-decoration: none;
  }
  .search input, button {
      display: none;
  }
  .nav-links li a{
    color: #000;
  }
  .carousel-controls{
    display: none;
  }
}







/*TARJETAS*/
/* Fondos */
.fondo-azul {
  background-color: #d4edf5;
}

.fondo-beige {
  background-color: #ecd9c6;
}

.fondo-gris {
  background-color: #f5f3f4;
}

/* Contenido de texto */
.categoria {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.titulo {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #000;
}

/* Línea visible por defecto */
.titulo::after {
  content: "";
  position: absolute;
  left: 0;              /* ancla a la izquierda */
  bottom: -2px;
  height: 1px;
  width: 40%;
  background-color: black;
  transition: width 0.3s ease;
}

/* Cuando se hace hover sobre la tarjeta, el subrayado de .titulo desaparece */
.tarjeta:hover .titulo::after {
  width: 0;
}

/* Tarjeta general */
.tarjeta {
  /* border-radius: 8px; */
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding-bottom: 0;
}

/* Contenedor de texto a la izquierda */
.texto-izquierda {
  text-align: left;
}

/* Imagen alineada a la derecha */
.imagen-derecha {
  align-self: flex-end;
  max-width: 180px;
  transition: transform 0.4s ease;
}

.imagen-hover {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.tarjeta:hover .imagen-hover {
  transform: scale(1.4);
}



/*PREGUNTAS*/
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.faq-item {
  margin-bottom: 10px;
  border: none;
}

.faq-question {
  width: 100%;
  background-color: #D4EDF5;
  color: #000000;
  padding: 20px;
  text-align: left;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

   font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1rem;
  color: #333;
}

.faq-answer p {
  margin: 15px 0;
}

.titask{
  text-align: left;
  margin-bottom: 30px;
}

.imgpreguntas{
  padding-right: 30px;
}

.img-fluid3 {
  width: 100%;
  height: 500px;
  object-fit: cover; /* para asegurarte que la imagen no se deforme */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.maps {
    margin: 0 0 -7px;
}

/*RESPONSIVIDAD*/

@media screen and (min-width: 221px) and (max-width: 441px) {

section {
    padding: 20px;
}

.vmv-section {
    padding: 20px;
   
}

.footer-description{
  margin-top:30px;
}

.icono2{
  color: #000;
}

.icono{
  color: #000;
}

.item-contacto{
  font-size: 15px;
}

.banner-text h1 {
    font-size: 2rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
}

.slide {
    width: 100%;
    height: 90%;
}

}




@media screen and (min-width: 221px) and (max-width: 761px) {
    
.footer-description{
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  text-align: center;  /* Asegura que el texto se centre */
  margin-top: 40px;
}

.footer-contact{
    display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  text-align: center;  /* Asegura que el texto se centre */
}


    
}



/*OTROS ESTILOS*/


.link-tarjeta {
  text-decoration: none; /* Quita subrayado */
  color: inherit;        /* Usa el mismo color del contenido */
  display: block;        /* Para que el enlace ocupe todo el div */
}

.link-tarjeta:hover {
  color: inherit;        /* Evita cambio de color en hover */
}

.link-tarjeta,
.link-tarjeta * {
  text-decoration: none !important; /* Quita subrayado de todo lo interno */
}












