@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Montserrat;
  font-size: 16px;
  line-height: 24px;
  color: #333;
}
html {
  scroll-behavior: smooth;
}
h1 {
  font-size: 20px;
  font-weight: normal;
}
:root {
  --azul1: #1c215b;
  --azul2: #167bb8;
  --azul3: #e7f1ff;
  --text-color: #333;
  color: #aeb2b4;
  --font-family: "Helvetica Neue", Arial, sans-serif;
}
.ancho {
  max-width: 1300px;
  margin: auto;
  /* border: 1px red solid; */
}
.negritas {
  font-weight: bold;
}
.mayusculas {
  text-transform: uppercase;
}
.azul1 {
  color: var(--azul1);
}
.azul2 {
  color: var(--azul2);
}
.azul3 {
  color: var(--azul3);
}
.margen {
  padding: 15px;
}
.margen_izquierdo {
  margin-left: 10px;
}
.margen_derecho {
  margin-right: 10px;
}
.content_blue {
  background-color: var(--azul2);
}
.alinear {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 8px;
}
.contenedor_arriba {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
.contenedor_telefono a {
  color: white;
  /* font-weight: bold; */
  text-decoration: none;
  font-size: 14px;
  padding: 5px;
}
.contenedor_email a {
  color: white;
  /* font-weight: bold; */
  text-decoration: none;
  font-size: 14px;
  padding: 5px;
}
.contenedor_redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 10px;
}
.contenedor_redes a {
  background-color: var(--azul1);
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
}
.logofooter figure {
  max-width: 400px;
}
.logofooter figure img {
  width: 100%;
  height: auto;
  display: block;
}
.sombra {
  box-shadow: 0px 2px 10px #ccc;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
header .logo {
  width: 350px;
}
header .logo img {
  width: 100%;
  height: auto;
  display: block;
}
/* slide fotos */
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  max-height: 700px;
  padding: 0;
  margin: 0;
}
.rslides li {
  backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  height: 100vh;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border: 0;
}
.contenedorfiltro {
  position: relative;
}
.filtrofotos {
  background-image: url("../images/filtro.svg");
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2000;
}
.icono_menu {
  display: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  background-color: var(--azul1);
  padding: 10px;
  color: white;
  border-radius: 5px;
}
.contenedor_menu {
  flex-grow: 1;
}
.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.menu li {
  display: inline-block;
}
.menu a {
  display: inline-block;
  color: var(--azul1);
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  border-bottom: 5px #fff solid;
  transition: all 0.5s linear;
  text-align: center;
}
.menu a:hover {
  border-bottom: 5px var(--azul2) solid;
}
.todo {
  position: relative;
}
.encima {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
}
.slidefotos {
  position: relative;
}
.textoslide {
  position: absolute;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contenedor_slide {
  color: white;
  padding: 10px;
  min-height: 500px;
  width: 85%;
  display: flex;
  flex: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.info_slide {
  text-align: left;
  width: 100%;
}
.ancho_info {
  max-width: 600px;
}
.texto_grande {
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
}
.texto_mediano {
  font-size: 20px;
  line-height: 20px;
  text-align: left;
  padding: 0;
  font-weight: bold;
}
.btn_azul {
  background-color: var(--azul1);
  color: white;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 40px;
  display: inline-block;
  transition: all 0.3s linear;
}
.btn_azul:hover {
  background-color: var(--azul2);
}
.efecto_subrayar {
  transition: all 0.5s linear;
}
.efecto_subrayar:hover {
  text-decoration: underline;
}
.fondo_azul {
  background-image: url("../images/fondo_azul.svg");
  background-size: cover;
}
.subtitulo {
  color: var(--azul1);
  font-size: 30px;
  line-height: 35px;
}
.linea_azul {
  height: 10px;
  border: 0px;
  background-color: var(--azul2);
  width: 100px;
}
.linea_azul2 {
  margin: auto;
  height: 10px;
  border: 0px;
  background-color: var(--azul2);
  width: 100px;
}
.contenedor_bienvenida {
  /* border: 1px red solid; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 20px 0px;
}
.contenedor_bienvenida figure {
  max-width: 600px;
}
.contenedor_bienvenida figure img {
  width: 100%;
  height: auto;
  display: block;
}
.contenedor_bienvenida article {
  max-width: 500px;
}
.fondo_circulos {
  background-image: url("../images/fondo_puntos.png");
  background-position: center;
  min-height: 200px;
}
/* acordeon */
.morado_bajo {
  background-color: var(--morado2);
  padding: 15px;
}
.contenedor_valores {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contenedor_valores figure {
  width: 48%;
}
.contenedor_valores figure img {
  width: 100%;
}
.listaacordeon {
  width: 48%;
}
.linearoja2 {
  height: 3px;
  background-color: var(--rojo);
  border: 0;
  margin-top: 10px;
}
.acordeon {
  width: 100%;
  margin: auto;
}
.acordeon_titulo {
  padding: 7px 20px;
  font-size: 14px;
  margin: 0;
  cursor: pointer;
  background-color: white;
  color: var(--azul1);
  border-radius: 0px 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 15px #ccc;
}
.questions1 {
  background-color: white;
  border-radius: 0px 20px 20px 20px;
  box-shadow: 0px 0px 15px #ccc;
  padding: 20px;
  max-width: 500px;
}
.contenedor_questions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch !important;
  gap: 50px;
}
.acordeon_titulo2 {
  padding: 15px 20px;
  font-size: 14px;
  margin: 0;
  cursor: pointer;
  color: var(--azul1);
  border-radius: 0px 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 15px #ccc;
}
.cont_icono {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.acordeon_contenido {
  display: none;
  margin: 0;
  background: var(--azul3);
  border-radius: 15px;
  padding: 20px;
}
.acordeon_contenido ul {
  list-style: none;
}
.icono1,
.icono2,
.icono3,
.icono4 {
  transform: rotate(0deg);
  transition: all 0.5s;
  font-size: 25px;
}
.rotar {
  transform: rotate(180deg);
}
#masinfo {
  display: none;
}
.espacio {
  padding: 20px 10px;
}
#abririnfo {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
}
/* modal */
.btn_modal {
  cursor: pointer;
}
.mascara {
  display: none;
  position: fixed;
  z-index: 10000;
  padding: 100px 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.8);
}
.mascara2 {
  display: none;
  position: fixed;
  z-index: 2000;
  padding: 100px 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transition: all 0.5s;
  background-color: rgba(0, 0, 0, 0.8);
}
.contenidomodal {
  background-color: #fefefe;
  margin: auto;
  padding: 10px;
  border: 1px solid #888;
  max-width: 900px;
}
.contenidomodal2 {
  background-color: #fefefe;
  margin: auto;
  padding: 15px;
  border: 1px solid #888;
  max-width: 900px;
}
.estructuramodal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.estructuramodal2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cerrarmodal {
  cursor: pointer;
  color: red;
  font-size: 26px;
  transition: all 0.5s;
}
.cerrarmodal2 {
  cursor: pointer;
  color: red;
  font-size: 26px;
  transition: all 0.5s;
}
.cerrarmodal:hover {
  color: #000000;
}
.cerrarmodal2:hover {
  color: #000000;
}
#video {
  margin-top: 10px;
  width: 100%;
}
#contenedoryoutube {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; /*nos da la proporcion de 16X9*/
  position: relative;
}
#contenedoryoutube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cont_icono img {
  height: 60px;
  width: 50px;
}
.contenedorindustria {
  background-image: url("../images/fondo_pantallas.jpg");
  background-size: cover;
}
.centrar {
  text-align: center;
}
#subir {
  font-size: 35px;
  color: var(--azulmedio);
  position: fixed;
  z-index: 9000;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
