@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 24px;
  text-align: right;
}

.top-bar {
  background: #ffffff;
  padding: 0px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  position: relative
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.menu {
  display: flex;
  gap: 32px;
  margin-left: 20px;
  flex:1;
  
}

.menu a {
  color:#000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00913c;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  opacity: 1;
}

.contacto {
  color: #ee984b;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 18px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  margin-left: auto;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 2px solid #ee984b;
  text-decoration: none;
  
}

.contacto:hover {
  color: #ffffff;
  background: #ee984b;
  text-decoration: none;
}


.whatsapp-icon {
    font-size: 28px;
    color: #ee984b;
    background: transparent;
    border: 2px solid #ee984b;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: auto;
    margin-right: 8px;
    transition: all 0.3s ease;
    
}

.whatsapp-icon:hover {
    background: #ee984b;
    color: #ffffff;
}

/* ===== HEADER ===== */
.site-header,
.main-header {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 65px;
}

.logo img {
  height: 65px;
  transition: transform 0.3s ease;
  margin-left: -200px;
  margin-bottom: -51px;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

/* URLs de imágenes  */
.hero-slide:nth-child(1) {
    background-image: 
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920');
}

.hero-slide:nth-child(2) {
    background-image: 
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920');
}

.hero-slide:nth-child(3) {
  background-image: 
  linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
  url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920');
}

.hero-slide:nth-child(4) {
  background-image: 
  linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920');
}


.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
}

.hero-text {
  order: 2;
  color: #ffffff;
  max-width: 560px;
  animation: fadeInRight 1s ease;
  font-family: 'Montserrat', sans-serif;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);

}

.hero-text p {
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);

}



/* ===== COTIZADOR BOX ===== */
.cotizador-box {
  order: 1;
  width: 100%;
  max-width: 370px;
  max-height: 600px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 18px 18px;  /* <- REDUCIDO */
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: fadeInLeft 1s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.cotizador-box h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0;
  font-family: 'Montserrat', sans-serif;
  
}
/* ===== FORMULARIO COTIZADOR ===== */
.cotizador label {
  font-size: 1px;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  margin-top: 16px;
  display: block;
}

.cotizador input,
.cotizador select {
  width: 100%;
  padding: 14px 16px;
  margin-top: 6px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 15px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;

}

.cotizador input:focus,
.cotizador select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.cotizador input:hover,
.cotizador select:hover {
  border-color: #cbd5e1;
}

/* Fix para inputs de fecha */
.cotizador input.fecha {
  color: #1e293b;
  cursor: pointer;
}

.cotizador input.fecha::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: opacity(0.6);
}

.cotizador input.fecha:hover::-webkit-calendar-picker-indicator {
  filter: opacity(1);
}

/* ===== BOTÓN COTIZAR ===== */
.btn-cotizar {
  background: #ffffff;
  color: #ee984b;
  border: 2px solid #ee984b;
  padding: 10px 0;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  
}

.btn-cotizar:hover {
  background: #ee984b;
  color: #ffffff;
  
}

.btn-cotizar:active {
  transform: translateY(-1px);
}

/* ===== BENEFICIOS ===== */
.beneficios {
  padding: 95px 24px 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}



.beneficios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.beneficios h2 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 70px;
  color: #000000;
  letter-spacing: 0px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.beneficios h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: #00913c;
  margin: 20px auto 0;
  border-radius: 10px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border-radius: 6px;
  padding: 30px 32px;
  box-shadow: 
    0 10px 40px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0);
  text-align: center;

}

.beneficios .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffffff;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.beneficios .card:hover::before {
  transform: scaleX(1);
}

.beneficios .card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  background: #ee984b; 
}

.beneficios .card:hover h3{
  color: #ffffff;
}

.beneficios .card:hover p{
  color: #ffffff;
}

.planes .card:hover {

  transform: translateY(-5px);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.planes-grid .card:hover::before {
  transform: scaleX(1);
  color: #00913c;
}
.planes .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #00913c;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}


.card-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease, color 0.4s ease;
    color: inherit;
}

.card:hover .card-icon {
    transform: scale(1.05);
    color: white;
}

.card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}



.card p:first-of-type {
    color: #6b7280;   
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
}


.card p:nth-of-type(2) {
    color: #6b7280;   
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
}

.card strong{
  font-weight: 500;
}



/* ===== PLANES ===== */
.planes {
  padding: 70px 24px;
  text-align: center;
  background:#d8d8dc;
  position: relative;
  overflow: hidden;
}

.planes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}




.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 70px auto 0;
  position: relative;
  z-index: 1;
}



.planes h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000000;
  position: relative;
  letter-spacing: 0px;
  font-family: 'Poppins', sans-serif;
}

.planes h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: #00913c;
  margin: 24px auto 0;
  border-radius: 10px;
}



.planes-grid .card {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
}

.planes-grid .card .btn {
  display: flex;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.planes-grid .card .btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 60px 24px;
  }

  .cotizador-box {
    order: 2;
    max-width: 100%;
  }

  .hero-text {
    order: 1;
    transform: none;
  }

  .hero-text h1 {
    font-size: 38px;
    
  }

  .hero-text p {
    font-size: 17px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .planes-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    gap: 20px;
    font-size: 14px;
  }

  .contacto {
    display: none;
  }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== PÁGINAS INTERNAS ===== */
.main-content {
  min-height: calc(100vh - 90px);
  background: #f8fafc;
  padding: 60px 24px;
}

.resultado-wrapper,
.pasajeros-page,
.checkout {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.page-title,
.ui-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: #1e293b;
  letter-spacing: -0.5px;
  font-family: 'Montserrat', sans-serif;

}

