@charset "UTF-8";
/* @mixin medidas($width, $height){
    width: $width;
    height: $height;

} */
/* @mixin grid($colums, $rows, $gap){
    display: grid;
    grid-template-columns: $colums;
    grid-template-rows: $rows;
    gap: $gap;
}
 */
/* @mixin flex{
    display: flex;
    align-items: center;
} */
/* Flexbox centrado */
/* Cuadro con sombra suave */
/* Transición suave (recibe la propiedad a animar) */
/* Tamaños responsivos rápidos */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "", sans-serif;
}

main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.footer {
  padding: 20px;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

/* === NAVBAR === */
.custom-nav {
  background-color: #1a394e;
  padding: 0.5rem 0;
}
.custom-nav .logo {
  width: 110px;
  height: auto;
  object-fit: contain;
}
.custom-nav .nav-link {
  color: #ffffff;
  transition: color 0.2s ease;
}
.custom-nav .nav-link:hover {
  color: #961721;
}
.custom-nav .iconos_redes {
  color: #ffffff;
  font-size: 18px;
  transition: color 0.2s ease;
}
.custom-nav .iconos_redes:hover {
  color: #961721;
}

/* Íconos a la derecha en ≥lg, debajo del menú en <lg (ya dentro del collapse) */
.navbar-icons {
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .navbar-icons {
    margin-top: 0;
  }
}
/* === BOTÓN HAMBURGUESA === */
.navbar-toggler.custom-toggler {
  border: none;
  background: transparent;
  width: 34px;
  height: 28px;
  position: relative;
}
.navbar-toggler.custom-toggler .toggler-icon,
.navbar-toggler.custom-toggler .toggler-icon::before,
.navbar-toggler.custom-toggler .toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.navbar-toggler.custom-toggler .toggler-icon {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggler.custom-toggler .toggler-icon::before {
  top: -8px;
}
.navbar-toggler.custom-toggler .toggler-icon::after {
  top: 8px;
}
.navbar-toggler.custom-toggler:not(.collapsed) .toggler-icon {
  background: transparent;
}
.navbar-toggler.custom-toggler:not(.collapsed) .toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggler.custom-toggler:not(.collapsed) .toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.servicios_home {
  background-color: #961721;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-around;
  gap: 5px;
  padding: 5px;
  margin: 0;
  padding-top: 20px;
}
.servicios_home .servicios_home_contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 5px;
}
.servicios_home .servicios_home_contenido i {
  margin-top: 10px;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 10px;
}
.servicios_home .servicios_home_contenido b, .servicios_home .servicios_home_contenido p {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}
.servicios_home .servicios_home_contenido b {
  font-weight: bold;
  font-size: 15px;
}
.servicios_home .servicios_home_contenido p {
  font-size: 11px;
}

/* ==========================================================================
   HERO Y FEATURES
   ========================================================================== */
.hero {
  background: url("../imagenes/home.JPG") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 70%;
  max-width: 1000px;
}
.hero .features .feature {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #c4c4c4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  aspect-ratio: 1/1;
  min-width: 200px;
}
.hero .features .feature i {
  margin-top: 20px;
  font-size: 50px;
  color: #000000;
  margin-bottom: 10px;
}
.hero .features .feature p {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  text-align: center;
}

/* ==========================================================================
   WHATSAPP
   ========================================================================== */
.icono-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* subilo bien alto */
  box-shadow: 0 3px 10px #000000;
  transition: transform 0.3s ease;
}
.icono-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* ==========================================================================
   NOSOTROS
   ========================================================================== */
.nosotros {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background-color: #961721;
  max-width: 1024px;
  justify-content: space-around;
  padding: 4rem;
  gap: 3rem;
  border-radius: 1rem;
  margin: 3rem auto;
}
@media (max-width: 768px) {
  .nosotros {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nosotros_img {
    margin: 0 auto;
  }
}
.nosotros_img {
  width: 100%;
  object-fit: cover;
  max-width: 20rem;
  border-style: none;
}
.nosotros_titulo {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 2rem;
}
.nosotros_subtitulo {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
}
.nosotros_texto {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1rem;
  margin-top: 1rem !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==== MAPA EN FOOTER ==== */
.map-container {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px #000000;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-container .footer a {
  color: inherit; /* Usa el mismo color del texto */
  text-decoration: none; /* Quita el subrayado */
}
.map-container .footer a:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .map-container {
    height: 200px; /* tamaño fijo escritorio */
  }
}

.no-link {
  color: inherit;
  text-decoration: none; /* sin subrayado */
  cursor: pointer; /* cambia a manito */
  transition: color 0.3s ease; /* transición suave */
}
.no-link:hover {
  color: #961721;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .hero .features {
    grid-template-columns: 1fr;
  }
  .hero .features .feature {
    aspect-ratio: auto;
  }
}
/* === RESPONSIVE === */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #1a394e;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
  }
  .nav-link {
    text-align: center;
  }
  .logo {
    width: 90px;
  }
}

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