body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url(../Img/Voucher.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Por defecto ocupa el ancho en pantallas grandes */
  height: 100vh; /* Ocupa el alto completo de la ventana */
}



/***********************************Titulo******************************/


.logo-container {
  position: fixed;
  width: 100%;
  justify-content: left;
  text-decoration: none;
  margin-top: 10px;
  z-index: 9999;
}

.logo {
  width: 350px;
  max-width: 350px;

}

.company-name {
  font-size: 1.8em;
  color: #1B75BC;
}

@media (max-width: 800px) {
  .logo-container {
    text-align: center;
  }
  .logo {
    width: 90%;
  }
}

/***********Menú*************/

.navbar{
  width: 80%;
  height: 60px;
  position: fixed;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px solid #0D1B2A;
  border-radius: 20px;
  margin: 50px 10% 10px;
  z-index: 9999;
}

.navbar ul{
  display: flex;
  width: 500px;
  gap: 50px;
  padding: 0px;
}

.navbar ul li {
  position: relative;
  list-style: none;
  width: 60px;
  height: 60px;
  z-index: 1;
}

.navbar ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 40px;
  height: 100%;
  text-align: center;
  font-weight: 500;
  padding: 0px 10px;
  text-decoration: none;
  
}

.navbar ul li a .Icon{
  position: relative;
  display: block;
  line-height: 75px;
  font-size: 2em;
  text-align: center;
  transition: 0.5s;
  color: #0D1B2A;
  text-decoration: none;
}

.navbar ul li.active a .Icon{
  transform: translateY(-45px);
}

.navbar ul li a .Text {
  position: absolute;
  color: #0D1B2A;
  font-weight: 0.75em;
  letter-spacing: 0.05em;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(5px);
}

.navbar ul li.active a .Text{
  opacity: 1;
}

.Indicador{
  position: absolute;
  top: -45px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #0D1B2A;
  transition: 0.5s;
}

.navbar ul li:nth-child(1).active ~ .Indicador{
  transform: translateX(calc((60px + 50px) * 0));
}

.navbar ul li:nth-child(2).active ~ .Indicador{
  transform: translateX(calc((60px + 50px) * 1));
}

.navbar ul li:nth-child(3).active ~ .Indicador{
  transform: translateX(calc((60px + 50px) * 2));
}

.navbar ul li:nth-child(4).active ~ .Indicador{
  transform: translateX(calc((60px + 50px) * 3));
}

.navbar ul li:nth-child(5).active ~ .Indicador{
  transform: translateX(calc((60px + 50px) * 4));
}

@media (max-width: 800px) {
  .navbar{
    width: 95%;
    height: 60px;/**/
    border: 10px solid #0D1B2A;/**/
    margin: 80px 0px 10px;/**/
  }

  .navbar ul{
    width: 330px;
    gap: 20px;
    padding: 0px;
  }

  .navbar ul li {
    width: 50px;
    height: 50px;
  }

  .navbar ul li:nth-child(1).active ~ .Indicador{
    transform: translateX(calc((50px + 20px) * 0));
  }
  
  .navbar ul li:nth-child(2).active ~ .Indicador{
    transform: translateX(calc((50px + 20px) * 1));
  }
  
  .navbar ul li:nth-child(3).active ~ .Indicador{
    transform: translateX(calc((50px + 20px) * 2));
  }
  
  .navbar ul li:nth-child(4).active ~ .Indicador{
    transform: translateX(calc((50px + 20px) * 3));
  }
  
  .navbar ul li:nth-child(5).active ~ .Indicador{
    transform: translateX(calc((50px + 20px) * 4));
  }
}

/***********************Secciones**************************/
.sections-wrapper {
  display: flex;
  width: 100%;
  min-width: 100vw;
  transition: transform 1.5s ease;
}

.section {
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: start;
}

.section.activesec {
  display: flex;
  flex-direction: column;
}

.content-section{
  width: 100%;
  margin-top: 80px;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  scrollbar-width: none;
  align-items: center;
}

@media (max-width: 800px) {
  .content-section{
    padding: 15% 0px 50px;
  }
}

/********************************************************Inicio**************************************/

.currenttime {
  width: calc(100% - 40px);
  min-height: fit-content;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
  font-weight: 800;
  background-color: #000246dc;
  border-radius: 10px;
  color: #eff1ff;
  text-align: center;
  overflow-x: scroll;
  scrollbar-width: none;
}

.currenttime p {
  width: max-content;
  margin: 0px;
  padding: 3px 10px;
}

.bienvenida{
  display: flex;
}

.ToolsClimayConvers{
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.content-clima {
  width: 100%;
  height: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  padding: 10px;
  justify-content: start;
  overflow-y: scroll;
  scrollbar-width: none;
}

.weather-widget {
  background-color: transparent;
  border-radius: 8px;
  text-align: center;
  max-width: 250px; 
  box-shadow: none;
}

.weather-widget h2 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.weather-widget .temp {
  font-size: 20px;
  font-weight: bold;
  color: #3b9bfc;
}

.weather-widget .temp-range {
  font-size: 10px;
  color: #555;
  margin-top: 5px;
}

.weather-widget .weather-description {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}

.weather-widget .weather-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: rgba(0, 98, 255, 0.27);
  border-radius: 50%;
}

