:root {
  --gray: #C8CCCD;
  --black-ligth: #434343;
  --black: #000000;
  --white: #ffffff;
  --color-gray-ligth: #D2D8D8;
  --blue: #004098;
  --blue-ligth: #ADD3E8;
  --yellow-green: #D5E02A;
  --piel: #fff862;
  --orange: #FF8A00;


}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: mont-regular;
  src: url("font/Montserrat-Regular.otf");
}
@font-face {
  font-family: mont-black;
  src: url("font/Montserrat-Black.otf");
}
@font-face {
  font-family: mont-light;
  src: url("font/Montserrat-Light.otf");
}
@font-face {
  font-family: refsan;
  src: url("font/REFSAN.TTF");
}
@font-face {
  font-family: mont-extralight;
  src: url("font/Montserrat-ExtraLight.otf");
}

.fuente-mont-regular {
  font-family: mont-regular;
}

.fuente-mont-black {
  font-family: mont-black;
}

.fuente-mont-light {
  font-family: mont-light;
}
.fuente-mont-extralight {
  font-family: mont-extralight;
}

.fuente-refsan {
  font-family: refsan;
}

.quicksand-fino {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.quicksand-medio {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.quicksand-grueso {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.fondo-dorado {
  background-color: #cc9933;
}
.texto-dorado {
  color: #cc9933;
}

.fondo-naranja-claro {
  background-color: #cc9966;
}
.texto-naraja-claro {
  color: #cc9966;
}

.fondo-rosado-claro {
  background-color: #ffffcc;
}
.texto-rosado-claro {
  color: #ffffcc;
}

.fondo-azul-oscuro {
  background-color: #003366;
}
.texto-azul-oscuro {
  color: #003366;
}

.fondo-azul-cielo {
  background-color: #3399cc;
}
.texto-azul-cielo {
  color: #3399cc;
}

.fondo-azul-medio {
  background-color: #3366cc;
}
.texto-azul-medio {
  color: #3366cc;
}

.fondo-naranja {
  background-color: #ff6600;
}
.texto-naranja {
  color: #ff6600;
}

.fondo-amarillo-verdoso {
  background-color: #cccc99;
}
.texto-amarillo-verdoso {
  color: #cccc99;
}

/* EFECTO DE SUBRAYADO */
.underline2 {
  display: inline-block;
  position: relative;
}

.underline2:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  top: 30px;
  bottom: 0px;
  left: 0;
  background-color: var(--dorado);
  transform-origin: bottom right;
  transition: transform 0.6s ease-out;
}

.underline2:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}




.gradient-bg {
    height: 100vh;
    /* Degradado de arriba a abajo */
    background: linear-gradient(
      to bottom,
      white 0%,
      #ADD3E8 50%,
      white 100%
    );
  }


 .fondo-imagen {
  background-image: url('/img/banner3.webp'); /* Reemplaza con tu ruta */
  background-size: contain;       /* Muestra la imagen completa sin recortar */
  background-repeat: no-repeat;   /* No repite la imagen */
  background-position: center;    /* Centra horizontal y verticalmente */
  width: 100vw;                   /* Ocupa el ancho completo de la ventana */
  height: 100vh;                  /* Opcional: ocupa el alto completo también */
}


.menu-hover-effect {
    position: relative;
    display: inline-block;
    font-size: 1.125rem; /* Tamaño base (18px aprox.) */
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease, font-size 0.3s ease;
  }

  .menu-hover-effect::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }

  .menu-hover-effect:hover {
    transform: translateY(-4px); /* Eleva ligeramente el texto */
    font-size: 1.25rem; /* Aumenta tamaño (20px aprox.) */
    color: #FF8A00; /* Amarillo dorado */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  .menu-hover-effect:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }


  .social-icon {
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    cursor: pointer;
  }

  /* Efectos individuales */
  .social-icon.instagram:hover {
    transform: scale(1.2) rotate(-5deg);
    box-shadow: 0 0 10px #e1306c;
    filter: brightness(1.3);
  }

  .social-icon.whatsapp:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 0 10px #25d366;
    filter: brightness(1.3);
  }

  .social-icon.linkedin:hover {
    transform: scale(1.2) rotate(-3deg);
    box-shadow: 0 0 10px #0077b5;
    filter: brightness(1.3);
  }

  .social-icon.email:hover {
    transform: scale(1.2) rotate(3deg);
    box-shadow: 0 0 10px #ffae42;
    filter: brightness(1.3);
  }

   .underline-animate {
    position: relative;
  }

  .underline-animate::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
  }

  .underline-animate:hover::after {
    width: 100%;
  }

  .social-icon-glow:hover {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
  }


.luxury-rotate-hover {
  transition: transform 0.6s ease-out;
  will-change: transform;
}

.luxury-rotate-hover:hover {
  animation: spin-and-settle 0.6s ease-out forwards;
}

@keyframes spin-and-settle {
  0% {
    transform: rotate(0deg) scale(1);
  }
  40% {
    transform: rotate(90deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

.boton-hover:hover {
  background-color: white;
  color: #1B263B; /* o el color que desees para el texto */
  border-color: #1B263B; /* o cualquier otro color */
  transform: translate(-50%, -50%) scale(1.1);
  transition: all 0.3s ease;
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
}