.ui-subtitle,
.resultado-wrapper .subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
  font-size: 16px;
}

/* PLANES EN RESULTADO */
.planes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plan {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid #f1f5f9;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: #3b82f6;
}

.plan.recomendado {
  border: 2px solid #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.plan h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}

.plan .total {
  font-size: 28px;
  font-weight: 800;
  margin: 16px 0;
  color: #3b82f6;
}

.plan button,
.btn-pago,
.ui-button {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  justify-content: center;

}

.plan button:hover,
.btn-pago:hover,
.ui-button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* BADGE RECOMENDADO */
.plan-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.badge-recomendado {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* PASAJEROS FORM */
.pasajero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}

.pasajero-card h3 {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label,
.form-grid label {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
}

.form-grid input,
.form-grid select,
.input-group input,
.input-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.form-grid input:focus,
.form-grid select:focus,
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* INFO VIAJE */
.info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info p {
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 12px;
  margin: 0;
  font-size: 15px;
  border: 1px solid #e2e8f0;
}

.info strong {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* BOTÓN CONTINUAR AL PAGO */
.btn-pago {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
  display: block;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info {
    grid-template-columns: 1fr;
  }

  .planes-container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   MODAL DE DETALLES
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 6px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #000;
}

#modalTitulo {
    color: #000000;
    margin-bottom: 20px;
    font-size: 28px;
    font-family:'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}

.plan-info {
    background: #e6e6e6;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 4px solid #8c8c8c;
}

.plan-info p {
    margin: 8px 0;
    color: #1a1a1a;
    font-weight: 400;
    font-family:'Montserrat', sans-serif;
}

.beneficio-item {
    background: #f6f6f6;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
    border-left: 4px solid #00913c;
}

.beneficio-item h4 {
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.beneficio-item p {
    color: #4d4d4d;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

.beneficio-valor {
    background: #ee984b;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 15px;
    font-weight: 500;
}

.btn-detalles {
    background: #ffffff;
    color: #ee984b;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #ee984b;
    transition: all 0.3s ease;
}

.btn-detalles:hover {
    background: #ee984b;
    color:#ffffff;
    border: 2px solid #ee984b;

}

.botones-plan {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    

}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   FOOTER MODERNO
   ======================================== */

.footer-modern {
    background: #515151;
    color: #fff;
    padding: 60px 20px 0;
    margin-top: 0px; 
}
.footer-bottom {
    background: #3c3c3c;
    padding: 20px 15px;
    text-align: center;
    border-radius: 4px;
    
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    padding: 0 15px;
}

.footer-column:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-width: 282px;
    margin: 0 auto 20px auto;
    text-align: center;
    margin-left: -40px;
    margin-top: -10px;
    
}


.footer-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.25));
}




.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #f2f2f2;
    margin-bottom: 40px;
    text-align: center;
    margin-left: -50px;
}
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f2f2f2;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #f2f2f2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #f2f2f2;
}

.footer-contact strong {
    color: #f2f2f2;
    font-weight: 600;
}



.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #f2f2f2;
}

.footer-bottom a {
    color: #f2f2f2;
    text-decoration: underlane;
    transition: color 0.3s;
}



/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-modern {
        padding: 40px 20px 0;
        margin-top: 60px;
        
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.buscar-tarjeta {
    background:#f4f4f6;
    padding: 60px 20px;
}

.buscar-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.buscar-tarjeta h2 {
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.buscar-tarjeta h2::after {
   content: "";
   display: block;
   width: 80px;
   height: 4px;
   background: #00913c;
   margin: 12px auto 0;
   border-radius: 10px;

}

.buscar-tarjeta p {
    font-size: 15px;
    color: #4d4d4d;
    margin-bottom: 30px;
    font-weight: 500;
}

.buscar-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 700px;
}

.form-row input {
    flex: 1;
    padding: 14px 20px;
    padding-left: 45px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    background: white;
    position: relative;
}

.form-row input:first-child {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px;
}

.form-row input:last-child {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px;
}

.form-row input:focus {
    outline: none;
    border-color: #ee984b;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-buscar {
    background: #ffffff;
    color: #ee984b;
    padding: 10px 36px;
    border: 2px solid #ee984b;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.btn-buscar:hover {
    background: #ee984b;
    color:#ffffff;
    border: 2px solid #ee984b;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}


.info-bar {
    background: #000000;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 12px;
    z-index: 900;
    position: relative;
}

.btn {
  background: #ffffff;
  color: #ee984b;
  border: 2px solid #ee984b;
  padding: 8px 0px;
  width: 12%;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  
}

.btn:hover {
  background: #ee984b;
  color: #ffffff;
  
}

.btn:active {
  transform: translateY(-1px);
}

/* =========================================
   LOGOS DE PROVEEDORES EN TARJETAS (INDEX)
   ========================================= */
.planes-grid .card {
    position: relative; 
    padding-top: 50px; 
}

.logo-proveedor {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 35px; 
    max-width: 100px;
    object-fit: contain; 
    opacity: 0.9;
}

img[src="logo_uta.png"] {
    background-color: rgba(30, 41, 59, 0.8); /* Mismo azul oscuro, pero un poquito transparente */
    padding: 3px 6px; /* Le quitamos el relleno excesivo, más pegadito a las letras */
    border-radius: 4px; /* Bordes más sutiles */
    transform: scale(0.85); /* Lo achicamos un pelín para que no quite espacio */
    box-shadow: none; /* Le matamos la sombra para que no resalte tanto */
}