/* CSS para el diseño responsivo */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
}
.inicio {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 20px;
  background-color: #006A8E;
  height: 80%;
  /*margin-top: 10%;*/

  
}
.inicio img{
  width: 84%;
  /*margin-left: 30%;
  margin-top: 12%; */
}

.box {
  padding: 20px;
  
}
.styled-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.styled-list li {
  font-size: 18px;
  color: #333;
  background: #D1E7F3;
  padding: 15px;
  margin: 10px 0;
  border-left: 5px solid #007BFF; /* Color de énfasis */
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 4%;
}

.styled-list li i {
  color: #007BFF;
  font-size: 20px;
  margin-right: 10px;
}
.resources-title{
  text-align: center;
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-top: 0%;
  margin-bottom: 1%;
  font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
  font-style: italic; /* Añadir estilo italic */
  font-weight: 900; /* 700 es el peso para Bold */
}
.inicio-title{
  text-align: center;
  font-size: 2.5rem;
  color: #D1E7F3;
  margin-top: 0%;
  margin-bottom: 1%;
  font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
  /*font-style: italic;  Añadir estilo italic */
  font-weight: 900; /* 700 es el peso para Bold */
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 20%;
}

.logo {
  max-height: 60px;
  margin-right: -6%;
}


nav {
flex: 1;
display: flex;
/*justify-content: center;*/
margin-left: 10%;
gap: 20px;
font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
/*font-style: italic; /* Añadir estilo italic */
}

nav a {
text-decoration: none;
color: black;
font-weight: bold;
padding: 10px 15px;
transition: color 0.3s ease, background-color 0.3s ease;
}

nav a.active {
  border: 2px solid white; /* Contorno azul */
  color: #006A8E; /* Color del texto */
  border-radius: 5px; /* Bordes redondeados */
  background-color: transparent; /* Sin fondo */
  padding: 5px 10px; /* Espaciado para que se vea mejor */
}

.translate-button {
margin-left: auto;
background-color: #007bff;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}

.translate-button:hover {
background-color: #0056b3;
}
.skiptranslate.goog-te-gadget {
            display: none !important;
}
.translate-container {
    /* background: #f4f4f4; */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
   /* margin-left: 24%;*/
}

#translate-text {
  font-size: 20px;
  margin-bottom: 15px;
  color: #D1E7F3;
}

.flags img {
  width: 50px;
  height: 35px;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.flags {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }

  .flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: white;
  }

  .flag-item img {
    cursor: pointer;
    width: 80px;
    height: auto;
    margin-bottom: 5px;
  }

.flags img:hover {
  transform: scale(1.1);
}
.goog-te-gadget{
  margin-left: 47% !important;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd{
  display: none !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd{
  display: none !important;
}

section { 
  padding: 50px 20px;
  /*height: 100vh;*/
  border-bottom: 1px solid #ddd;
  padding-top: 80px; /* Espacio para evitar que el menú tape el contenido */
}

/* Responsividad */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  #translate-button {
    margin-top: 10px;
  }
}
/*Slide*/
.swiper-button-prev:after,.swiper-button-next:after{
  display: none  !important;
}

.slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
}

.dots {
  text-align: center;
  padding: 10px 0;
}

.dot {
  display: inline-block;
  margin: 0 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: gray;
  cursor: pointer;
}

.dot.active {
  background-color: black;
}
  /* Estilo del slider */
/*
  .slider-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 50px auto;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}
  */

/* Botones de navegación */
/*.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.control-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s;
}

.control-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}*/

/* Botón de pausa/reanudar */
.pause-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.pause-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
/*PRECIOS*/
.planes-title{
    text-align: left;
    font-size: 2.5rem;
    color: #1a73e8;
    font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
    /*font-style: italic; /* Añadir estilo italic */
    font-weight: 900; /* 700 es el peso para Bold */
}   
.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.pricing-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.pricing-card.recommended {
  border: 2px solid #0073e6;
}

.recommended::before {
  content: "Recomendado";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #0073e6;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: bold;
  color: #0073e6;
  margin-bottom: 5px;
}

.pricing-discount {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
}

.pricing-savings {
  font-size: 0.9rem;
  color: #28a745;
  margin-bottom: 20px;
}

.pricing-button {
  display: inline-block;
  background-color: #0073e6;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pricing-button:hover {
  background-color: #005bb5;
}

.pricing-features {
  text-align: left;
  margin-top: 20px;
}

.pricing-features li {
  list-style: none;
  margin: 10px 0;
}

.pricing-features li::before {
  content: "✔";
  color: #28a745;
  margin-right: 10px;
}
/*BLOG*/

.blog-section {
  padding: 40px 20px;
  /*max-width: 1200px;*/
  margin-top: 10%;
  background-color: #A6A6A6;
}

