@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  color: black;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  margin: auto;
}

h1 {
  font-size: 100px;
  font-weight: 500;
  color: white;
}

h2 {
  font-size: 55px;
  font-weight: 400;
}

h3 {
  font-size: 40px;
  font-weight: 400;
}

h4 {
  font-size: 35px;
  font-weight: 300;
}

p,
a {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: 300;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  width: 200px;
  height: auto;
}

ol {
  margin: 20px 0px 20px 40px;
  padding: 0;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: 300;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
  list-style-type: upper-roman;
}

button {
  background-color: #134578;
  color: white;
  border-radius: 20px;
  width: 155px;
  height: 40px;
  border: none;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  font-size: 21px;
  font-weight: 300;
  cursor: pointer;
}

button > a {
  color: white;
}

ol li {
  margin-top: 10px;
}

section {
  scroll-margin-top: -100px;
}

.cursiva {
  font-style: italic;
  font-weight: 400;
}

.transparente {
  background: #134578;
}

.contenedor {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

@media (max-width: 599px) {
  * {
    overflow-x: hidden;
  }
  .contenedor {
    min-width: 100vw;
    padding: 0 20px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
    text-align: center;
  }
  h3 {
    font-size: 28px;
  }
  p,
  a,
  ol {
    font-size: 16px;
    line-height: 1.6;
  }
}
nav {
  position: fixed;
  background-color: white;
  height: 75px;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  transition: top 0.2s ease-in-out;
}
nav > div {
  display: flex;
  gap: 57px;
  align-items: center;
  justify-content: space-between;
}
nav .navegacion {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
nav a {
  font-weight: 600;
  letter-spacing: 0px;
}
nav .icono-menu {
  display: none;
}

@media (max-width: 599px) {
  nav {
    width: 100vw;
  }
  nav.activo {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav .contenedorNav.activo {
    padding: 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
  nav > .contendedor {
    padding: 0px 50px;
  }
  nav button {
    display: none;
  }
  nav .navegacion {
    display: none;
  }
  nav .navegacion.activo {
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  nav .icono-menu {
    display: block;
    border: 0;
    font-size: 1.25rem;
    background-color: transparent;
    box-shadow: 0 0 0px transparent;
    cursor: pointer;
    width: auto;
    height: auto;
  }
  nav .icono-menu {
    color: #1c1c1c;
  }
}
header {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.5) 100%), url(/img/provicionalMain.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  height: 100vh;
  flex-direction: column;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mainHeader {
  width: 1000px;
  color: white;
  padding: 50px 0px;
}

.mainHeader h1 {
  margin: 50px 0 30px 0;
}
.mainHeader p,
.mainHeader q {
  color: white;
}
.mainHeader p {
  font-size: 28px;
}
.mainHeader q {
  font-size: 30px;
}
.mainHeader h3 {
  margin: 30px 0;
  color: white;
}
.mainHeader > button {
  margin: 45px 0;
  background-color: white;
  width: 180px;
}
.mainHeader > button a {
  font-weight: 500;
  font-size: 21px;
  color: black;
}

@media (max-width: 599px) {
  header .contenedorHeader {
    flex-direction: column;
    text-align: center;
  }
  .mainHeader {
    width: 100vw;
    padding: 50px;
  }
  .mainHeader p {
    font-size: 16px;
  }
  .mainHeader q {
    font-size: 18px;
  }
}
.beneficios {
  margin-top: 125px;
  display: grid;
  grid-column: auto;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}

@keyframes appear {
  from {
    opacity: 0.3;
    scale: 0.9;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
.beneficio {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 210px;
  border-radius: 15px;
  background-color: #134578;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  text-align: left;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}
.beneficio .head {
  padding-top: 20px;
  width: 80%;
  margin: 0px auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.beneficio .head img {
  width: 20px;
  height: 20px;
}
.beneficio .tiny,
.beneficio .head p {
  margin: 0px auto;
  width: 80%;
  color: white;
}
.beneficio .tiny {
  padding-top: 10px;
  letter-spacing: 1px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.905);
}
.beneficio .head p {
  margin-left: 5px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: 20px;
}

@media (max-width: 599px) {
  .beneficios {
    margin-top: 15px;
    grid-template-columns: 1fr;
  }
  .beneficio {
    align-items: center;
    justify-content: center;
    height: auto;
    padding-bottom: 30px;
    animation: none linear;
  }
}
.ventajas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 120px auto 200px auto;
  overflow-x: hidden;
}

.contenedorVentajas {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 50px;
  gap: 40px;
  font-variant-numeric: lining-nums;
  margin-left: 400px;
}

.ventaja {
  height: 200px;
  width: 350px;
  background-color: #134578;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0px 30px;
  letter-spacing: 1px;
  margin: -25px 0px;
  border-radius: 15px;
  font-size: 25px;
  font-weight: 400;
}
.ventaja span {
  color: white;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.contenedorVentaja {
  margin: 25px 0px;
}

.circle {
  position: relative;
  margin: -23px auto;
  background-color: white;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  -webkit-box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 2px 5px 1px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle img {
  width: 30px;
  height: 30px;
}

.circle .bigimg {
  width: 35px;
  height: 35px;
}

.flecha {
  position: absolute;
  width: 40px;
  filter: invert(1);
  background-color: black;
  -webkit-box-shadow: 0px 2px 5px 1px rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 2px 5px 1px rgba(255, 255, 255, 0.25);
  box-shadow: 0px 2px 5px 1px rgba(255, 255, 255, 0.25);
  border-radius: 100%;
  cursor: pointer;
}

.left {
  margin-left: -20px;
}

.right {
  margin-left: 1110px;
}

@media (max-width: 1200px) {
  .ventajas, .ventaja, .right, .left, .contenedorVentaja, .contenedorVentajas {
    display: none;
  }
}
.contenedorSlides {
  max-width: 90%;
  min-width: 1000px;
  margin: auto;
}

.contenedorInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120vh;
}

.contenedorImg img {
  height: 550px;
  width: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.infoSlides {
  width: 890px;
}
.infoSlides h2 {
  padding-bottom: 20px;
  font-weight: 500;
}
.infoSlides .contenido {
  margin-top: 35px;
  border-left: 1px solid white;
  padding-left: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
.infoSlides .contenido h4 {
  margin-bottom: 20px;
  font-weight: 500;
}

.BotCInfo h2 {
  width: 190px;
}

.autoInfo h2 {
  width: 500px;
}

.rpaInfo h2 {
  width: 140px;
}

.BotCInfo,
.autoInfo,
.rpaInfo {
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  z-index: 1;
  width: 100%;
  margin-top: -40px;
}
.BotCInfo p,
.BotCInfo strong,
.BotCInfo h2,
.BotCInfo .cursiva,
.BotCInfo li,
.autoInfo p,
.autoInfo strong,
.autoInfo h2,
.autoInfo .cursiva,
.autoInfo li,
.rpaInfo p,
.rpaInfo strong,
.rpaInfo h2,
.rpaInfo .cursiva,
.rpaInfo li {
  color: white;
}
.BotCInfo p,
.autoInfo p,
.rpaInfo p {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 30px;
}
.BotCInfo h2,
.autoInfo h2,
.rpaInfo h2 {
  font-size: 65px;
  font-weight: 600;
  letter-spacing: 0px;
  padding-bottom: 15px;
  border-bottom: 3px solid;
  margin-bottom: 40px;
}
.BotCInfo h2.BotCInfo,
.autoInfo h2.BotCInfo,
.rpaInfo h2.BotCInfo {
  width: 170px;
}
.BotCInfo h2.autoInfo,
.autoInfo h2.autoInfo,
.rpaInfo h2.autoInfo {
  width: 500px;
}
.BotCInfo h2.rpaInfo,
.autoInfo h2.rpaInfo,
.rpaInfo h2.rpaInfo {
  width: 150px;
}
.BotCInfo h4,
.autoInfo h4,
.rpaInfo h4 {
  margin: 40px 0px;
  font-size: 32px;
  font-weight: 600;
  color: white;
}
.BotCInfo::before,
.autoInfo::before,
.rpaInfo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  background-image: inherit;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.BotCInfo.BotCInfo,
.autoInfo.BotCInfo,
.rpaInfo.BotCInfo {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0) 100%), url(https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}
.BotCInfo.autoInfo,
.autoInfo.autoInfo,
.rpaInfo.autoInfo {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0) 100%), url(https://images.unsplash.com/photo-1600469984476-c713650f1b1b?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}
.BotCInfo.rpaInfo,
.autoInfo.rpaInfo,
.rpaInfo.rpaInfo {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0) 100%), url(https://images.unsplash.com/photo-1517148815978-75f6acaaf32c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}

.dots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 13px;
  height: 150px;
  padding: 13px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.419);
}
.dots .dot {
  border-radius: 100%;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
}
.dots .dot.white {
  background-color: white;
}

.rpaInfo .infoSlides .contenido {
  height: auto;
  margin: 35px 0px;
  padding-left: 30px;
}
.rpaInfo ol {
  font-size: 22px;
}

@media (max-width: 599px) {
  .contenedorSlides {
    min-width: 230px;
  }
  .contenedorInfo {
    height: 150vh;
  }
  .infoSlides .contenido {
    border-left: 0px solid white;
    padding-left: 20px;
  }
  .infoSlides .contenido h4 {
    font-weight: 400;
  }
  .BotCInfo {
    margin-top: 50px;
  }
  .BotCInfo p,
  .autoInfo p,
  .rpaInfo p {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 28px;
  }
  .BotCInfo h2,
  .autoInfo h2,
  .rpaInfo h2 {
    text-align: left;
    font-size: 40px;
  }
  .BotCInfo h4,
  .autoInfo h4,
  .rpaInfo h4 {
    font-size: 30px;
    font-weight: 500;
  }
  .BotCInfo.BotCInfo,
  .autoInfo.BotCInfo,
  .rpaInfo.BotCInfo {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.6) 100%), url(https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  }
  .BotCInfo.autoInfo,
  .autoInfo.autoInfo,
  .rpaInfo.autoInfo {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.6) 100%), url(https://images.unsplash.com/photo-1600469984476-c713650f1b1b?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  }
  .BotCInfo.rpaInfo,
  .autoInfo.rpaInfo,
  .rpaInfo.rpaInfo {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.6) 100%), url(https://images.unsplash.com/photo-1517148815978-75f6acaaf32c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  }
  .dots {
    display: none;
  }
  .rpaInfo .infoSlides .contenido {
    margin: 15px 0px;
    padding-left: 0px;
  }
  .rpaInfo ol {
    font-size: 20px;
  }
}
.contenedorRespaldos {
  max-width: 100%;
  padding: 150px 0px 100px;
  text-align: center;
}

.contenedor.contenedorRespaldos {
  width: 300px;
}

.contenedorRespaldos h2 {
  width: 600px;
  padding-bottom: 20px;
  margin: 0px auto 20px auto;
  font-size: 40px;
  border-bottom: 2px solid #bebebe;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-65%);
  }
}
.respaldos {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: white;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.respaldos:before,
.respaldos:after {
  position: absolute;
  top: 0;
  width: auto;
  height: 60px;
  content: "";
  z-index: 2;
}

.respaldo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  animation: 25s slide infinite linear;
}

@media (max-width: 599px) {
  .contenedorRespaldos, .respaldo, .respaldos, .contenedorRespaldos h2 {
    display: none;
  }
}
.contacto {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 900px;
  width: 100%;
  margin: 100px auto;
}

.contacto .informacion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contacto .informacion h3 {
  padding-bottom: 40px;
}

.contacto .informacion p,
.contacto .informacion strong {
  font-size: 17px;
  color: white;
}

.contacto .form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 475px;
  padding: 40px 50px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden; /* 👈 clave */
}

.contacto .form > p {
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.contacto form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contacto .form-group {
  width: 100%;
}

.contacto label {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.contacto input,
.contacto textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
}

.contacto textarea {
  resize: none;
  min-height: 120px;
  display: block;
}

.contacto input:focus,
.contacto textarea:focus {
  border-color: #134578;
  box-shadow: 0 0 4px rgba(19, 69, 120, 0.2);
}

.contacto button {
  margin: 10px auto 0;
  width: 160px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

#respuesta {
  margin-top: 10px;
  text-align: center;
  word-wrap: break-word;
}

@media (max-width: 599px) {
  .contacto {
    flex-direction: column;
    align-items: center;
    margin: 80px 0;
  }
  .contacto .informacion p,
  .contacto .informacion strong {
    display: none;
  }
  .contacto .informacion h3 {
    font-size: 32px;
    padding-bottom: 20px;
  }
  .contacto .form {
    padding: 30px 20px;
    max-width: 100%;
  }
  .contacto .form > p {
    font-size: 18px;
  }
}
footer {
  background-color: #134578;
  padding: 40px 20px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer p {
  color: white;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 17px;
}

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