.contenedor_works {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.contenedor_works article {
  max-width: 400px;
  padding: 20px;
}
.blanco {
  background-color: white;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
  position: relative;
}
.icono_travel {
  position: absolute;
  top: -25px;
  right: -10px;
}
.foto1works img {
  width: 100%;
  height: auto;
  display: block;
}
/* PESTAÑAS */
.tab_container {
  border-top: none;
  overflow: hidden;
  max-width: 600px;
  background: #fff;
}
.tab_content {
  padding: 20px;
  margin-bottom: 5px;
}
.tabs {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 500px !important;
}
.tabs li {
  width: 100%;
  text-align: left;
  margin: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0px 0px 15px #ccc;
  border-radius: 0px 20px 20px 20px;
}
.tabs li a {
  text-decoration: none;
  color: #000;
  width: 100%;
  display: inline-block;
  /* padding: 10px 30px; */
  transition: all 0.3s linear;
}
.tabs li a:hover {
  background: var(--azul2) !important;
}
li.active {
  background: var(--azul3) !important;
}
li.active a:hover {
  background: #fff;
}
.contenedor_pasos {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.distribuir {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.fondo_azul2 {
  background-color: var(--azul3);
  padding: 20px;
  color: var(--azul1);
  border-radius: 0px 20px 20px 20px;
}
.listanumerica {
  margin-left: 30px;
}
.numeros {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.circulo {
  background-color: var(--azul2);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 18px;
}
/* formulario css */
.elementosformulario h2 {
  padding-left: 15px;
}
#elementos_formulario h2 {
  padding-bottom: 20px;
  line-height: 30px;
}
#elementos_formulario input {
  border-radius: 5px;
  border: 1px #d3d3d3 solid;
  padding: 10px;
  width: 95%;
  font-size: 16px;
}
#elementos_formulario {
  margin-top: 20px;
  padding: 15px;
}
form .derecha {
  width: 50%;
}
form .izquierda {
  width: 50%;
}
form {
  width: 100%;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  font-size: 16px;
}
input {
  margin-bottom: 10px;
}
select {
  border-radius: 5px;
  border: 1px #d3d3d3 solid;
  padding-left: 10px;
  height: 35px;
  width: 95%;
  color: var(--negro);
  margin-bottom: 10px;
  font-size: 16px;
  background-color: white;
}
textarea {
  font-family: helvetica;
  border-radius: 5px;
  resize: none;
  border: 1px #d3d3d3 solid;
  background-color: white;
  padding: 10px;
  width: 95%;
  height: 230px;
  font-size: 16px;
}
button {
  font-size: 16px;
  width: 100%;
  padding: 10px;
  background-color: var(--rojo);
  color: white;
  border: 0;
  margin-top: 15px;
  border-radius: 8px;
  cursor: pointer;
}
#codigo {
  color: var(--rojo);
  font-weight: bold;
}
#seguridad {
  padding: 10px 5px 0px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
}
#seguridad img {
  display: inline-block;
}
#seguridad #security_code {
  max-width: 80px;
}
.cont_botones {
  max-width: 450px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.medio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  display: inline-block;
}
.amarillo {
  vertical-align: top;
  padding-top: 5px;
  display: inline-block;
}
footer {
  background-image: url(../images/fondo_footer.svg);
  background-size: cover;
}
footer article {
  max-width: 400px;
  padding: 20px;
}
.contenedor_abajo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
  padding: 20px 0px;
}
.copy {
  background-color: var(--azul2);
  color: white;
  text-align: center;
  padding: 3px;
  font-size: 14px;
}
.margen1 {
  padding: 0px;
}
.vinculos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.vinculos a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  color: var(--azul1);
  text-decoration: none;
  transition: all 0.3s linear;
}
.vinculos a:hover {
  text-decoration: underline;
  color: var(--azul2);
}
.vinculos article {
  max-width: 400px;
}
