/* Reset basico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans" , sans-serif;
  font-weight: 300;
  background: linear-gradient(to bottom , #E00A2E);
  line-height: 1.7;
  min-height: 100vh;
}


/* === Estilos base del navbar === */
.navbar {
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 35px;
  margin: 0px 0px 0px 25px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #6e625a;
  font-weight: 500;
  font-size: 0.8rem;
  position: relative;
}



.phone {
  color: #6e625a;
  font-weight: 500;
  white-space: nowrap;
  margin: 0px 25px 0px 0px;
  font-size: 0.9rem;
}

/* Botón hamburguesa*/
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    width: 15%;
    display: block;
    color: #E00A2E;
    margin:0;
  }

  .nav-links,
  .phone {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-container.active .nav-links,
  .navbar-container.active .phone {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .navbar-container {
    align-items: flex-start;
  }

  
  .nav-logo {
    margin: 0;
  }
}




/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  background-image: url('img/young-woman-copacabana-promenade-rio-de-janeiro-brazil.jpg');
  background-size: cover;           
  background-position: center 75%; 
  background-repeat: no-repeat;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 20px;

  
  background-attachment: scroll;  
}


@media (max-width: 768px) {
  .hero {
    min-height: 450px;             
    background-position: center 75%; /
    padding: 30px 15px;
  }
}


.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.2); 
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #000;
  color: white;
  
}

.hero p {
  font-size: 1.5rem;
  text-shadow: 0 0 7px #000;
  color: white;
}


/* FORMULARIO */
#formularioFechas {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 20px auto 80px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  gap: 20px;
}

.hora {
  font-size: 0.7em;  /* Reduce el tamaño de los horarios */
  color: #5C19AE;       /* Opcional: cambiar color si querés resaltar */
}

/* Agrupa pares de label+input */
#formularioFechas label {
  font-weight: bold;
  color: #5C19AE;
}

#formularioFechas input {
  width: 100%;
  padding: 0.6em;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: "Work Sans" , sans-serif;
}

/* Vista escritorio: label+input lado a lado */
@media (min-width: 768px) {
  #formularioFechas {
    flex-direction: column; 
  }

  /* Creamos fila solo para los campos */
  #formularioFechas label[for="fecha_ida"],
  #formularioFechas #fecha_ida,
  #formularioFechas label[for="fecha_regreso"],
  #formularioFechas #fecha_regreso {
    display: block;
  }

  /* Contenedor visual para inputs lado a lado */
  #formularioFechas .fila-fechas {
    display: flex;
    gap: 20px;
  }

  #formularioFechas .fila-fechas > div {
    flex: 1;
  }
}


input[type="text"]::placeholder {
  color: #aaa;
  font-style: italic;
}

button {

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
  background-color: #c00b29; 
  transform: scale(1.02);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

input, select {
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  text-align: center;
}

input:focus, select:focus {
  border-color: #E00A2E;
  outline: none;
}

button {
  margin: 30px auto 0 auto; 
  max-width: 45%;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: #5C19AE;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: block; 
}

button:hover {
  background-color: #5C19AE;
}

/* MEDIA QUERIES PARA RESPONSIVE */

/* Tablets */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Moviles */
@media (max-width: 600px) {
  .hero {
    padding: 30px 15px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .formulario {
    padding: 20px;
    margin: 20px 15px;
  }
}

input[type="text"]:hover {
  transform: scale(1.03);
  box-shadow: 0 0 8px rgba(224, 10, 46, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer {
  background-color: #FFFFFF;
  padding: 10px;
  color: #e4002b;
  margin-top: 0px;
  padding:30px 0px 30px 0px;
}

.footer-container {
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}

.logo-center {
  flex: 1;

}

.footer-logo {
  height: 40px;
  margin-left: 80px;
  
}

.footer-text {
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  flex: 1;
  min-width: 250px;
  margin-right:80px;
  
}

.footer-text a {
  color: #e4002b;
  text-decoration: underline;
  
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-botton: 20px;
  }

  .footer-logo {
    margin-left: 0; /* eliminar margen izquierdo en móvil */
  }

  .footer-text {
    text-align: center;
    margin-top: 20px;
    margin-right: 0; /* eliminar margen derecho en móvil */
    
  }
}

.presentacion {
  text-align: center;
  padding: 40px 20px 10px;
  color: #E00A2E;
}

.presentacion h1 {
  font-size: 2.8rem;
  color: white;
  
  margin-bottom: 10px;
}

.presentacion p {
  font-size: 1.2rem;
  color: white;
  
}

.fila-pasajero {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.fila-pasajero input {
  flex: 1;
  min-width: 200px;
}

.flatpickr-calendar {
  font-size: 1.1rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 10px;
  z-index: 9999; 
}

.flatpickr-day {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
  margin: 3px;
}

.flatpickr-day:hover {
  background-color: #E00A2E;
  color: white;
  cursor: pointer;
}

.flatpickr-day.selected {
  background-color: #E00A2E;
  color: white;
}

.contacto input {
  margin-bottom: 15px;
  display: block;
}

.checkboxes {
  display: flex;
  flex-direction: column; /* apilar botón y luego checkboxes */
  align-items: center;
  gap: 1.5em;
  margin-bottom: 1em;
  
}

.link-group {
  display: flex;
  flex-direction: column; /* 🔹 apilar elementos */
  align-items: center;    /* 🔹 centrar horizontalmente */
  margin-top: 50px;
}

.checkbox-group {
  display: flex;
  flex-direction: row; /* los checkboxes en fila */
  gap: 2em;
  align-items: center;
}

.checkboxes label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
  font-size: 0.7rem;
}

/* estilo circular para el checkbox */
.checkboxes input[type="checkbox"] {
  appearance: none;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #5C19AE;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background-color: white;
  transition: background-color 0.2s ease;
}

.checkboxes input[type="checkbox"]:checked {
  background-color: #5C19AE;
}

.checkboxes input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.checkboxes a {
  color: #5C19AE;
  text-decoration: underline;
}

/* estilo botón violeta */
.btn-violeta {
  background-color: #5C19AE;
  color: white !important;
  padding: 5px 20px 5px 20px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: 400 !important;
  font-size: 18px;
  transition: background-color 0.2s ease;
}

.btn-violeta:hover {
  background-color: #4b148b;
}

.link-group h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: withe;
  margin-bottom: 1em;
  text-align: center;
}


.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6); /* fondo oscuro translúcido */
  animation: fadeIn 0.3s ease; /* animación suave */
}