.blog-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #FFF;
  font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
  font-style: italic; /* Añadir estilo italic */
  font-weight: 900; /* 700 es el peso para Bold */
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background-color: #A6A6A6;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title-card {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #006A8E;
  font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
}

.blog-text {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
  font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #006A8E !important;
  --bs-btn-border-color: #006A8E !important;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #006A8E !important;
  --bs-btn-hover-border-color: #006A8E !important;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #006A8E !important;
  --bs-btn-active-border-color: #006A8E !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #006A8E !important;
  --bs-btn-disabled-border-color: #006A8E !important;
}
.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #A3424C !important;
  --bs-btn-border-color: #A3424C !important;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #A3424C !important;
  --bs-btn-hover-border-color: #A3424C !important;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #A3424C !important;
  --bs-btn-active-border-color: #A3424C !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #A3424C !important;
  --bs-btn-disabled-border-color: #A3424C !important;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  font-size: 0.9rem;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.read-more:hover {
  background-color: #0056b3;
}
/*LOGIN*/

.login-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a73e8;
  margin-bottom: -11%;
}


.parent-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Altura completa de la ventana */
}

.login-container {
width: 300px;
padding: 20px;
background-color: #A3424C; /* Fondo del formulario */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
border-radius: 10px; /* Bordes redondeados */
text-align: center; /* Alineación de contenido */
}



.login-header {
  margin-bottom: 20px;
}

.login-header h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 5px;
}

.login-header p {
  font-size: 0.9rem;
  color: #555;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form input {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.login-form input:focus {
  border-color: #6a11cb;
  outline: none;
}

.login-button {
  padding: 12px;
  margin: 10px 0;
  background: #D1E7F3;
  color: #006A8E;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}



.login-footer {
  margin-top: 15px;
  font-size: 0.9rem;
}
.login-footer p {
 color:#FFF;
}


.login-footer a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s;
}

.login-footer a:hover {
  color: #006A8E;
}

.login-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.login-social button {
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.login-social button:hover {
  background: #e0e0e0;
}

.login-social img {
  width: 20px;
  height: 20px;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex
;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/*ACERCA DE */
.acerca-title{
  text-align: left;
  font-size: 2.5rem;
  color: #006A8E;
  margin-top: 0%;
  margin-bottom: 1%;
  font-family: 'Lato', sans-serif; /* Agregamos la fuente Lato */
  font-style: italic; /* Añadir estilo italic */
  font-weight: 900; /* 700 es el peso para Bold */
}
.about-section {
  width: 80%;
  margin: 20px auto;
  height: 130vh;
}

.about-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-item img {
  width: 50%;
  object-fit: cover;
  height: 100%;
}

.about-item .about-text {
  padding: 20px;
  width: 50%;
}

.about-item:nth-child(even) {
  flex-direction: row-reverse;
}

.h2-about {
  font-size: 1.5em;
  color: #006A8E;
  margin-bottom: 10px;
}

.p-about {
  font-size: 1em;
  color: #006A8E;
  line-height: 1.6;
}
.h2-about-2 {
  font-size: 1.5em;
  color: #7B2C3A;
  margin-bottom: 10px;
}

.p-about-2 {
  font-size: 1em;
  color: #7B2C3A;
  line-height: 1.6;
}

/*RECURSOS*/


.resources-section {
  padding: 40px 20px;
  /*max-width: 1200px;*/
  margin: auto;
  /*background-color: #D46B68;*/
  height: 70%;
}

.resources-section h2 {
  text-align: center;
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.resources-section p {
  text-align: center;
  font-size: 1.1em;
  /*color: #FFF;*/
  margin-bottom: 40px;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resource-card {
  /*background: #D46B68;*/
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.resource-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #006A8E;
}

.resource-card p {
  font-size: 1em;
  /*color: #FFF;*/
  line-height: 1.5;
}

.resource-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.resource-card a:hover {
  background-color: #155bb5;
}
/*Traductor*/
iframe#\:2\.container {
  display: none;
}
.goog-te-gadget-simple {
  background-color: #FFF;
   border-left: 0px solid #FFF !important; 
   border-top: 0px solid #FFF !important; 
   border-bottom: 0px solid #FFF !important; 
   border-right: 0px solid #FFF !important; 
  font-size: 10pt;
  display: inline-block;
  padding-top: 1px;
  padding-bottom: 2px;
  cursor: pointer;
}
a.VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  display: none; /* Oculta el texto */
}

a.VIpgJd-ZVi9od-xl07Ob-lTBxed::before {
  content: url('/img/languages_resized.png');
  display: inline-block;
  width: 20px; /* Ajusta el tamaño si es necesario */
  height: 20px;
  vertical-align: middle;
}
#translate-button{
  /*background-color: #343434 !important;*/
  margin-right: -4% !important;
  border: none !important; /* Elimina el borde */
  outline: none !important; /* Elimina el contorno al hacer clic */
  margin-left: 4%;
}
iframe.skiptranslate{
  /*height: 25px !important;*/
}
#\:2\.container {
  height: 25px !important;  
}
/*BOTON CERRAR SESION*/

