html {
    box-sizing: border-box;
    font-family: "Lexend Exa", sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;  
    overflow-x: hidden;  
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
   margin: 0;
   padding: 0;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}

a{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    padding: 0;
}



/*header_inicio*/


.slider_header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider_imagenes {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider_slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 7s ease;
  z-index: 1;
}

.slider_slide.activo {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}

.slider_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 3;
  width: 90%;
  max-width: 800px;
}

.slider_titulo {
  font-size: 2.5rem;
  text-shadow: 0 0 10px #000000c0;
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerTitulo 1.5s ease forwards;
}

@keyframes aparecerTitulo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider_logo {
  height: 150px;
  filter: drop-shadow(0 0 25px #fff);
  margin: 1rem 0;
}

.slider_subtitulo {
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0 0 3px #000000;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInSub 1s ease forwards;
}

@keyframes fadeInSub {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider_botones a {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.slider_botones a:hover {
  background-color: rgba(255,255,255,0.3);
}

/*tarjetas
----------------------------
----------------------------
*/

.beneficios{
  padding-top: 50px;
}

.beneficios_p{
  padding: 30px 45px 0;
  width: 80%;
  margin: auto;
}

.beneficios_h2{
  text-align: center;
  font-size: 2rem;  
}

.beneficios_h2 em{
  color: #054c8f;  
}

.contenedor {
	max-width: 90%;
	margin:50px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.contenedor_tarjeta:hover .contenido_tarjeta {
	transform: perspective(500px) rotateY(180deg);
	-webkit-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
	box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
}

/*Si queremos podemos aplicar un efecto blur a nuestra imagen al girar*/

.contenido_tarjeta {
	width: 280px;
	height: 350px;
	margin: 40px 20px;
	position: relative;
	transition: all ease .5s;
	transform-style: preserve-3d;
	/* Nota:
		Establecemos que la imagen tendra una rotacion de 0grados al inicio porque si no
		ponemos esta propiedad nos da un poco de problemas en algunos navegadores al pasar el cursor.
	*/
	transform: perspective(500px) rotateY(0deg);
}

.contenido_tarjeta .frontal,
.contenido_tarjeta .trasera {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	transition: all ease .5s;
}

.contenido_tarjeta .frontal {
	display: block;
	background: #000;
  position: absolute;

	/* Podemos ocultar la imagen al da la vuelta si lo queremos */
	/*backface-visibility: hidden;*/
}

.img_frontal{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contenido_tarjeta_h3{
	text-align: center;
	backface-visibility: hidden;
	transition: 0.3s ease;
  position: absolute;
  top: 15px;
  color: #fff;
  text-shadow: 0 0 3px #000000;
}

.contenedor_tarjeta:hover .contenido_tarjeta_h3{
	opacity: 0;
	visibility: hidden;
}

.contenido_tarjeta .trasera {
	position: absolute;
	top: 0;
	padding: 20px;
	color: #fff;
	transform: perspective(500px) rotateY(180deg);
	backface-visibility: hidden;
	overflow: auto;
}

.contenedor_tarjeta .contenido_tarjeta .trasera{
	background: rgba(223,234,241,0.7);
	background: -moz-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(223,234,241,0.7)), color-stop(100%, rgba(15,99,144,1)));
	background: -webkit-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -o-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: -ms-linear-gradient(top, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	background: linear-gradient(to bottom, rgba(223,234,241,0.7) 0%, rgba(15,99,144,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenido_tarjeta .trasera .titulo {
	color: #fff;
	font-weight: normal;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
}

.contenido_tarjeta .trasera hr {
	height: 2px;
	background: #fff;
	border: none;
	margin-bottom: 20px;
	opacity: .5;
}

.contenido_tarjeta .trasera p {
	font-family: 'Open Sans', sans-serif;
	line-height: 22px;
	font-size: 14px;
}

@media screen and (max-width: 992px) { 
	.contenido_tarjeta .trasera {
		/*position: relative;*/
		backface-visibility:visible;
		transform: perspective(600px) rotateY(0deg);
	}

	.contenedor_tarjeta:hover .contenido_tarjeta {
		transform: perspective(600px) rotateY(0deg);	
	}

}

/*grid transformacion*/

.grid_transformacion{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  margin-top: 40px;
  padding: 0 30px;
  position: relative;
  gap: 30px;
}

.trasnformacion_item{
  position: relative;
  height: 300px;
}

.divImagenes{
    height: 80%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.imagenes{
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
}

.dos{
    clip-path: inset(0 75% 0 0);
    transition: 0.25s ease;
}

.button{
    width: 100%;
    cursor: pointer;
}

/*elegir*/

.elegir_orbital {
  padding: 60px 30px;
  text-align: center;
  background-color: #f5f9fb;
}

.elegir_orbital h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f6390;
}

.elegir_orbital .intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #333;
}

.elegir_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.elegir_item {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elegir_item i {
  font-size: 36px;
  color: #0f6390;
  margin-bottom: 15px;
}

.elegir_item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.elegir_item p {
  font-size: 15px;
  color: #555;
}

.elegir_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/*llamado a la accion*/ 

.cta_orbital {
  background-color: #0f0f0f;
  color: white;
  padding: 80px 30px;
  text-align: center;
  position: relative;
}

.cta_contenido h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0f90e0;
}

.cta_contenido p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ccc;
}

.cta_boton {
  display: inline-block;
  background-color: #0f90e0;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta_boton i {
  margin-right: 8px;
  font-size: 18px;
}

.cta_boton:hover {
  background-color: #0c7cc7;
}

.cta_redes {
  margin-top: 30px;
}

.cta_redes a {
  margin: 0 10px;
  font-size: 22px;
  color: #ccc;
  transition: color 0.3s ease;
}

.cta_redes a:hover {
  color: #0f90e0;
}

/*testimonios*/

.testimonios_orbital {
  padding: 80px 30px;
  background-color: #ececec;
  color: white;
  text-align: center;
}

.collection{
    display: flex;
    justify-content: center;
    align-items: center;
}
.collection .content{
    height: 18rem;
    width: 25rem;
    background-color: #1b1f2a;
    border: .2rem solid rgba(255,255,255,.1);
    border-radius: .7rem;
    border-bottom: .4rem solid #0099ff;
    border-top: .4rem solid #0099ff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: .2rem; */
}

.text-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonios_orbital h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #0f90e0;
}

.testimonio {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  min-width: 300px;
  max-width: 350px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-left: 4px solid #0f90e0;
}

.testimonio_header {
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}

.empresa {
  color: #999;
  font-size: 14px;
}

.estrellas {
  text-align: left;
  color: #f1c40f;
  font-size: 18px;
  margin-bottom: 5px;
}

.estrellas span {
  color: #888;
  font-size: 14px;
  margin-left: 5px;
}

.fecha {
  font-size: 13px;
  color: #888;
  text-align: left;
  margin-bottom: 10px;
}

.testimonio p {
  font-size: 15px;
  color: #ccc;
  text-align: left;
}

/*footer*/

.footer {
    background: #ffffff;
    padding: 20px 10px;
    border-top: 1px solid #e0e0e0;
    margin-top: 70px;
}

.footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_left, .footer_center, .footer_right {
    flex: 1;
    text-align: center;
    margin: 10px 0;
}

.footer_left {
    text-align: left;
}

.footer_right {
    text-align: right;
}

.footer_link {
    display: block;
    margin: 5px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.footer_link:hover {
    color: #0069d9;
}

.footer_socials {
    margin-top: 10px;
}

.footer_icon {
    margin: 0 5px;
}

.footer_icon img {
    width: 24px;
    height: 24px;
}

.footer_logo {
    max-width: 150px;
    height: auto;
}

/* Responsividad */
@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        text-align: center;
    }

    .footer_left, .footer_center, .footer_right {
        text-align: center;
    }
}


/* ===================================
   BOTONES FLOTANTES
=================================== */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
}

.floating-btn img {
    width: 55px;
    height: 55px;
    transition: transform .25s ease, filter .25s ease;
}

/* WhatsApp */

.floating-btn.whatsapp {
    background: transparent;
}

/* Facebook */

.floating-btn.facebook {
    background: transparent;
}

/* Hover */

.floating-btn img:hover {
    transform: translateY(-4px);
    filter: drop-shadow(5px 5px 4px #a0a0a0bb);
}

/* Modal */
.modal.hidden {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal_contenido {
  background-color: #111;
  padding: 30px;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
  color: #fff;
}

.modal_cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}


/*navbar*/

/*navbar*/

.navbar{
    width: 100%;
    height: 90px;
    position: sticky;
    top: 0;
    background: rgb(0,175,242);
    background: linear-gradient(90deg, rgb(3, 55, 118) 0%, rgb(3, 20, 87) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px 5px #080d5083;
    border-radius: 0 0 15% 15%;
    z-index: 1500;
}

.navbar_logo{
    display: block;
    height: 100%;
    padding: 5px 0;    
}

.navbar_img{
    height: 100%;
}

.navbar_links{
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff
}

.navbar_link{
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 100%;
    transition: 0.4s ;
}

.navbar_link:hover{
    background-color: #3c27d6;
    border-radius: 5px;
}

.navbar_linked{
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    font-weight: 600;
}

#ham{
    display: none;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 3px;
    border: none;
    position: absolute;
    right: 5%;
    padding: 0;
    cursor: pointer;
}

.navbar_ham-line{
    width: 100%;
    background-color: #fff;
    height: 5px;
    position: absolute;
    left: 0;
    border-radius: 2px;
}

.navbar_ham-line1{
    top: 0;
}

.navbar_ham-line2{
    top: 42%;
}

.navbar_ham-line3{
    bottom: 0;
}

@media screen and (max-width: 890px) {
    #ham{
        display: block;
    }

    .navbar_links{
        width: 70vw;
        position: absolute;
        height: 80vh;
        display: grid;
        right: 0;
        top: 100%;
        justify-content: space-evenly;
        background: rgb(0,175,242);
        background: linear-gradient(90deg, rgba(0,175,242,1) 0%, rgba(8,29,115,1) 100%);
        border-radius: 20px 0 0 25%;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .navbar_mostrar{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}