/* Contenido del modal */
.modal-contenido {
  background-color: #fff;
  margin: 10% auto;
  padding: 10px;
  border-radius: 16px;
  width: 80%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  animation: slideDown 0.3s ease;
  position: relative;
}

/* Botón cerrar (X) */
.cerrar {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #666;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cerrar:hover {
  color: #000;
}

/* Imagen responsive dentro del modal */
.modal-contenido img {
  max-width: 100%;   
  height: auto;      
  border-radius: 8px; 
  display: block;
}



/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}



input, select {
  padding: 10px;
}

button {
  padding: 5px 20px 5px 20px;
}

label[for="fecha_ida"] {
  font-size: 2rem; 
  font-weight: bold; 
  color: #5C19AE; 
}

label[for="fecha_regreso"] {
  font-size: 2rem; 
  font-weight: bold; 
  color: #5C19AE; 
}

/* Texto superpuesto en el banner */
.presentacion-banner {
  text-align: center;
  z-index: 2;
  position: relative;
  color: white;
}

.presentacion-banner h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

.presentacion-banner p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  background-color: #5C19AEC8; 
  padding: 15px 20px; 
  border-radius: 25px; 
  display: inline-block; 
  font-weight: 500; 
}

@media (max-width: 600px) {
  .presentacion-banner h1 {
    font-size: 1.9rem; 
  }

  .presentacion-banner p {
    font-size: 1.1rem; 
  }
}

/* Logos debajo del banner */

.logo-banner {
  width: 150px;
  height: auto;
  transition: transform 0.15s ease;
  
}

.carousel {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  margin: 0 auto; 
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}



@media (max-width: 600px) {
  .logo-banner {
    width: 100px;
  }
}

.logos-section {
  background-color: whitesmoke;
  padding: 5px 2px;
  margin-top:80px;
}

/* texto dentro del form arriba de las fechas*/

.texto-promocion {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 55px;
  color: #E00A2E;
  font-family: inherit; 
}

@media (max-width: 600px) {
  .texto-promocion {
    font-size: 1rem;
  }
}

.icono-avion {
  color: rgba(0, 0, 0, 0.789)2E; 
  font-size: 15px; 
}

.contenedores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

.contenedor {
  flex: 1 1 250px; /* Se adapta automáticamente */
  max-width: 300px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-top: 60px;
  font-size: 27px;
}

.contenedor:hover {
  transform: translateY(-5px);
}

.icon-container {
      display: flex;
      justify-content: space-evenly;
      align-items: flex-start;
      text-align: center;
      padding: 40px 20px;
      flex-wrap: wrap;
    }
    .icon-item {
      max-width: 220px;
      ;
    }
    .circle-icon {
      background-color: #f5f0fc;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
    }
    .circle-icon i {
      font-size: 45px;
      color: #5C19AE;
    }
    
    h3 {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 10px;
      color: #f5f0fc;
      line-height: 24px;
      
    }

    p {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 5px;
      color: #f5f0fc;
      line-height: 20px;
      text-decoration: none;
      
    
    }

@media (max-width: 768px) {
  .icon-container {
    flex-direction: column;     
    align-items: center;        
    padding: 20px 10px;
  }

  .icon-item {
    max-width: 100%;            
    margin-bottom: 30px;        
  }

  .circle-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .circle-icon i {
    font-size: 35px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
}

/*faq*/

.faq-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  
  margin: 0;
}

.faq-card {
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  padding: 30px;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fdfdff;
  margin: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.faq-card h3 {
  font-size: 1.8em;
  margin-bottom: 32px;
  color: #5C19AE;
  text-align: center;
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.faq-item {
  background: #f4f4f8;
  padding: 20px;
  border-radius: 10px;
}

.faq-question {
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.faq-answer {
  color: #555;
  margin: 0;
  
}


/* Responsive para tablets */
@media (max-width: 768px) {
  .faq-section {
    padding: 20px 10px;
    display: block; /* hace que el card ocupe todo el ancho */
  }

  .faq-card {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    margin: 60px 0px 90px 0px;
    box-sizing: border-box; /* el padding no aumenta el ancho total */
  }

  .faq-card h3 {
    font-size: 1.3em;
  }
}

/* Responsive para móviles */
@media (max-width: 480px) {
  .faq-section {
    padding: 15px 5px;
  }

  .faq-card {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    margin: 60px 0px 90px 0px;
  }

  .faq-card h3 {
    font-size: 1.2em;
  }

  .faq-question {
    font-size: 1em;
  }

  .faq-answer {
    font-size: 0.95em;
  }
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 999; /* siempre encima */
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

