/*
Theme Name: Ikatu Viajes
Author: Jonathan Villegas
Description: Tema personalizado basado en HTML estático
Version: 1.0
*/



/* prueba para probar solución desbordamientos
.page-content.container {
    width: 100vw;
    max-width: none;
}
*/
/* Estilos generales */

:root {
  --primary: #4a6cf7;
  --primary-dark: #3a5bd9;
  --text: #333;
  --text-light: #666;
  --light-bg: #f8fafc;
  --border: #e2e8f0;

}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
 text-decoration: none;
}

body {
  font-family: 'Poppins', sans-serif;
  font-display: swap; /* Fuente temporal hasta cargar Poppins */	
  color: var(--text);
  line-height: 1.6;

  

}

.main-wrapper {
	display: flex;              
  flex-direction: column;
  min-height: 100vh;
	
}




.site-content {
  flex: 1 0 auto;
  display: block;
	
}

/*--------------HEADER-------------------------------------------*/

.header {
  display: flex;
  background-color: white;
  padding: 15px 5%;
  align-items: stretch;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}


/* Logo Moderno */
.header a.logo {
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  position: relative;
  padding: 8px 0;
}

.header .logo {
  width: 200px;
  height: auto;
  max-width: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  min-width: 120px;
}

/* Efecto hover */
.header a.logo:hover {
  transform: translateY(-2px);
  color: #C24028;
  /* Cambia color del texto al pasar el mouse */
}

.header a.logo:hover .logo {
  transform: rotate(-8deg) scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Efecto "splash" */
.header a.logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.4s ease;
}

.header a.logo:hover::after {
  width: 100%;
}


.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Versión con texto oculto en móviles  */

/* Media Query para pantallas muy pequeñas */
@media (max-width: 480px) {
  .header .logo {
    max-width: 180px;
    filter: none;
    image-rendering: auto;

  }
}






/* Para tablets */
@media (min-width: 481px) and (max-width: 1024px) {
  .header .logo {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .header a.logo span {
    display: none;
  }

  .header .logo {
    margin-bottom: 10px;
    height: auto;
    max-width: 180px;
  }
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }

  .header-right {
    float: none;
	min-width: 150px;
	text-align: center;  
  }
}

/* Navigation Links */
.header-right {
  display: flex;
  gap: 25px;
  align-items: center;
}

.header a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header a:hover {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);

}

.header a.active {
  color: #3b82f6;
  font-weight: 600;
 
}

.header a.active::after {
  content: '';
  position: absolute;
  top:100%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #3b82f6;
  border-radius: 2px;
  pointer-events: none;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  filter: invert(24%) sepia(89%) saturate(1828%) hue-rotate(202deg) brightness(98%) contrast(91%);
  transition: all 0.3s ease;
}

.header a:hover .icon {
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    
   
  }


  .header a.logo {
    margin-right: 0;
    margin-bottom: 15px;
    justify-content: center;
  }


  .header-right {
   
	float: left;
    position:absolute; /*con posición absoluta el menu se despliega sobre la imagen de abajo */
    margin-left: 300px;
    width:500px;
    
   
        
   
   
  }
  

   



  .header a {
    padding: 8px 5px;
    font-size: 0.9rem;
  
  }


  .icon {
    width: 18px;
    height: 18px;
   
    
  }


  .dropdown:hover .dropdown-content {

 position: absolute;

}

.dropdown-content, .submenu-content {
 margin-left: -50px;
 position: relative;
 background-color: blue;
 display: flex;
 flex-direction: row;

 }
  
 

  



}

/* Efecto scroll (opcional) */
.scrolled {
  padding: 10px 5%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .logo {
  height: 50px;
}

/* Estilos base */
.dropdown {
 

  display: inline-block;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1020;
}

.submenu-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #f8f8f8;
  min-width: 200px;
}

/* Mostrar menús al hacer hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.submenu:hover>.submenu-content {
  display: block;
}

/* Estilos para botones y enlaces */
.dropbtn,
.submenu-btn {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 1rem;
  color:  #2c3e50;
  font-weight: 500;

}

