@charset "UTF-8";
/* variables */
@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* variables de sass*/
/* colores */
/* tipografias */
/* variables */
/*nav*/
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6rem;
  padding: 0 1rem;
  width: 100%;
}
header nav .nav__logo {
  padding-left: 9rem;
}
header nav .nav__logo a {
  font-weight: 600;
  font-family: "Epilogue", sans-serif;
  font-size: 1.3rem;
  color: #1d05cb;
}
header nav .nav__links {
  justify-content: end;
  padding: 0px 4rem;
}
header nav .nav__links .nav-link {
  color: black;
  font-family: "Epilogue", sans-serif;
  font-weight: 200;
  margin: 0px 0.5rem;
  font-size: 1rem;
}
header nav .nav__links .nav-link:hover {
  color: #fe7700;
}
header nav .navbar-brand {
  color: black;
}
header nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
header nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.mi-dropdown {
  background-color: #7464ec;
  color: rgb(37, 16, 16);
  border-radius: 0.5rem;
  width: 280px;
}
.mi-dropdown a.dropdown-item {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  color: white;
  text-wrap: balance;
  font-size: 1rem;
}
.mi-dropdown a.dropdown-item:hover {
  background-color: rgb(255, 184, 122);
}

@media (max-width: 576px) {
  .nav-item ul li {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
  }
  header nav .nav__logo {
    padding-left: 6px;
  }
}
@media (max-width: 300px) {
  .mi-dropdown {
    padding: 0 auto;
  }
}
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
.hero .hero__content {
  width: 100%;
  padding-left: 3.5rem;
  margin: 0 auto;
  align-items: center;
  text-align: left;
  /*boton*/
}
.hero .hero__content div.col-6.hero-text {
  align-items: center;
  text-align: left;
}
.hero .hero__content .img-hero {
  display: flex;
  justify-content: left;
  align-items: center;
}
.hero .hero__content .img-hero img {
  max-width: 650px;
  width: 100%;
  max-height: 550px;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}
.hero .hero__content h1 {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: black;
}
.hero .hero__content .hero__description {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 200;
  color: black;
  line-height: 1.7;
  padding: 2rem 0;
}
@media (max-width: 992px) {
  .hero .hero__content .hero__description {
    line-height: 1.3;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
  }
}
.hero .hero__content .hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  height: 50px;
  margin-top: 4rem;
  background-color: #1d05cb;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 1.2rem;
}
.hero .hero__content .hero__cta:hover {
  background-color: #7464ec;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero .hero__content .hero__cta:focus {
  outline: 1px solid #150878;
  outline-offset: 3px;
}
.hero .hero__content .hero__cta:active {
  transform: scale(0.98);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 992px) {
  .hero .hero__content .hero__cta {
    text-align: center;
    margin: 0 auto;
  }
}
.hero .hero__content .hero__content a:hover {
  color: white;
}

@media (max-width: 750px) {
  .hero {
    align-items: flex-start;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: 0;
    padding-right: 0;
  }
  .hero .hero__content {
    justify-content: center;
    padding: 0;
  }
  .hero .hero__content .hero__title {
    font-size: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: white;
  }
  .hero .hero__content .hero__description {
    font-size: 0.9rem;
    font-weight: 100;
    color: white;
  }
  .img-hero img {
    display: none;
  }
  .hero-text {
    color: white;
    position: relative;
    background-image: url("/img/hero-img.png");
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
  }
  .hero-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* ajustá esto */
  }
  .hero-text > * {
    position: relative;
    z-index: 1;
  }
}
/* variables */
.valor {
  display: grid;
  height: 700px;
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  place-items: center;
  padding: 2rem 2rem;
}
.valor .valor__titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5;
  color: #fe7700;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3rem;
}
.valor .valor__parrafo {
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  color: #7464ec;
  font-weight: 200;
}