.logout-button {
background-color: #ff4d4d;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}

.logout-button:hover {
background-color: #e60000;
}
.login-form select {
padding: 12px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s;
background-color: white;
appearance: none; /* Oculta el icono por defecto en navegadores */
}

.login-form select:focus {
border-color: #6a11cb;
outline: none;
}
section#register{ 
padding: 50px 20px;
height: 100vh;
/*border-bottom: 1px solid #ddd;
padding-top: 80px; /* Espacio para evitar que el menú tape el contenido */
}
.register-title {
text-align: center;
font-size: 2.5rem;
color: #1a73e8;
}
.swal2-popup.no-shadow {
    box-shadow: none !important;
  }
/*Metodo de pago*/

/* Contenedor principal */
.body-payment {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
display: flex;  
justify-content: center;
align-items: center;
height: 100vh;
}

.payment-carousel {
max-width: 800px;
padding: 20px;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
margin-top: 14%;
}

/* Título */
.carousel-title {
margin-bottom: 20px;
font-size: 24px;
color: #555;
}

/* Contenedor del carrusel */
.carousel-container {
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

/* Elementos del carrusel */
.carousel-items {
display: flex;
transition: transform 0.5s ease-in-out;
}

.carousel-item {
flex: 0 0 200px;
margin: 0 10px;
text-align: center;
}

.carousel-item img {
width: 100px;
height: auto;
margin-bottom: 10px;
transition: transform 0.3s;
}

.carousel-item p {
font-size: 16px;
color: #666;
}

.carousel-item:hover img {
transform: scale(1.1);
}

/* Botones del carrusel */
.carousel-btn {
background-color: #007bff;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 18px;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s, transform 0.3s;
}

.carousel-btn:hover {
background-color: #0056b3;
transform: scale(1.1);
}

.carousel-btn:disabled {
background-color: #ccc;
cursor: not-allowed;
}

/* Botón de Pagar */
.pay-btn {
margin-top: 20px;
padding: 12px 20px;
background-color: #28a745;
color: white;
font-size: 18px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
}

.pay-btn:hover {
background-color: #218838;
transform: scale(1.05);
}

/*footer*/
#footer {
  display: flex; /* Activa Flexbox */
  justify-content: space-between; /* Espaciado entre los div */
  align-items: center; /* Alinear verticalmente */
  background-color: #f4f4f4;
  padding: 20px;
  height: 100%;
}

#footer.box {
  width: 20%; /* Ajusta el tamaño de cada caja */
  padding: 20px;
  background-color: #ddd;
  text-align: center;
  border-radius: 5px;
}
/*Testimonios*/

.testimonios {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.testimonio-content {
  display: flex;
  width: 100%;
  max-width: 1000px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0; /* este margen controla espacio arriba/abajo */
}

.texto_testimonio {
  flex: 1;
  padding: 20px;
}

.texto_testimonio h2 {
  font-size: 24px;
  color: #333;
  margin-top: 0;
}

.texto_testimonio p {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

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

.video img{
  width: 84%;
}

.video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Estilo de los botones del slider */

/*Pasos*/
.proceso-contenedor {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.pasos {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.titulo-pasos {
  position: absolute;
  font-size: 2.8rem;
  font-weight: 500;
  color: #004a6b;
  margin-bottom: 10px;
  line-height: 1.2;
  top: 58%;
  left: 23%;
}

.imagen-pasos {
  width: 60%;
  /*max-width: 700px;*/
  height: auto;
  display: block;
  margin: 0 auto;
}

.textos-pasos {
  position: relative;
  width: 100%;
  background-image: url('Planes_LexKeeper_Proceso.png'); 
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1365 / 768;
}
/* Texto común */
.texto {
  position: absolute;
  color: white;
  font-weight: bold;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* Posicionamientos individuales - ajusta si usas una imagen distinta en tamaño */
.texto1 { top: 57%; left: 7%; }
.texto2 { top: 57%; left: 24%; }
.texto3 { top: 55%; left: 39%; }
.texto4 { top: 55%; left: 55%;  } /* azul claro */
.texto5 { top: 57%; left: 70%; }

.paso {
  font-weight: bold;
  font-size: 16px;
  color: #444;
  flex: 0 0 141px; /* mínimo 200px, se adaptan automáticamente */
  text-align: center;
}



/* Header fijo */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: auto;
}

/* Logo */
.fixed-header .logo img {
  max-height: 60px;
  height: auto;
  width: auto;
}

/* Links del menú */
.fixed-header nav {
  display: flex;
  gap: 20px;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Botón toggle (oculto en desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  #main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  #main-nav.show {
    display: flex;
  }

  #main-nav a {
    padding: 10px 0;
    border-top: 1px solid #eee;
  }
}