@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
}

ol, ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

p, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0px;
}

.container, .container-fluid {
  --bs-gutter-x: 0px !important;
}

.flex-n {
  display: flex;
  align-items: center;
}
.flex-n img {
  width: 70px;
}

.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-e {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
}

.flex-start {
  display: flex;
  align-items: center;
}

.primario {
  color: #1D3454;
}

.secundario {
  color: #8BA7E2;
}

.terciario {
  color: white;
}

.t-center {
  text-align: center;
}

.t-end {
  text-align: end;
}

.separador {
  width: 50%;
  color: white;
  margin: 50px 0px;
  border: 2px white solid;
}

.boton-uno {
  background-color: white;
  color: #1D3454;
  transition: 0.4s;
}
.boton-uno:hover {
  background-color: #8BA7E2;
  color: white;
}

.boton-dos {
  background-color: #1D3454;
  color: white;
  transition: 0.4s;
}
.boton-dos:hover {
  background-color: #8BA7E2;
  color: white;
}

.boton-tres {
  background-color: white;
  color: #1D3454;
  transition: 0.4s;
}
.boton-tres:hover {
  background-color: #1D3454;
  color: white;
}

.boton-cta {
  background-color: #1D3454;
  color: white;
  transition: 0.4s;
  font-size: 35px;
}
.boton-cta:hover {
  background-color: #8BA7E2;
  color: white;
}

.boton-cta-dos {
  background-color: white;
  color: #1D3454;
  transition: 0.4s;
  font-size: 35px;
}
.boton-cta-dos:hover {
  background-color: #8BA7E2;
  color: white;
}

.hr-p {
  border: 10px #1D3454 solid;
  opacity: 1;
}

.hr-s {
  border: 10px #8BA7E2 solid;
  opacity: 1;
}

.hr-t {
  border: 10px white solid;
  opacity: 1;
}

footer {
  background-color: #1D3454;
}
footer ul {
  gap: 30px;
}
footer ul li {
  list-style: none;
}
footer ul li a {
  text-decoration: none;
  color: white;
  transition: 0.4s;
}
footer ul li a:hover {
  color: #8BA7E2;
}
footer .icons {
  gap: 10px;
}

header {
  background-color: #1D3454;
  z-index: 10000;
  justify-content: center;
}
header li {
  list-style: none;
}
header li a {
  text-decoration: none;
  color: #1D3454;
  transition: 0.4s;
}
header li a:hover {
  color: #8BA7E2;
}
header li a:focus {
  color: #8BA7E2;
}

.justify-end {
  justify-content: end;
}

.ul-responsive {
  align-items: flex-end;
}
.ul-responsive li {
  list-style: none;
}
.ul-responsive li a {
  text-decoration: none;
  color: white;
  transition: 0.4s;
}
.ul-responsive li a:hover {
  color: #8BA7E2;
}

.ul-drop li {
  list-style: none;
}
.ul-drop li a {
  text-decoration: none;
  color: #1D3454;
  transition: 0.4s;
}
.ul-drop li a:hover {
  color: #8BA7E2;
}
.ul-drop li a:focus {
  color: #8BA7E2;
}
.ul-drop li a:active {
  color: #8BA7E2;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: #8BA7E2 !important;
}

.logo {
  width: 100px;
}

@media (max-width: 900px) {
  .responsive-display-uno {
    display: block;
  }
}

@media (max-width: 900px) {
  .responsive-display-dos {
    display: none;
  }
}

.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='rgba%28139, 167, 226, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border: 1px solid #8BA7E2;
}

.li-drop {
  list-style: none;
}
.li-drop a {
  text-decoration: none;
  color: #1D3454 !important;
  transition: 0.4s;
}
.li-drop a:hover {
  color: #8BA7E2 !important;
}
.li-drop a:focus {
  color: #8BA7E2 !important;
}
.li-drop a:active {
  color: #8BA7E2 !important;
}
.li-drop a:link {
  color: #8BA7E2 !important;
}

.top-header {
  background-color: white;
  padding: 5px 0px;
}
.top-header h5 {
  font-size: 17px;
}
@media only screen and (max-width: 430px) {
  .top-header {
    display: none;
  }
}
.top-header img {
  width: 22px;
}
.top-header a {
  text-decoration: none;
  color: #1D3454;
  transition: 0.4s;
}
.top-header a:hover {
  color: #8BA7E2;
}

.dropdown-menu2 {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Mostrar al hacer hover */
.dropdown:hover .dropdown-menu2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .menu-desk {
    display: none;
  }
}

.menu-cel {
  display: none;
}
@media (max-width: 992px) {
  .menu-cel {
    display: block;
  }
}

.titulo {
  font-weight: 900;
  font-size: 40px;
  color: #1D3454;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .titulo {
    font-size: 30px;
  }
}

.titulo-b {
  font-weight: 900;
  font-size: 40px;
  color: white;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .titulo-b {
    font-size: 30px;
  }
}