/* variables */
.servicio {
  padding: 1rem 1rem;
  align-self: center;
  align-content: center;
}
.servicio .servicio__texto {
  flex: 0 0 auto;
}
.servicio .servicio__texto .servicio__titulo {
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: 5rem;
  line-height: 0.9;
  margin: 2rem 1.5rem;
  padding-left: 2rem;
  color: #7464ec;
}
.servicio .servicio__texto .servicio__parrafo {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  padding: 0 1rem;
  margin: 2rem 0rem;
  text-align: justify;
}
.servicio .servicio__card {
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  width: 100%;
  margin: 1rem;
  padding: 3rem;
  border-radius: 16px;
  background-color: #b4acf6;
}
.servicio .servicio__card .servicio__card__titulo {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: black;
  font-size: 1.1rem;
  text-align: left;
}
.servicio .servicio__card .servicio__card__btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  background-color: #f5f5f5;
  color: black;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  font-family: "Outfit", sans-serif;
  box-shadow: 0 10px 25px rgba(0, 0, 0.1, 0.1);
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
}
.servicio .servicio__card .servicio__card__btn:hover {
  background-color: #fd9f4c;
}

@media (max-width: 1300px) {
  .servicio__titulo, .servicio__parrafo {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 750px) {
  .servicio {
    margin-top: 3rem;
  }
  .servicio .servicio__texto .servicio__titulo {
    font-size: 2rem;
    padding-top: 2rem;
    margin: 0 auto;
    text-align: center;
  }
  .servicio .servicio__card {
    max-width: 100%;
    width: 16rem;
    padding: 20px;
    margin: 0 auto;
  }
}
.trabajamos__contenedor {
  padding: 6rem 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.trabajamos__texto {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 3rem;
}
.trabajamos__texto .trabajamos__subtitulo {
  font-size: 1.3rem;
  font-family: "Outfit", sans-serif;
  color: #2c2c2c;
  font-weight: 200;
}
.trabajamos__texto .trabajamos__titulo {
  font-family: "Epilogue", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.pasos-linea {
  justify-content: space-evenly;
  padding: 5rem;
  max-width: 100%;
  width: 1300px;
}
.pasos-linea .paso {
  max-width: 100%;
  width: 300px;
  text-align: center;
  padding: 1rem;
  margin: 2rem;
}
.pasos-linea .paso .paso-titulo {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  color: #3c3c3c;
  font-size: 2.3rem;
}
.pasos-linea .paso .paso-texto {
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  padding: 0 2.2rem;
}
.pasos-linea .paso .paso-num {
  width: 60px;
  height: 60px;
  background-color: #7464ec;
  color: white;
  font-family: "Epilogue", sans-serif;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  margin: 0 auto 1rem auto;
  opacity: 70%;
}

@media (max-width: 750px) {
  .pasos-linea {
    justify-content: center;
    padding: 0rem;
    text-align: center;
    max-width: 100%;
    width: 20rem;
  }
}
/* variables */
.nosotros__contenedor {
  padding: 8rem 0;
}
.nosotros__contenedor .titulo__nosotros {
  font-size: 3rem;
  text-align: center;
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  padding: 3rem 0;
}
.nosotros__contenedor .nosotros__contenido {
  max-width: 100%;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 4rem;
}
.nosotros__contenedor .nosotros__contenido .texto__nosotros {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  padding: 0 1rem;
  margin: 2rem 0rem;
}
.nosotros__contenedor .nosotros__contenido div.etiqueta-nosotros {
  font-size: 0.9rem;
  background-color: rgba(116, 100, 236, 0.2);
  color: rgb(116, 100, 236);
  width: 200px;
  border-radius: 1rem;
  margin-left: 10px;
  letter-spacing: 1px;
}
.nosotros__contenedor .nosotros__contenido div.etiqueta-nosotros p {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 3px;
  margin-top: 2rem;
  font-weight: 500;
}
.nosotros__contenedor .img__contenedor {
  text-align: center;
}
.nosotros__contenedor .img__nosotros {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.nosotros__contenedor .texto__experiencia {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

.contenedor-experiencia {
  margin-bottom: 5rem;
}

.subtitulo__nosotros {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  align-items: center;
  font-family: "Epilogue", sans-serif;
  padding-top: 1.5rem;
  overflow: hidden;
}

.carrusel {
  display: flex;
  gap: 1rem;
  max-height: 600px;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0;
  max-width: 100%;
}

.experiencia-card {
  min-width: 250px;
  width: 150px;
  flex: 0 0 auto;
  font-family: "Outfit", sans-serif;
  padding: 2rem;
  background: rgba(116, 100, 236, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.experiencia-card-alter {
  min-width: 250px;
  width: 150px;
  flex: 0 0 auto;
  font-family: "Outfit", sans-serif;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.carrusel::-webkit-scrollbar {
  display: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 575px) {
  .nosotros__contenedor {
    width: 100%;
    padding: 4rem 0;
  }
  .nosotros__contenedor .texto__experiencia {
    font-size: 15px;
    padding: 0;
    margin: 7px 0;
  }
}
@media (max-width: 768px) {
  .nosotros__contenedor {
    max-width: 1200px;
    padding: 0.3rem 0;
    margin: 4rem 0;
  }
  .nosotros__contenedor .nosotros__contenido .texto__nosotros {
    text-align: justify;
  }
  .nosotros__contenedor .titulo__nosotros {
    font-size: 1.5rem;
  }
}
.misionVision__contenedor {
  display: flex;
  flex-direction: row;
  padding: 5rem 0;
}
.misionVision__contenedor .layout-misionVision {
  display: flex;
  align-items: center;
  text-align: justify;
}
.misionVision__contenedor .layout-misionVision .misionVision__titulo {
  font-size: 3rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
}
.misionVision__contenedor .layout-misionVision .misionVision__parrafo {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  padding: 0 1rem;
  margin: 2rem 0rem;
}
.misionVision__contenedor .layout-misionVision .img-misionVision {
  width: 600px;
}

@media (max-width: 1024px) {
  .misionVision__contenedor .layout-misionVision .misionVision__parrafo {
    font-size: 15px;
  }
}
@media (max-width: 750px) {
  .misionVision__contenedor .layout-misionVision .misionVision__parrafo {
    padding: 1rem;
  }
  .misionVision__contenedor .layout-misionVision .misionVision__titulo {
    margin-top: 1rem;
    padding: 1rem;
  }
}
/* ===================== */
/* CONTENEDOR GENERAL */
/* ===================== */
.contenedor-optimizacion {
  flex-direction: column;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===================== */
/* BLOQUE SERVICIO */
/* ===================== */
.servicio-detalle-contenido {
  margin: 8rem auto;
}
.servicio-detalle-contenido .encabezado-optimizacion h1 {
  margin-top: 8rem;
  padding: 0 1rem;
  font-size: 2.5rem;
  text-align: left;
  line-height: 1;
  font-family: "Epilogue", sans-serif;
}
.servicio-detalle-contenido .img-optimizacion {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  margin-top: 3.5rem;
}
.servicio-detalle-contenido .optimizacion-subparrafo {
  text-align: justify;
  color: #a9aaa9;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  padding: 0 1rem;
}

/* ===================== */
/* SERVICIOS INCLUIDOS */
/* ===================== */
.servicios-incluidos {
  align-items: center;
  margin-bottom: 10rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}
.servicios-incluidos .row {
  justify-content: center;
}
.servicios-incluidos h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  text-align: center;
  margin: 3rem 5rem;
  padding: 2rem;
  margin: 0 auto;
}
.servicios-incluidos .servicios-incluidos-card {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: black;
  line-height: 1.1;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  height: 14rem;
  width: 21.3rem;
  background: rgba(116, 100, 236, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(116, 100, 236, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servicios-incluidos .servicios-incluidos-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px #9e92fc;
  background-color: #7f6ff4;
  color: #F4F1EA;
}
.servicios-incluidos .servicios-incluidos-card p {
  padding: 4rem 1rem;
  text-align: center;
}

/* ===================== */
/* BLOQUE DESTACADO */
/* ===================== */
.highlight {
  max-width: 700px;
  margin: 4rem auto 0 auto;
  text-align: center;
  padding: 2rem;
  background: #f8f7ff;
  border-radius: 12px;
}
.highlight p {
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 2rem;
  text-align: right;
}

/* ===================== */
/* BOTÓN CONSULTA */
/* ===================== */
.boton-optimizacion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem auto;
  width: 18rem;
  height: 3rem;
  background-color: #fd9f4c;
  text-decoration: none;
  color: #F4F1EA;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}
.boton-optimizacion:hover {
  background-color: #fe7700;
}

/* ===================== */
/* CARDS SERVICIOS */
/* ===================== */
.optimizacion-card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 10rem 0 9rem;
  flex-wrap: wrap;
}
.optimizacion-card h4 {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

/* ===================== */
/* CARD INDIVIDUAL */
/* ===================== */
.card-optimizacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem;
  padding: 0px;
  height: 450px;
  background-color: rgba(233, 231, 231, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0.5, 0.5, 0.15);
  border-radius: 8px;
  color: #535353;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-optimizacion:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0.3, 0.3, 0.2);
  background-color: #ffb778;
  color: #F4F1EA;
}
.card-optimizacion:hover a {
  color: inherit;
}
.card-optimizacion a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.card-optimizacion a:hover, .card-optimizacion a:focus, .card-optimizacion a:active, .card-optimizacion a:visited {
  text-decoration: none;
  color: inherit;
  outline: none;
  box-shadow: none;
}
.card-optimizacion .card-img-top {
  height: 300px;
  border-radius: 8px 8px 0 0;
}
.card-optimizacion .optimizacion-card-titulo {
  color: #fe7700;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  font-family: "Outfit", sans-serif;
}
.card-optimizacion .text-optimizacion-card {
  font-weight: 200;
  font-family: "Outfit", sans-serif;
  text-align: left;
  font-size: 0.7rem;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 750px) {
  .servicio-detalle-contenido {
    text-align: center;
  }
  .servicio-detalle-contenido .encabezado-optimizacion h1 {
    font-size: 33px;
    margin-top: 1rem;
  }
  .servicio-detalle-contenido .optimizacion-subparrafo {
    font-size: 19px;
    text-align: justify;
  }
  .servicios-incluidos h2 {
    font-size: 30px;
    text-align: center;
  }
  .servicios-incluidos p {
    text-align: justify;
  }
  .highlight p {
    font-size: 17px;
    padding: 3rem;
  }
}
/* variables */
.footer {
  background-color: #d7d4d4;
  padding: 2rem;
  /* layout */
  /* texto */
}
.footer ul {
  list-style: none;
}
.footer a {
  text-decoration: none;
  color: inherit;
}
.footer img {
  width: 14px;
}
.footer .footer__group {
  display: flex;
  align-items: center;
  justify-content: center;
  word-spacing: 3px;
}
.footer .footer__title {
  color: #fe7700;
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
.footer .footer__item {
  font-size: 0.7rem;
  line-height: 2;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  padding-left: 8px;
}
.footer .footer-justify-sm {
  text-align: justify;
}
@media (min-width: 768px) {
  .footer .footer-justify-sm {
    text-align: start;
  }
}
@media (max-width: 575.98px) {
  .footer .footer__title {
    padding: 9px;
    text-align: center;
  }
  .footer .footer_item {
    line-height: 1;
  }
}

/* variables */
.form-container {
  display: flex;
  align-items: center;
  height: 800px;
  max-height: 100%;
}
.form-container .contenido__form {
  width: 500px;
  max-width: 95%;
  height: 500px;
  padding: 2rem;
  background-color: rgba(215, 212, 212, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 5rem auto;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.form-container .contenido__form .contenido__form::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.form-container .contenido__form .titulo__form {
  text-align: center;
  font-size: 1.6rem;
  font-family: "Epilogue", sans-serif;
  color: #fe7700;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-container .contenido__form div label {
  color: #fe7700;
  font-family: "Outfit", sans-serif;
}
.form-container .contenido__form .boton__contacto {
  color: #F4F1EA;
  background-color: #fe7700;
  border-style: none;
  height: 2rem;
  border-radius: 15px;
}
@media (max-with: 576px) {
  .form-container .contenido__form {
    min-width: 85%;
  }
}
@media (max-with: 768px) {
  .form-container .contenido__form {
    min-width: 65%;
  }
}
@media (min-widh: 992px) {
  .form-container .contenido__form {
    max-width: 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*reset*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* BOTÓN WHATSAPP */
  /* BOTÓN SUBIR */
}
html .whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100vw;
}
html .whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
html .whatsapp-float img {
  width: 28px;
  height: 28px;
}
html .boton-inicio {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 40px;
  height: 40px;
  background-color: rgba(78, 81, 80, 0.7764705882);
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100vw;
}

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