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

.primario {
  color: #0098DA;
}

.fondoUno {
  background: #0098DA;
  background: linear-gradient(90deg, rgb(0, 152, 218) 0%, rgb(0, 109, 143) 50%);
}

.iconos {
  color: #0098DA;
  font-size: 4rem;
}

/* Botón WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1000;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.footer-icon {
  width: 60px;
  height: 60px;
  background-color: #25D366; /* verde whatsapp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

/* Imagen de fondo con pseudo-elemento para compatibilidad móvil */
.hero::before {
  content: "";
  position: fixed; /* fija la imagen como parallax */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/andamios2.jpeg") center/cover no-repeat;
  z-index: -2;
}

/* Overlay oscuro */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Texto y botón */
.hero h1, .hero p, .hero a {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Ajuste responsive para móviles (opcional) */
@media (max-width: 991px) {
  .hero::before {
    position: absolute; /* evita problemas de zoom en iPhone */
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
.fondoB {
  background-color: white;
}

.buttonUno {
  background-color: #0098DA;
  color: white;
}
.buttonUno:hover {
  background-color: #006996;
  color: white;
}

/* Servicios */
.service-card img {
  height: 360px;
  object-fit: cover;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
}

footer a {
  color: #0098DA;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Hover cambio de imagen */
.img-hover-wrap {
  position: relative;
  overflow: hidden;
}

.img-hover-wrap img {
  display: block;
  width: 100%;
  transition: opacity 0.4s ease-in-out;
}

.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.img-hover-wrap:hover .img-main {
  opacity: 0;
}

.img-hover-wrap:hover .img-hover {
  opacity: 1;
}

header a {
  color: white !important;
  transition: 0.3s;
}
header a:hover {
  color: #0098DA !important;
}

.link {
  color: white !important;
  transition: 0.3s;
  text-decoration: none !important;
  font-weight: 900;
}
.link:hover {
  color: rgb(0, 152, 218) !important;
}

.mx-auto {
  margin-right: 0px !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%280, 152, 218%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border-color: rgba(0, 153, 218, 0) !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}

.logoA {
  height: 50px;
}
@media screen and (max-width: 500px) {
  .logoA {
    height: 40px;
  }
}

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