.subtitulo {
  font-weight: 700;
  font-size: 28px;
  color: #1D3454;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .subtitulo {
    font-size: 25px;
  }
}

.subtitulo-b {
  font-weight: 700;
  font-size: 28px;
  color: white;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .subtitulo-b {
    font-size: 25px;
  }
}

.subtexto-b {
  font-weight: 500;
  font-size: 22px;
  color: white;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .subtexto-b {
    font-size: 17px;
  }
}

.parrafo {
  font-weight: 300;
  color: #1D3454;
  font-size: 17px;
}
@media only screen and (max-width: 568px) {
  .parrafo {
    font-size: 16px;
  }
}

.parrafo-b {
  font-weight: 300;
  color: white;
  font-size: 17px;
}
@media only screen and (max-width: 568px) {
  .parrafo-b {
    font-size: 16px;
  }
}

.bajada {
  font-weight: 400;
  color: #1D3454;
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .bajada {
    font-size: 20px;
  }
}

.bajada-b {
  font-weight: 400;
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .bajada-b {
    font-size: 20px;
  }
}

.bold {
  font-weight: 700;
}

.strong {
  font-weight: 900;
}

.cta-text {
  font-size: 60px;
}
@media only screen and (max-width: 568px) {
  .cta-text {
    font-size: 35px;
  }
}

.mailContacto {
  font-weight: 700;
  font-size: 28px;
  color: #1D3454;
  margin-bottom: 10px;
}
@media only screen and (max-width: 568px) {
  .mailContacto {
    font-size: 18px;
  }
}