.weather-widget i {
  color: #3b9bfc;
}

#currency-converter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin: 10px 0px;
  padding: 10px 10px;
  gap: 10px;
  background-color: #000246dc;
  border-radius: 10px;

}

#currency-converter div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#currency-converter label {
  font-weight: bold;
  color: #ffffff;
}

#currency-converter p {
  padding: 0px;
  margin: 0px;
  color: #ffffff;
}

#currency-converter input {
  width: 60%;
  padding: 5px;
  font-size: 16px;
  text-align: right;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.welcome-message {
  width: calc(100% - 20px);
  height: fit-content;
  background: linear-gradient(180deg, #ffffff2e, #8fc7ff3a);
  color: #0D1B2A;
  text-align: center;
  padding: 0px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

.welcome-message img{
  width: 20%;
  min-width: 250px;
}

.welcome-message h1 {
  font-size: 30px;
  color: #144A73;
  margin-bottom: 5px;
  font-weight: bold;
}

.welcome-message h2 {
  font-size: 20px;
  color: #1B75BC;
  margin-bottom: 10px;
  font-weight: 400;
}

.welcome-message p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.welcome-message .cta-link {
  color: #144A73;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #144A73;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.welcome-message .cta-link:hover {
  color: #1B75BC;
  border-color: #1B75BC;
}



@media (max-width: 800px) {
  .currenttime{
    width: 100%;
    justify-content: flex-start;
    margin: 20px 0px 10px;
  }

  .bienvenida{
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .welcome-message {
    flex-direction: column;
    align-items: center;
  }

  .ToolsClimayConvers {
    width: 100%;
    flex-direction: row; 
    overflow-x: scroll;
    position: relative;
    justify-content: flex-start;
  }

  .content-clima {
    height: 100%;
    display: flex;
    flex-direction: row;
  }

  #currency-converter label {
    font-size: 15px;
  }
  
  #currency-converter p {
    font-size: 15px;
  }
  
  #currency-converter input {
    font-size: 12px;
  }
}

/****************************************************************Seccion Nosotros***************/

#historia, #mision, #vision, #valores, #equipo, #innovacion {
  background-color: #f5f5f586; 
  padding: 15px 0px 0px;
}

#acerca .container {
  width: 90%;
  margin: 0 auto; 
}

#acerca .section-title {
  font-size: 30px;
  color: #1B75BC; 
  text-align: center;
  margin-bottom: 10px;
}

#acerca .section-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px; 
}

#acerca .section-text {
  text-align: center;
}

#acerca .values-list {
  list-style: none;
  padding-left: 0;
}

#acerca .value-item {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

#acerca .value-item strong {
  color: #1B75BC; 
  font-weight: bold;
}


#acerca .team-member {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: center;
}

#acerca .member-info {
  text-align: left;
  width: 70%;
}

#acerca .member-info h3 {
  font-size: 1.5rem;
  color: #1B75BC;
  margin-bottom: 10px;
  text-align: center;
}

#acerca .position {
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

#acerca .description {
  width: 100%;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

#acerca .member-photo {
  width: 30%;
  display: flex;
  justify-content: center;
}

#acerca .circle-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #1B75BC;
  object-fit: cover;
}

@media (max-width: 800px) {
  #acerca .member-info {
    width: 100%;
  }
  #Fabian-member {
    display: flex;
    flex-direction: column-reverse;
  }
  #Camila-member{
    display: flex;
    flex-direction: column;
  }
}

/**************************************Portafolio*************************************/

.company-description {
  text-align: center;
  margin: 40px 10%;
}

.company-description h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.company-description p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.booking-steps {
  background-color: #f1f1f1aa;
  padding: 20px 0;
}

.booking-steps h3 {
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 10px;
}

.booking-steps .step {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
}

.booking-steps img{
  width: 100%;
  cursor: pointer;
}

.booking-steps .step-item {
  width: calc(33% - 70px);
  margin: 15px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.booking-steps h4 {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #003366; /* Azul oscuro como fondo */
  color: #ffffff; /* Texto blanco */
  padding: 20px 30px;
  font-size: 1.1em;
  border-radius: 20px;
  text-decoration: none;
  width: fit-content;
  box-sizing: border-box;
  margin-top: 30px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #005599;
  transform: scale(1.05);
}

.cta-button p {
  margin: 0;
  padding: 5px 0;
  font-weight: 600;
}


.modalImg {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 20, 0.7);
  justify-content: center;
  align-items: center;
}

.modalImg-content {
  max-width: 60%;
  max-height: 60%; 
  margin: auto;
  display: block;
  background-color: white;
  border-radius: 5px;
}