.dropdown-content a,
.submenu-btn {
  color: #2c3e50;
  text-decoration: none;
  display: block;
  font-size: 1rem;	
}

.dropdown-content a:hover,
.submenu-btn:hover {
  background-color: #f1f1f1;
}

/* Posición relativa para submenús */
.submenu {
  position: relative;
}

/* Hero Section Moderna */
.call-to-action {
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    /* Altura aumentada */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.call-to-action section {
  position: relative;
 
  }

.call-to-action section p {
  font-size: 2.2rem;
  font-weight: 600;
 
  margin: 0 auto 30px;
  max-width: 800px;
  padding: 0 20px;
  line-height: 1.3;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  opacity: 1;
  position: relative;
}

/* Botón moderno */
.call-to-action section button,
.call-to-action-trips section a {
  background-color: #3B4A9C;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0;
  position: relative;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  width: auto;
  min-width: 200px;
}

.call-to-action section button:hover,
.call-to-action-trips section a:hover {
    background: linear-gradient(to right, #2564eb93, #4f46e5);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Efecto opcional para el texto */
.call-to-action p::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #3b82f6;
  margin: 20px auto 0;
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .call-to-action section {
    height: 400px;
  }

  .call-to-action p {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .call-to-action section button,
  .call-to-action-trips section a {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/*Best Deals Section */

h2,
h3,
h4 {
  color: #1a1a1a;
  /* Negro más suave que #000 */
  text-align: center;
  margin: 30px 0;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  /* Semi-bold */
  letter-spacing: -0.5px;
  /* Espaciado más compacto */
  line-height: 1.3;
  position: relative;
  padding-bottom: 15px;
}

/* Best Deals Section - Modernizada */
.best-deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 5%;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.offers {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  height: auto;
  max-width: none;
  margin: 0;
}

.offers:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.offers img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
  flex-grow: 0;
}

.offers:hover img {
  transform: scale(1.03);
}

.offer-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom:0;
}

.offers h1 {
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: #1e293b;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  padding-top: 12px;
  padding-left: 12px;
  height: 50px;
}

.offers p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: normal;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-left: 12px;
  padding-right: 12px;
  height: 50px;
}


.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.price-tag .original {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.offers button {
  background-color: rgba(20, 43, 241, 0.7);
  color: white;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
  align-self: bottom;

  display: flex;
 
  justify-content: center;
  gap: 8px;
}

.offers button:hover {
  opacity: 1;
  background: #2564eb93;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.offers button:active {
  transform: translateY(0);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ef4444;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .best-deals {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
    scroll-padding: 20px;

  }

}

.offers {
  min-width: 80%;
  flex: 0 0 auto;
  scroll-snap-align: start;
  max-width: 300px; /* probando esto, para el index */ 
  margin: 0;
}

.best-deals::-webkit-scrollbar {
  display: none;
  /* oculta scrollbar en móviles */
}


/*-------------------LISTADO PRODUCTOS  ----------------*/


/* Estilos generales */

.productos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-bottom: 25px;
  width:100p%;
  box-sizing: border-box;	
  
  
}


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

@media (max-width: 1024px) {
  .listado-productos {
	
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
	/*----CODIGO PRUEBA PARA HACER RESPONSIVE SECCION DE TOURS ----------*/ 
	.descriptivo-seccion {
		font-size: 0.8rem;
	}
    
 .listado-productos {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 15px 10px;
    -webkit-overflow-scrolling: touch;
    margin: 0 -10px; /* Compensa el padding para mejor scroll */
  }

  .producto-card {
    flex: 0 0 auto;
    width: 180px;
    height: 280px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden; /* Volvemos a hidden pero con mejor estructura */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    position: relative;
  }

  /* Imagen visible y bien dimensionada */
  .producto-imagen {
    width: 100%;
    height: 90px !important;
    overflow: hidden;
    flex-shrink: 0; /* Evita que se reduzca */
  }

  .producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Titulo con mejor espaciado */
  .producto-titulo {
	height: 40px;  
    padding: 2px 2px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #333;
   /* background-color: #f8f8f8; se saca por problemas para poner una altura fija  */
    text-align: center;
    margin: 0;
    flex-shrink: 0;
  }

  /* Ocultar categorías */
  .producto-categorias {
    display: none !important;
  }

  /* Contenido bien distribuido */
  .producto-contenido {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow: hidden; /* Contiene el contenido interno */
	  
  }

  .producto-precio {
    font-size: 0.9rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 5px;
	  
	 
  }

  .producto-descripcion {
    font-size: 0.65rem;
    color: #555;
    margin: 0 0 10px 0;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  
  .producto-pie {
    margin-top: auto;
    padding-top: 5px;
	display: flex;
	flex-direction: column;  /* para empujar boton hacia abajo y precio hacia arriba */
	  
  }

  .producto-boton {
    width: 100%;
    padding: 15px 0;
    font-size: 0.75rem;
    border-radius: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tarjeta de producto------ DESKTOP----------- */


.producto-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 300px;	/* permite achicar cards para distribución responsive */
 
 
}

.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}



/* Imagen del producto */

.producto-imagen {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;

 	
}

.producto-card:hover .producto-imagen img {
  transform: scale(1.05);
}




.producto-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ff6b6b;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Contenido de la tarjeta */
.producto-contenido {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.producto-titulo {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #3B4A9C;
}

.producto-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.producto-categorias span {
  background: #f3f4f6;
  color: #4b5563;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
}

.producto-descripcion {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Pie de tarjeta */
.producto-pie {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.producto-precio {
  font-weight: bold;
  color: #1e40af;
  font-size: 1.1rem;
}

.producto-boton {
  background:  #E36F60;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}

.producto-boton:hover {
  background: #2563eb;
}

.productos-container::after {
  content: "";
  display: block;
  clear: both;
  height: 50px;
}




/* --------------------FOOTER---------------------------------*/

.informacion-importante {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  padding: 40px 5%;
  background-color: #6365f118;
  /* Fondo más suave */
  margin: 0 auto;
  max-width: 1400px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  

}

.info {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  border: 1px solid #e2e8f0;
 
}

.info:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info h4 {
  color: #1e293b;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.info p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.9rem;
 
}

/* Estilo mejorado para los QR */
.info-qr-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

.info-qr-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.info-qr-item img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 5px;
  background: white;
}

.info-qr-item p {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 5px;
}

/* Integración con el footer */

.info a {
  text-decoration: none;
  color: rgb(8, 34, 150);
  font-weight: 400;
}



/* Responsive */
@media (max-width: 768px) {
  .informacion-importante {
    padding: 30px 20px;
    gap: 15px;
  }

  .info {
    padding: 15px;
  }

  .info-qr-container {
    flex-direction: column;
    gap: 10px;
  }
}


footer {

  background-color: linear-gradient(to right, #3b82f6, #6366f1);
  margin-top: 20px;

  bottom: 0;
  width: 100%;
 
}

.home-footer {
  width: 100%;

  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-left: 500px;
 margin-top: 25px;


}

.home-footer a {
  text-decoration: none;
  color: #01040c8f;
}


.home-footer p {
  margin: 0;
  font-size: 1rem;
  color: rgb(8, 34, 150);
  text-align: center;
  line-height: 1.6;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.sociallinks {
  display: flex;
  flex-direction: row-reverse;
  align-content: flex-end;
  gap: 10px;

}




nav .sociallinks a {
  text-decoration: none;

}

.sociallinks a:hover {
  background-color: rgba(18, 17, 80, 0.2);
  transform: translateY(-3px);
}

.sociallinks a:hover img {
  transform: scale(1.1);
}

.sociallinks img {
  width: 24px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  gap: 10px;



}



/* Estilos generales del formulario */
.formulario-contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 40px 0;
  min-height: 500px;
}

.form-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.modern-form {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Estilos para los grupos de formulario */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 0.95rem;
}

/* Estilos para los inputs */
input[type="text"], input[type="date"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e3e7;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
  background-color: white;
}

.form-group input:required {
    border-right: solid 8px #4a6cf7;   /* style for required fields  */ 
}

/* Estilo especial para el select */
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

/* Estilo para el botón de enviar */
.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: rgba(20, 43, 241, 0.7);;
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background:#2564eb93;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

/* Efectos para campos inválidos */
input:invalid,
select:invalid,
textarea:invalid {
  border-color: #252794ef;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-form {
    padding: 20px;
  }

  .form-title {
    font-size: 1.8rem;
  }
}

/* secciones para diferentes públicos */



.turismo-mendoza {

  background-color: white;
  min-height: 600px;

 
}

/*Paquetes Argentina */

/* Sección Turismo Nacional - Modernizada */
.turismo-argentina {
  background-color: #f8fafc;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.turismo-nacional {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}



/* Tarjetas de paquetes */
.paquetes-argentina,
.paquetes-internacionales {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.paquetes-argentina:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.paquetes-argentina img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.paquetes-argentina:hover img {
  transform: scale(1.05);
}

.contenido {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.paquetes-argentina h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.paquetes-argentina p {
  width: 80%;
  margin: 8px 0 20px;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
 
}

.paquetes-argentina button {
  margin-top: auto;
  align-self: center;
  width: 80%;
  padding: 10px;
  background: rgba(220, 70, 57, 0.9);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  
}

.paquetes-argentina button:hover {
  opacity: 1;
  background:rgba(220, 70, 57, 0.9);
  transform: translateY(-2px);

}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Efectos decorativos de fondo (opcional) */
.turismo-argentina::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.turismo-argentina::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .turismo-nacional {
    gap: 30px;
    padding: 0 30px;
  }

  .paquetes-argentina {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .turismo-argentina {
    padding: 60px 0;
  }

  .turismo-nacional {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 40px;
    padding: 0 20px;
  }

  .paquetes-argentina {
    height: 400px;
  }

  .paquetes-argentina button {
    width: 90%;
  }

}

/* otros paquetes */

.turismo-internacional {

  background-color: white;
  min-height: 600px;



}

#footer-logo {

  height: 100px;
  padding-bottom: 20px;
  display: block;
  text-align: center;
  margin: 0 auto;


}

/* iconos Whatsapp */

/* Estilo del botón flotante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  border-radius: 50px;
  /* Forma ovalada */
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 10px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  color: white;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  text-decoration: none;
  animation: pulse 1.5s infinite;
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}

.whatsapp-float span {
  font-size: 0.9rem;
}

/* Versión móvil (solo ícono) */
@media (max-width: 768px) {
  .whatsapp-float {
   
    justify-content: center;
      width: 150px;
      height: 36px;
      margin-right: 8px;
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
     
      
   
  }

  .whatsapp-float span {
    display: block;
    
  }

 .home-footer {
  margin-left: 0;
  display: flex;
  gap: 10px;

 
  }
 
 
}

/*-------------sección productos----------------------- */




/* Asegura que la siguiente sección tenga posición relativa */
.seccion-siguiente {
  position: relative;
  z-index: 3;
  /* Mayor que los elementos de productos */
  background: white;
  /* Fondo sólido para cubrir posibles superposiciones */
  padding-top: 50px;
  /* Espacio adicional */

  transform: translateZ(0);
  /* Crea nuevo contexto de apilamiento */
  will-change: transform;
  /* Optimización para el navegador */


}

/* para paginas informativas   */ 

.pagina-informativa {
 font-family: 'Poppins' 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 400;
 
  margin-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;

}

.pagina-informativa strong{
 font-weight: 500;
  /* Más suave que el bold estándar (700) */
  color: #06418def;
  /* Color gris oscuro en lugar de negro puro */
  /* Opcional: */
  text-shadow: 0.5px 0 0 currentColor;
  /* Sutil mejora de legibilidad */

}

@media (max-width: 768px) {
	.pagina-informativa p {
		font-size: 1.1rem
		
	}
}	


/* para la sección de turismo privado */

.descriptivo-seccion {
  font-family: 'Poppins' 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 400;
  background: linear-gradient(90deg, #202a52 0%, #361557 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.descriptivo-seccion {
  transition: all 0.3s ease;
}


.descriptivo-seccion:hover {
  transform: translateY(-2px);
}

.descriptivo-seccion strong {
  font-weight: 500;
  /* Más suave que el bold estándar (700) */
  color: #06418def;
  /* Color gris oscuro en lugar de negro puro */
  /* Opcional: */
  text-shadow: 0.5px 0 0 currentColor;
  /* Sutil mejora de legibilidad */
}

/*----------- PAGINA DE PRODUCTO--------------------- */




.pagina-productos-contenedor {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.product-header {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 40px 0;

  
}

@media (min-width: 768px) {
  .product-header {
    
    align-items: center;
  }
}

/* Galería de imágenes */
.product-gallery {
  display: flex;
  flex-direction: column;
  min-width: 800px;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  margin-top:20px;
  align-self: flex-start;
  background: white;
   height: 600px		
  
 

}

.product-gallery img {
  width: 100%;
  height: 100%;
  

  display: block;
  object-fit: cover;
  

 
}

@media (max-width: 768px) {
  
  .product-gallery {
   display:grid;
    min-width: 100px; /* CAMBIO */
   max-width: 350px; /* CAMBIO */ 
   margin-left: 0;
   max-height: 400px;	  
  }
  .product-header {
    
    flex-direction: column;

   
  }

  .product-tittle {

    font-size: 1rem;
  }
 .product-header img {
  
  width:90%;
  
  align-self: left;
  
  }

.product-gallery img {
 max-height: 300px;
 display: block;
 width: auto;
 border-radius: 5px;
 text-align: center;
 margin-left:20px;
 margin-bottom: 20px;
  width: 90%; /* CAMBIO */ 	

}
  .descriptivo-seccion p {
   margin-right: 20px; 
   text-align: justify;
    font-size: 1rem;	   
  }
}

/* Información principal */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 20px;
  margin-top: 0;
  /* Elimina cualquier margen superior */

}

.product-title {
  font-size: 2.2rem;
  color: #2c3e50;
  font-weight: 600;
  margin-top: 0;
  text-align: center;
  
}

.product-highlights {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: var(--light-bg);
  padding: 8px 15px;
  border-radius: 20px;
}

.highlight-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

/* Precio y reserva */
.price-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 10px 0;
}

.price-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
 
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0;
  padding: 0;
}

.form-group input,
.form-group select {
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  margin-top: -3px;
  margin-bottom: 0px;
}

.btn-primary {
  background: #3B4A9C;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Detalles del tour */
.product-details {
  margin: 60px 0;
}

.section-title    {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}


.section-subtitles {
font-size: 1.5rem;

}


.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.detail-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-card h3 {
  margin-top: 0;
  color: var(--primary);
}

/* productos relacionados */

/* Estilos para la sección de productos relacionados */
.productos-relacionados {
  margin: 40px 0;
  padding: 0 20px;
}

.titulo-relacionados {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
  position: relative;
}

.titulo-relacionados::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #3498db;
  margin: 10px auto;
}

.contenedor-productos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.producto-relacionado {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-relacionado:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.imagen-producto {
  height: 180px;
  overflow: hidden;
}

.imagen-producto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.producto-relacionado:hover .imagen-producto img {
  transform: scale(1.05);
}

.enlace-producto {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px;
}

.nombre-producto {
  font-size: 16px;
  margin: 10px 0;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.precio-producto {
  color: #e74c3c;
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
	
	.section-title {
		font-size: 1rem;
	}	
  .contenedor-productos {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }

  .imagen-producto {
    height: 140px;
  }

  .nombre-producto {
    font-size: 14px;
  }

  .precio-producto {
    font-size: 16px;
  }

   .product-title {
  max-width:400px; 
  margin-top: 0;
  text-align: center;
  
}
}

.producto-boton {

  text-decoration: none;
}





/* Estilo del botón hamburguesa */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}


/* Menú visible por defecto en escritorio */
.header-right {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}


/* Estilos responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;


  }

  .menu-toggle:hover {
    color: #e63946;
    /* cambia el color */
    transform: scale(1.2);
    /* efecto de agrandamiento */
  }

  .header-right {
    display: none;
    flex-direction: column;
    /* vertical */
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;

    margin-left: 200px;
    max-width: 100px;
  }

  .header-right.show {
    /*
	  display: flex;
    width:100%;
    margin: 0 auto;
    background: #fcfcfc;
    padding-right:80%;

	 */
	  display: flex;
	  padding-right: 10px;
    
  }

  .dropdown-content,
  .submenu-content {
    position: static;
	/*  margin-left: 100px; */	  
     margin-right:100px; 
  }
}

/* flechas carrusel tours mendoza */

/* Flechas visibles solo en pantallas chicas */
.arrow {
  display: none;
}

/* Mostrar flechas en pantallas de 768px o menos */
@media (max-width: 768px) {
	.carousel-container {
		position: relative; 
	}	
.arrow {
    display: block;
    position: absolute;
    top: 30%; /* Centra verticalmente */
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;      /* evita texto fantasma */
    line-height: 0;    /* evita altura extra */
    border: none;      /* por si es un botón */
    background-color: transparent; /* sin fondo por defecto */
    z-index: 10; /* Asegura que queden sobre las imágenes */
  }

  .arrow.left {
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4 L8 12 L20 20' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .arrow.right {
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4 L16 12 L4 20' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
	
	.linea-desplazamiento {
  height: 2px;
  margin: 20px auto;
  max-width: 200px;
  background: repeating-linear-gradient(
    to right,
    #3B4A9C,
    #3B4A9C 5px,
    transparent 5px,
    transparent 10px
  );
  animation: desplazar 2s infinite;
}

@keyframes desplazar {
  0% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
  100% { transform: translateX(-10px); }
}
}	

/*------- SECCIÓN EXPERIENCIAS ----------------*/
.experiencias-gastronomicas {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2a3f54;
  margin-bottom: 40px;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: #e74c3c;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.experiencia-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.experiencia-card:hover {
  transform: translateY(-5px);
}

.experiencia-imagen {
  position: relative;
  width: 100%;
  height: 100%;
}

.experiencia-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experiencia-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.experiencia-card:hover .experiencia-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.experiencia-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: white;
  font-weight: bold;
}

.precio {
  font-size: 1.3rem;
  font-weight: bold;
  color: #f1c40f;
  margin-bottom: 15px;
}

.ver-detalle {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: white;
  padding: 8px 15px;
  background: rgba(231, 76, 60, 0.8);
  border-radius: 20px;
  transition: all 0.3s ease;
  
  
}

.ver-detalle a {
  color: white;
  
  
}

.ver-detalle:hover {
  background: rgba(231, 76, 60, 1);
  padding-right: 20px;
}

.arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.ver-detalle:hover .arrow {
  transform: translateX(3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .experiencias-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .experiencias-grid {
    grid-template-columns: 1fr;
  }

  .experiencia-card {
    height: 250px;
  }
}


/* Confirmación Formulario */ 

 #confirmacion-mensaje {
  	 
  color: var(--primary);
  padding: 50px;
  text-align: center;
}

#confirmacion-mensaje h1{
	font-size: 1.7rem;
}

/* Para la página de contacto  */ 

.contacto-wrapper {
display: grid;
grid-template-columns: 1fr 2fr;
padding: 25px;
margin: 25px;


}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-wrapper {
display: flex;
flex-direction: column;

padding:5px;
margin:5px;

}
}

/*------------------------LOCAL- VIRTUAL------------------------------------------------*/ 

.local-virtual {
display: flex;
align-items: center;
flex-wrap: wrap;
}


/* ------------ Paquetes Turísticos ----------------------------- */ 

.detail-grid-paquete {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
  
  gap: 30px;
  margin-top: 30px;
}

.detail-card-paquete {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-card-paquete h3 {
  margin-top: 0;
  color: var(--primary);
}


.product-gallery-paquete {

  width: 100%;
  min-width: 800px;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top:20px;
  max-height: 550px;
  background: white;
  display: flex;


}



.product-header-paquete {

 display: flex;
 flex-direction: row;


}

  .product-title-paquete {
    position: absolute;
   
    border-radius: 8px;
    padding: 20px;
    margin-left:30px;
    color: white;
    align-self: flex-start;
    font-size: 2rem;
  
  color: white;
  font-weight: bold;
  
  background:rgba(120, 120, 120, 0.25);
backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-block;

 
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    
  }

.product-gallery-paquete img {

  display: block;
  object-fit: cover;
  width:100%;
  height:100%;
  
  
}


.product-gallery-paquete .price-amount-paquete {

position: absolute;
color: white;
background-color: rgba(120, 120, 120, 0.5);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
align-self: flex-end;
margin-bottom:35px;
font-size: 1.5rem;
font-weight: bold;
margin-left:30px;
padding: 15px;
border-radius: 5px;


}


.product-gallery-paquete .price-description-paquete {

position: absolute;
color: white;
background-color: rgba(0, 0, 0, 0.2);
align-self: flex-end;
margin-left:30px;
padding: 5px;
border-radius: 5px;
font-weight: bold;


}

@media (max-width: 768px) {
  
  .product-gallery-paquete {
   display:grid;
   min-width: 100px; /* CAMBIO */
   max-width: 350px; /* CAMBIO */ 
   margin-left: 0;
  }
  .product-header-paquete {
    
    flex-direction: column;

     
  }
   .product-header img, .product-gallery img {
  
   width:90%;
	}	   

	
 .product-title-paquete {
   font-size:1.2rem;
   margin-top: 10px;
	} 
	.price-amount-paquete {
     display: flex;
	 align-items: center;
	 height: 40px; 	
	}
}

.producto-card-paquete {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.producto-card-paquete:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.producto-imagen-paquete {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
}

.producto-imagen-paquete img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ------ Página Paquetes ---------------- */ 
.producto-card-paquete {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  min-height: 350px; /* Altura mínima de la tarjeta */
  height: 100%; /* Asegura que tome toda la altura disponible */
  min-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.producto-imagen-paquete {
  position: absolute; /* Lo posicionamos absolutamente dentro de la tarjeta */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ocupa el 100% del contenedor padre */
  z-index: 0; /* Para que esté detrás del contenido */
}

.producto-imagen-paquete img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenedor del contenido - ahora posicionado absolutamente sobre la imagen */
.producto-contenido-paquete {
  position: relative; /* Cambiado a relative para mejor flujo */
  z-index: 1;
  margin-top: auto; /* Empuja el contenido hacia abajo */
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1.5rem;
  color: white;
}

.producto-boton-paquete {
  background: rgba(138, 43, 226, 0.3);
  color: white;
  font-weight: bold;
  border-radius: 7px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
 
}

.producto-titulo-paquete {
color:white;
font-size:larger;
font-weight: bold;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.producto-precio-paquete {

font-weight:bold; 
}

/*-------PRICE ALERT -------- */
.price-alert-sticky {
    position: fixed;
    bottom: 80px; /* Ajusta según la altura del botón de WhatsApp */
    right: 20px; /* Lo colocamos a la derecha */
    background: rgba(26, 54, 93, 0.9); /* Fondo azul oscuro semi-transparente */
    color: white;
    padding: 8px 15px;
    border-radius: 25px; /* Bordes redondeados como un badge */
    font-size: 13px;
    font-weight: 600;
    z-index: 999; /* Por debajo del botón de WhatsApp (que tiene z-index: 1000) */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2b33a; /* Borde amarillo para coincidir con tu diseño */
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Evita saltos de línea */
}

.price-alert-sticky::before {
    content: "🛈"; /* Ícono de información (opcional) */
    font-size: 16px;
}

/* Ajuste para móvil */
@media (max-width: 768px) {
    .price-alert-sticky {
        bottom: 70px;
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
        white-space: normal; /* Permite saltos de línea si el texto es largo */
    }
}


/*----Definiendo h1 para sections y otros  ----*/
 article h1, 
section h1, 
aside h1, 
nav h1 {
    font-size: 2rem; 
}