.hero {
  background-color: #1D3454;
  background-image: url("../assets/img/banner-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
}
@media only screen and (max-width: 568px) {
  .hero {
    height: auto;
  }
}
.hero h1 {
  text-align: center;
  color: white;
  font-size: 60px;
}
@media only screen and (max-width: 568px) {
  .hero h1 {
    font-size: 35px;
  }
}
.hero .titulo-hero {
  font-weight: 900;
  color: #8BA7E2;
}

.index-seccion-uno {
  background-color: #1D3454;
  padding: 50px 0px;
  background-image: url("../assets/img/fondo1-01.png");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}
.index-seccion-uno .img-historia {
  border-radius: 300px 20px 20px 300px;
}

.seccion-dos-index {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .seccion-dos-index {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 568px) {
  .seccion-dos-index {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.cta-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 15px 0px;
}

/* Video */
.fullscreen-video {
  width: 100%;
  height: 80vh;
  display: block;
  border: none;
  outline: none;
  object-fit: cover;
}
@media only screen and (max-width: 668px) {
  .fullscreen-video {
    height: auto;
  }
}

/* Personalización de Plyr */
:root {
  --plyr-color-main: #8BA7E2;
}

.plyr--full-ui input[type=range] {
  color: #8BA7E2;
}

.plyr__control {
  background-color: #1D3454;
}

.plyr__control:hover {
  background-color: #8BA7E2;
  color: #1D3454;
}

.plyr--video {
  border-radius: 12px;
  overflow: hidden;
}

/* Logos clientes */
.carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 50px 0px;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-track img {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
  margin: 0px 20px;
  height: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 14px 2px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 5px 5px 14px 2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 14px 2px rgba(0, 0, 0, 0.75);
}

@media (max-width: 1000px) {
  .carousel-track img {
    width: 200px;
    height: auto;
    transition: transform 0.4s ease;
    margin-right: 10px;
  }
}
.carousel-track img:hover {
  transform: scale(1.03);
  box-shadow: 10px 10px 19px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 19px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 19px 0px rgba(0, 0, 0, 0.75);
  opacity: 0.9;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cont-flecha {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .cont-flecha {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .flechaD {
    display: none;
  }
}

.flechaA {
  display: none;
}
@media (max-width: 1199px) {
  .flechaA {
    display: block;
  }
}

.titulo-flecha {
  font-weight: 900;
  font-size: 60px;
  color: #1D3454;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .titulo-flecha {
    text-align: center;
    font-size: 50px;
  }
}

.hr-index {
  border: 10px #1D3454 solid;
  opacity: 1;
}
@media (max-width: 1199px) {
  .hr-index {
    display: none;
  }
}

.index-seccion-logos {
  background-image: url("../assets/img/fondo2-01.png");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.cont-cta-hero {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.oferta-contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: black;
  color: white;
  border-radius: 10px;
  width: fit-content;
}

.cont-porcent {
  border-right: 1px solid white;
  padding-right: 10px;
}

.cont-porcent-dos {
  padding-left: 10px;
}

.contenedor-cta-cotizar {
  background-image: url("../assets/img/index/familiaFeliz-01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0px;
}

@media (max-width: 1199px) {
  .fantasma {
    display: none;
  }
}

@media (max-width: 575px) {
  .centrador {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}

.hero-nosotros {
  background-color: #1D3454;
  background-image: url("../assets/img/nosotros/nosotros-dos-01.jpg");
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 450px;
}
@media only screen and (max-width: 568px) {
  .hero-nosotros {
    height: 220px;
  }
}
.hero-nosotros h1 {
  color: white;
  font-size: 60px;
}
@media only screen and (max-width: 568px) {
  .hero-nosotros h1 {
    font-size: 35px;
  }
}
.hero-nosotros .titulo-hero {
  font-weight: 900;
  color: #8BA7E2;
}

.nosotros-seccion-uno {
  background-color: white;
  padding: 50px 0px;
}
.nosotros-seccion-uno .img-historia {
  border-radius: 20px 300px 300px 20px;
}

.valores-cards {
  background-color: white;
  padding: 20px;
  box-shadow: 10px 10px 30px 1px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 30px 1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 30px 1px rgba(0, 0, 0, 0.75);
  background-image: url("../assets/img/fondo1-01.png");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px 20px 20px 20px;
}
.valores-cards img {
  width: 60px;
}

.nosotros-seccion-dos {
  padding: 35px 0px;
  background-color: #1D3454;
  background-image: url("../assets/img/nosotros/nosotros-uno-01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.nosotros-seccion-dos h2 {
  text-align: center;
}

.valores-guia {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
}

.cont-iconos {
  display: flex;
  gap: 10px;
  align-items: center;
}

.seccion-cuatro-nosotros {
  background-image: url("../assets/img/fondo1-01.png");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}
.seccion-cuatro-nosotros hr {
  border: 10px #1D3454 solid;
  opacity: 1;
}

.seccion-cinco-cont {
  padding: 50px 0px;
}
@media only screen and (max-width: 568px) {
  .seccion-cinco-cont {
    padding: 0px 0px;
  }
}

.img-nosotros-radius {
  border-radius: 140px 20px 20px 20px;
}

.hero-contacto {
  background-color: #1D3454;
  background-image: url("../assets/img/banner-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 250px;
}
.hero-contacto h1 {
  color: white;
  font-size: 60px;
}
@media only screen and (max-width: 568px) {
  .hero-contacto h1 {
    font-size: 35px;
  }
}
.hero-contacto .titulo-hero {
  font-weight: 900;
  color: #8BA7E2;
}

.seccion-uno-contacto {
  padding: 50px 0px;
  display: flex;
  justify-content: center;
}

.contacto-main {
  background-color: #1D3454;
  background-image: url("../assets/img/fondo1-01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.form-contacto-uno {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  background-image: url("../assets/img/fondo1-01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form-contacto-uno a {
  color: #1D3454;
  transition: 0.4s;
  text-decoration: none;
}
.form-contacto-uno a:hover {
  color: #8BA7E2;
}

.form-contacto-dos {
  padding: 20px;
  background-color: #8BA7E2;
  border-radius: 10px;
}

.unete-form-uno {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-service {
  background-color: #1D3454;
  background-image: url("../assets/img/servicio/fond-hero-cont-01.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 140px 0px;
  background-attachment: fixed;
}
@media only screen and (max-width: 968px) {
  .hero-service {
    padding: 90px 0px;
  }
}
@media only screen and (max-width: 568px) {
  .hero-service {
    padding: 40px 0px;
  }
}
.hero-service h1 {
  color: white;
  font-size: 60px;
}
@media only screen and (max-width: 568px) {
  .hero-service h1 {
    font-size: 35px;
  }
}
.hero-service .titulo-hero {
  font-weight: 900;
  color: #8BA7E2;
}

.service-seccion-uno {
  background-image: url("../assets/img/fondo1-01.png");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.service-main {
  background-color: white;
}

.hr-service {
  border: 0.3px #1D3454 solid;
  opacity: 1;
  width: 50%;
  opacity: 40%;
}

.cta-background {
  background-color: #1D3454;
  border-radius: 20px;
}

.img-servicio-radius {
  border-radius: 20px 20px 20px 20px;
}

.enviado {
  height: 80vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("../assets/img/fondo1-01.png");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.read-more-content {
  display: none;
}

.read-more-button {
  color: #007BFF;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-size: 1em;
  padding: 0;
}

.read-more-wrapper {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

.step {
  display: none;
  flex-direction: column;
}

.step.active {
  display: flex;
  animation: fadeIn 0.4s ease-in;
}

input, select {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

button {
  background-color: #1D3454;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #8BA7E2;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
}

.progress-bar {
  width: 100%;
  background-color: #ddd;
  border-radius: 8px;
  margin: 20px auto;
  height: 25px;
  max-width: 500px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  background-color: #8BA7E2;
  height: 100%;
  width: 0%;
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cont-cotizador {
  padding: 70px 0px;
  background-color: #1D3454;
  background-image: url("../assets/img/fondo1-01.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-cotizacion {
  border: 0.3px white solid;
  opacity: 1;
  width: 50%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  nav, section {
    padding: 30px 20px !important;
    overflow: hidden;
  }
}
/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}
@media only screen and (max-width: 768px) {
  .row {
    --bs-gutter-x: 0px !important;
  }
}

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