@media (max-width: 800px) {
  .company-description {
    margin: 10px 0px;
  }
  .booking-steps .step {
    display: flex;
    flex-direction: column;
  }
  .booking-steps .step-item {
    width: 80%;
    margin: 15px;
    padding: 20px;
  }
  .modalImg-content {
    max-width: 90%;
    max-height: 60%;
  }
}


/****************************************Contacto***************************************/

.contact-container {
  background-color: rgba(255, 255, 255, 0.456);
  width: 50%;
  padding: 10px 5%;
  margin: 5% auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
  text-align: center;
  color: #333;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group-par {
  display: flex;
  gap: 5%;
  justify-content: space-between;
}

.contact-container label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.contact-container input, .contact-container textarea {
  width: 100%;
  padding: 3px;
  font-size: 14px;
  border: 2px solid #003366;  /* Azul oscuro para los bordes */
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-container input:focus, .contact-container textarea:focus {
  border-color: #005a99;  /* Azul más claro cuando el campo está enfocado */
}

.contact-container textarea {
  resize: vertical;
}

.contact-container button.submit-btn {
  background-color: #003366; /* Azul oscuro */
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-container button.submit-btn:hover {
  background-color: #005a99; /* Cambio de color al pasar el ratón */
}

@media (max-width: 800px) {
  .contact-container {
    width: 90%;
  }
}











/*******************************Login************************************/

.login-container {
  position: fixed;
  top: 20%;
  left: 120%;
  transition: left 0.5s ease;
  width: 100%;
  max-width: 200px;
  background-color: #1B263B;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2); 
  display: flex;
  flex-direction: column;
}

.login-container.show {
  left: 80%; 
  transform: translateX(-80%);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.close-btn:hover {
  color: #bc1b1b;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.login-form label {
  color: #ffffff; 
  font-weight: bold;
}

.login-form input {
  padding: 5px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.forgot-password {
  background-color: transparent;
  color: #1B75BC;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: right;
  margin-bottom: 1rem;
  cursor: pointer;
}

.forgot-password:hover {
  color: #038df7;
}

#Login{
  background-color: #1B75BC;
  color: white;
}

.login-form button {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#Login:hover {
  background-color: #26a0fd;
}

#error-sesion{
display: none;
}

#error-sesion p {
  color: red;
  padding: 0px;
}

@media (max-width: 800px) {
  .login-container.show {
    top: 25%;
  }
}

/******************** Modal ******************/

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.7); 
}

.modal-content {
  background-color: #1B263B;
  margin: 0px;
  padding: 30px;
  border-radius: 10px; 
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5); 
  width: 50%;
  max-width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content h2 {
  color: #1B75BC; 
  text-align: center;
  font-size: 1.4em;
  margin: 0px 0px 20px 0px;
}

.modal-content p, .modal-content li {
  color: white; 
}

.modal-content h3 {
  color: #aad9fd;
  margin-bottom: 8px;
  font-size: 1em;
  text-align: center;
}

.Container-boton-reset {
  text-align: center;
}

#submitInitial{
  background-color: #0D1B2A;
  color: #038df7;
  padding: 0.5rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#submitInitial:hover {
  background-color: #005ca2;
}

#closeModal{
  padding: 0.5rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


#codeInputs{
  display: flex;
  gap: 20px;
}

#codeInputs input {
  width: calc(50% - 20px) !important;
  aspect-ratio: 1 / 1;
  font-size: unset;
  align-items: center;
  text-align: center;
}

#initial-form input,
#reset-code-form input {
  width: calc(100% - 5px);
  padding: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  color: #000;
}

.reset-password-requirements {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ffffff;
}

.reset-password-requirements p {
  display: flex;
  align-items: center;
  margin: 0px 0px 5px 5px;
  list-style-type: none;
}

.reset-password-requirements i {
  margin-right: 5px;
  font-size: 18px; 
}

.ri-checkbox-blank-circle-fill {
  color: #ff0000;
}

.ri-checkbox-circle-fill {
  color: #00bd00;
}


#codeInputs button {
  width: 50%;
  padding: 8px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: white; /* Texto blanco */
  background-color: #1B75BC; /* Color de fondo azul claro */
  transition: background-color 0.3s; /* Transición suave para hover */
  margin-bottom: 15px; /* Espacio entre botones */
}

#codeInputs button:hover {
  background-color: #144a73; /* Azul más oscuro en hover */
}

#closeModal,
#cancelReset {
  background-color: #740000;
  color: #f79e03;
}

#closeModal:hover,
#cancelReset:hover {
  background-color: #ff0400;
}

/***************************Footer*************************/

footer {
  width: 100%;
  position: fixed;
  bottom: 0px;
  text-align: center;
  padding: 20px;
  background-color: #0D1B2A;
  color: #fff;
  flex-shrink: 0;
  height: fit-content;
  padding: 0px;
}

