* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: rgb(233, 233, 235);
  scroll-behavior: smooth;
}



/* ----- BARRA DE NAVEGACIÓN (INICIO: TRANSPARENTE) ----- */
/* ----- BARRA DE NAVEGACIÓN ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  background-color: transparent;
  padding: 1.2rem 4rem;  /* Cambiar de 2rem a 4rem */
}

.nav-container {
  max-width: 1600px;  /* Aumentado de 1400 a 1600 */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;  /* ← AÑADIR ESTA LÍNEA */
}

/* Lado izquierdo - elementos pegados a la izquierda */
.nav-left {
  display: flex;
  gap: 1.5rem;  /* Cambiar de 2rem a 1.5rem */
  font-weight: 500;
  justify-content: flex-start;
  flex: 1;
}

.nav-left a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Logo centrado */
.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-img {
  height: 55px;
  width: auto;
  transition: all 0.3s ease;
}

/* Lado derecho - elementos pegados a la derecha */
.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;  /* Cambiar de 1.8rem a 1.2rem */
  align-items: center;
  flex: 1;
}

.nav-right a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.phone-number {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.login-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 0.4rem 1.3rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: rgb(239, 75, 75);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estado con scroll (barra blanca) */
.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 2rem;
}

.navbar.scrolled .nav-left a {
  color: rgb(58, 97, 154) !important;
}

.navbar.scrolled .nav-right a {
  color: rgb(58, 97, 154) !important;
}

.navbar.scrolled .phone-number {
  background: rgba(58, 97, 154, 0.1);
  color: rgb(58, 97, 154) !important;
  border: 1px solid rgba(58, 97, 154, 0.3);
}

.navbar.scrolled .login-btn {
  border-color: rgb(58, 97, 154);
  color: rgb(58, 97, 154) !important;
}

.navbar.scrolled .login-btn:hover {
  background: rgb(58, 97, 154);
  color: white !important;
}

.navbar.scrolled .cart-icon {
  color: rgb(58, 97, 154) !important;
}

/* Menú trigger */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  color: white;
}

.menu-trigger i {
  font-size: 1.2rem;
}

.navbar.scrolled .menu-trigger {
  color: rgb(58, 97, 154);
}
/* Hover efectos */
.nav-left a:hover,
.nav-right a:hover {
  opacity: 0.8;
}

/* ----- HERO SLIDER ----- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide-bg.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 97, 154, 0.7), rgba(66, 80, 107, 0.6));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 650px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.cta-btn {
  background: rgb(239, 75, 75);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(239, 75, 75, 0.3);
  border: none;
}

.cta-btn:hover {
  background: rgb(220, 55, 55);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(239, 75, 75, 0.4);
}

.slider-arrows {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.arrow {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  width: 44px;
  height: 44px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  transition: 0.2s;
}

.arrow:hover {
  background: rgb(239, 75, 75);
  color: white;
}

/* ----- SERVICIOS SUPERPUESTOS ----- */
.services-overlap {
  background: linear-gradient(135deg, white 0%, white 70%, rgb(245, 245, 250) 100%);
  padding: 5rem 2rem 8rem;
  position: relative;
  margin-top: -2rem;
  z-index: 1;
  border-radius: 40px 40px 0 0;
  overflow: visible;
}


.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: rgb(58, 97, 154);
}

.section-title span {
  color: rgb(66, 80, 107);
}

.slider-services {
  max-width: 70%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.services-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem;
  cursor: grab;
}

.services-track::-webkit-scrollbar {
  height: 6px;
}

.services-track::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 10px;
}

.services-track::-webkit-scrollbar-thumb {
  background: rgb(58, 97, 154);
  border-radius: 10px;
}

.service-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 32px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 35px -12px rgba(58, 97, 154, 0.15);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 40px -12px rgba(58, 97, 154, 0.25);
  border-bottom-color: rgb(239, 75, 75);
}

.service-icon {
  font-size: 2.8rem;
  color: rgb(58, 97, 154);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: rgb(66, 80, 107);
}

.service-card p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.9rem;
}

.service-badge {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: rgb(239, 75, 75);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.service-card:hover .service-badge {
  transform: translateX(5px);
}

.service-slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-nav-btn {
  background: white;
  border: 2px solid rgb(58, 97, 154);
  width: 42px;
  height: 42px;
  border-radius: 60px;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgb(58, 97, 154);
  transition: all 0.3s ease;
}

.service-nav-btn:hover {
  background: rgb(58, 97, 154);
  color: white;
}

.footer-info {
  background: rgb(66, 80, 107);
  text-align: center;
  padding: 2rem;
  color: rgb(233, 233, 235);
  font-size: 0.85rem;
}

.footer-info strong {
  color: white;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .nav-left, .nav-right .extra-link {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .logo-img {
    height: 40px;
  }
  .navbar {
    padding: 0.8rem 1.2rem;
  }
  .services-overlap {
    padding: 3rem 1rem;
  }
  .service-card {
    flex: 0 0 260px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 550px) {
  .login-btn {
    padding: 0.2rem 1rem;
    font-size: 0.85rem;
  }
  .phone-number {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }
  .logo-img {
    height: 35px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}






/* ===== MEGA MENÚ ===== */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  color: white;
}

.menu-trigger i {
  font-size: 1.2rem;
}

.navbar.scrolled .menu-trigger {
  color: rgb(58, 97, 154);
}

/* Mega menú */
.mega-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  border-radius: 0 0 20px 20px;
}

.mega-menu.open {
  max-height: 500px;
  overflow-y: auto;
}

.mega-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.mega-column {
  flex: 1;
  min-width: 200px;
}

.mega-column h3 {
  color: rgb(58, 97, 154);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgb(239, 75, 75);
  display: inline-block;
}

.mega-column ul {
  list-style: none;
  padding: 0;
}

.mega-column ul li {
  margin-bottom: 0.75rem;
}

.mega-column ul li a {
  text-decoration: none;
  color: rgb(66, 80, 107);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.mega-column ul li a:hover {
  color: rgb(239, 75, 75);
  transform: translateX(3px);
}

/* Overlay */
.mega-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mega-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Ajustes responsivos para mega menú */
@media (max-width: 768px) {
  .mega-menu-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .mega-column {
    width: 100%;
  }
  
  .menu-trigger {
    font-size: 0.9rem;
  }
}


/* ===== CARRITO DE COMPRAS ===== */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: rgb(239, 75, 75);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-left a:not(.menu-trigger) {
    display: none;   /* ← Esto oculta Visas, Legalizations, etc. SOLO en móvil, está bien */
  }
  
  .phone-number {
    display: none;   /* ← Esto oculta el teléfono SOLO en móvil */
  }
}



/* ===== SECCIÓN ASESOR + FORMULARIO (CON FOTO QUE ATRAVIESA) ===== */
.advisor-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 0;  /* Eliminar el margen negativo */
  overflow: visible;
}

.advisor-section {
  background: linear-gradient(135deg, white 0%, white 70%, rgb(245, 245, 250) 100%);
  padding: 0 2rem 5rem;  /* Padding superior CERO para que la foto entre desde arriba */
  position: relative;
  overflow: visible;
  border-radius: 0 0 40px 40px;
}

.advisor-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  overflow: visible;
}

/* Contenedor de la foto - permite que sobresalga hacia arriba */
.advisor-image-wrapper {
  flex: 1;
  min-width: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
}


/* Foto del asesor - CON FONDO TRANSPARENTE Y QUE ATRAVIESA */
.advisor-image {
  position: relative;
  margin-top: -120px;  /* Sube la foto para que sobresalga de la sección azul hacia la blanca */
  margin-bottom: 0;
  z-index: 100;
}


.advisor-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
  filter: drop-shadow(0 20px 25px -12px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
  border-radius: 30px;
}

.advisor-image img:hover {
  transform: translateY(-5px);
}

.advisor-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgb(239, 75, 75);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  z-index: 101;
  white-space: nowrap;
}

.advisor-badge i {
  margin-right: 8px;
}

/* Formulario */
.advisor-form {
  flex: 1;
  min-width: 350px;
  background: white;
  padding: 2.5rem;
  border-radius: 35px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 15;
  margin-top: 0;  /* Sin margen superior */
}

.form-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgb(58, 97, 154);
  margin-bottom: 0.2rem;
  text-align: center;
}

.form-title span {
  color: rgb(239, 75, 75);
}

.form-subtitle {
  font-size: 1rem;
  color: rgb(66, 80, 107);
  margin-bottom: 1.8rem;
  text-align: center;
  letter-spacing: 1px;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 150px;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 1.5rem;
}

.advisor-form input,
.advisor-form select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #e0e4e8;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: white;
  outline: none;
}

.advisor-form input:focus,
.advisor-form select:focus {
  border-color: rgb(58, 97, 154);
  box-shadow: 0 0 0 3px rgba(58, 97, 154, 0.1);
}

.submit-btn {
  width: 100%;
  background: rgb(58, 97, 154);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: rgb(239, 75, 75);
  transform: scale(1.02);
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .advisor-wrapper {
    margin-top: -40px;
  }
  
  .advisor-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .advisor-image {
    margin-top: -60px;
    margin-bottom: -20px;
  }
  
  .advisor-image img {
    max-width: 220px;
  }
  
  .advisor-form {
    min-width: auto;
    padding: 1.8rem;
    margin-top: 1rem;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .advisor-badge {
    white-space: normal;
    text-align: center;
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    bottom: -15px;
  }
}

@media (max-width: 550px) {
  .advisor-section {
    padding: 3rem 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .advisor-form {
    padding: 1.2rem;
  }
  
  .advisor-image {
    margin-top: -40px;
  }
  
  .advisor-image img {
    max-width: 180px;
  }
}



/* servicios de visa */
/* ===== PÁGINA DE VISAS ===== */
.visas-page {
    margin-top: 70px;
    background: #f9fafb;
}

.visas-hero {
    background: linear-gradient(135deg, #eef2f8 0%, #ffffff 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.visas-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: rgb(58, 97, 154);
    margin-bottom: 16px;
}

.visas-hero-content h1 span {
    color: rgb(239, 75, 75);
    font-weight: 700;
}

.visas-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgb(66, 80, 107);
}

.visas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.visas-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(58, 97, 154);
    margin-bottom: 12px;
}

.visas-section-sub {
    font-size: 1rem;
    color: #5b6e8c;
    margin-bottom: 40px;
    border-left: 4px solid rgb(239, 75, 75);
    padding-left: 18px;
}

.visas-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 48px 0 56px;
}

.visa-card {
    background: white;
    border-radius: 28px;
    padding: 28px 32px;
    text-align: center;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    width: 200px;
    border: 1px solid #eef2f8;
    cursor: pointer;
}

.visa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
    border-color: rgb(239, 75, 75);
}

.visa-card i {
    font-size: 3rem;
    color: rgb(58, 97, 154);
    margin-bottom: 16px;
}

.visa-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: rgb(66, 80, 107);
}

.visa-card p {
    font-size: 0.8rem;
    color: #5b6e8c;
    font-weight: 500;
}

/* Países adicionales */
.visas-more {
    background: #ffffff;
    border-radius: 48px;
    padding: 32px 28px;
    margin: 40px 0 56px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px solid #e9edf2;
}

.visas-more-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.visas-more-header i {
    font-size: 1.8rem;
    color: rgb(239, 75, 75);
}

.visas-more-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(58, 97, 154);
}

.visas-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.visa-badge {
    background: #f1f5f9;
    padding: 8px 20px;
    border-radius: 60px;
    font-weight: 500;
    color: rgb(66, 80, 107);
    transition: all 0.2s;
    font-size: 0.9rem;
    cursor: pointer;
}

.visa-badge:hover {
    background: rgb(239, 75, 75);
    color: white;
    transform: scale(1.02);
}

/* ===== SECCIÓN EXPLICACIÓN DE VISA ===== */
.visas-explanation {
    background: linear-gradient(115deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 48px;
    padding: 40px 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 40px;
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
}

/* Contenedor del texto */
.visas-explanation-text {
    flex: 2;
    min-width: 260px;
}

/* Título justificado */
.visas-explanation-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(58, 97, 154);
    margin-bottom: 24px;
    text-align: justify;
    letter-spacing: -0.3px;
}

.visas-explanation-text h2 span {
    color: rgb(239, 75, 75);
    font-weight: 700;
}

/* Párrafos justificados */
.visas-explanation-text p {
    text-align: justify;
    margin-bottom: 20px;
    color: rgb(66, 80, 107);
    font-weight: 400;
    line-height: 1.7;
}

/* Lista con viñeta (también justificada) */
.visa-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.visa-list li {
    background: rgba(239, 75, 75, 0.06);
    padding: 16px 22px;
    border-radius: 40px;
    font-weight: 500;
    color: rgb(66, 80, 107);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: justify;
}

.visa-list li i {
    color: rgb(239, 75, 75);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Contenedor del ícono: se posiciona al fondo y centrado */
.visas-explanation-icon {
    flex: 1;
    text-align: center;
    font-size: 5.5rem;
    color: rgb(58, 97, 154);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Efecto hover opcional */
.visas-explanation:hover .visas-explanation-icon {
    transform: scale(1.02);
    opacity: 1;
    color: rgb(239, 75, 75);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .visas-explanation {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }

    .visas-explanation-text h2 {
        font-size: 1.8rem;
        text-align: justify;
    }

    .visas-explanation-text p,
    .visa-list li {
        text-align: justify;
    }

    .visas-explanation-icon {
        font-size: 4rem;
        order: 2;
        margin-top: 10px;
    }
}

@media (max-width: 550px) {
    .visas-explanation {
        padding: 24px 18px;
        border-radius: 32px;
    }

    .visas-explanation-text h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .visas-explanation-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .visa-list li {
        padding: 12px 16px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .visas-explanation-icon {
        font-size: 3.2rem;
      
    }
}






/* CTA Banner */
.visas-cta {
    background: linear-gradient(135deg, rgb(58, 97, 154), rgb(66, 80, 107));
    border-radius: 40px;
    padding: 48px 40px;
    margin: 60px 0 30px;
    text-align: center;
    color: white;
}

.visas-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.visas-cta p {
    max-width: 550px;
    margin: 0 auto 28px;
    opacity: 0.9;
}

.visas-cta-btn {
    background: rgb(239, 75, 75);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    font-size: 1rem;
}

.visas-cta-btn:hover {
    background: #c0392b;
    transform: scale(1.02);
    gap: 14px;
}

/* Responsive visas page */
@media (max-width: 780px) {
    .visas-hero-content h1 { font-size: 2.2rem; }
    .visas-section-title { font-size: 1.7rem; }
    .visas-explanation { padding: 28px 20px; }
    .visa-card { width: 160px; padding: 20px; }
    .visas-cta h3 { font-size: 1.4rem; }
    .visas-cta { padding: 32px 24px; }
}

@media (max-width: 550px) {
    .visas-cards { gap: 16px; }
    .visa-card i { font-size: 2.2rem; }
    .visas-badges { justify-content: center; }
    .visas-container { padding: 40px 16px; }
}


/* ===== HERO ESTÁTICO (reemplazo del slider) ===== */
.hero-static {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-static .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 97, 154, 0.75), rgba(66, 80, 107, 0.65));
    z-index: 2;
}

.hero-static-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
}

.hero-static-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-static-content h1 span {
    color: rgb(239, 75, 75);
}

.hero-static-content p {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 650px;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-static-content h1 {
        font-size: 2.8rem;
    }
    .hero-static-content p {
        font-size: 1.2rem;
    }
    .hero-static {
        min-height: 400px;
    }
}

@media (max-width: 550px) {
    .hero-static-content h1 {
        font-size: 2rem;
    }
    .hero-static-content p {
        font-size: 1rem;
    }
}




/* ===== HERO ESTÁTICO (reemplazo del slider) ===== */
.hero-static {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-static .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 97, 154, 0.75), rgba(66, 80, 107, 0.65));
    z-index: 2;
}

.hero-static-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
}

.hero-static-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-static-content h1 span {
    color: rgb(239, 75, 75);
}

.hero-static-content p {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 650px;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-static-content h1 {
        font-size: 2.8rem;
    }
    .hero-static-content p {
        font-size: 1.2rem;
    }
    .hero-static {
        min-height: 400px;
    }
}

@media (max-width: 550px) {
    .hero-static-content h1 {
        font-size: 2rem;
    }
    .hero-static-content p {
        font-size: 1rem;
    }
}


/* ===== PAÍSES CON FOTO Y BANDERA ===== */
.visas-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.visa-country-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.visa-country-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.country-flag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 2rem;
    z-index: 2;
    background: rgba(255,255,255,0.85);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.country-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.visa-country-card:hover .country-image {
    transform: scale(1.05);
}

.visa-country-card h4 {
    text-align: center;
    padding: 14px 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(58, 97, 154);
    margin: 0;
    background: white;
    border-top: 1px solid #eef2f8;
}

/* Responsive para grid de países */
@media (max-width: 780px) {
    .visas-country-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .country-image {
        height: 130px;
    }
    
    .country-flag {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        top: 8px;
        left: 8px;
    }
    
    .visa-country-card h4 {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
}

@media (max-width: 550px) {
    .visas-country-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .country-image {
        height: 110px;
    }
}




/* ===== LISTA CON VIÑETA PARA WHAT IS A VISA ===== */
.visa-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.visa-list li {
    background: rgba(239, 75, 75, 0.08);
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 500;
    color: rgb(66, 80, 107);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.visa-list li i {
    color: rgb(239, 75, 75);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}


/* ===== FOOTER FULL WIDTH - EXTREMO A EXTREMO ===== */
.site-footer {
    background: rgb(66, 80, 107);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: rgb(233, 233, 235);
    font-size: 0.85rem;
}

.footer-container strong {
    color: white;
    font-weight: 600;
}

.footer-container p {
    margin: 8px 0;
    line-height: 1.5;
}

/* Eliminar estilos antiguos del footer */
.footer-info {
    display: none;
}

/* Asegurar que el footer esté al final de la página */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* El contenido principal empuja el footer hacia abajo */
.visas-page {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-container {
        font-size: 0.75rem;
    }
}



 .insurance-info-card {
            max-width: 1280px;
            margin: 60px auto 40px auto;
            padding: 0 24px;
        }
        .insurance-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 32px;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
            padding: 48px 48px;
            border: 1px solid rgba(0, 85, 179, 0.15);
            transition: transform 0.2s ease;
        }
        .insurance-card:hover {
            transform: translateY(-4px);
        }
        .insurance-card h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #003366;
            margin-bottom: 28px;
            border-left: 5px solid #ff6b35;
            padding-left: 24px;
            line-height: 1.3;
        }
        .insurance-card p {
            font-size: 1rem;
            line-height: 1.65;
            color: #2c3e50;
            margin-bottom: 18px;
        }
        .insurance-card strong {
            color: #cc5500;
            font-weight: 600;
        }
        .insurance-contact-footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 2px dashed #cbdde9;
            gap: 20px;
        }
        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 1rem;
            font-weight: 500;
        }
        .contact-info i {
            font-size: 1.2rem;
            color: #0056b3;
            margin-right: 6px;
        }
        .contact-info span {
            background: #eef2fa;
            padding: 6px 14px;
            border-radius: 40px;
        }
        .note-badge {
            background: #fff1e0;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #b45f06;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .note-badge i {
            font-size: 1rem;
            color: #e68a2e;
        }
        .icon-end {
            text-align: right;
            margin-top: 20px;
            font-size: 2rem;
            color: #ff6b35;
        }
        @media (max-width: 768px) {
            .insurance-card {
                padding: 32px 24px;
            }
            .insurance-card h2 {
                font-size: 1.5rem;
                padding-left: 16px;
            }
            .insurance-contact-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            .icon-end {
                text-align: left;
                margin-top: 12px;
            }
        }


          /* ===== SECCIÓN DE CANCELACIÓN CON SISTEMA ===== */
        .cancellation-section {
            max-width: 1280px;
            margin: 40px auto 80px auto;
            padding: 0 24px;
        }
        .cancellation-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .cancellation-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #003366;
            margin-bottom: 12px;
        }
        .cancellation-header p {
            color: #4a627a;
            font-size: 1.1rem;
        }
        .cancellation-system {
            background: #ffffff;
            border-radius: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #e0edf5;
        }
        .system-banner {
            background: linear-gradient(135deg, #002244, #003366);
            padding: 24px 32px;
            color: white;
        }
        .system-banner h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .system-banner h3 i {
            margin-right: 12px;
            color: #ffaa66;
        }
        .system-banner p {
            opacity: 0.9;
        }
        .system-calculator {
            padding: 40px 40px;
            background: #fefefe;
        }
        .input-group {
            margin-bottom: 32px;
        }
        .input-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1e3a5f;
            font-size: 1rem;
        }
        .input-group input, .input-group select {
            width: 100%;
            padding: 14px 18px;
            font-size: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 28px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.2s;
            background: white;
        }
        .input-group input:focus, .input-group select:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        .coverage-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 32px;
        }
        .coverage-item {
            flex: 1;
            background: #f8fafc;
            border-radius: 24px;
            padding: 20px;
            border: 1px solid #e9f0f5;
            cursor: pointer;
            transition: all 0.2s;
        }
        .coverage-item.selected {
            border: 2px solid #ff6b35;
            background: #fff5ef;
            box-shadow: 0 8px 18px rgba(255, 107, 53, 0.12);
        }
        .coverage-item h4 {
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .coverage-item p {
            font-size: 0.85rem;
            color: #4b6b8f;
        }
        .price-tag {
            margin-top: 12px;
            font-weight: 700;
            color: #cc5500;
            font-size: 1.2rem;
        }
        .result-box {
            background: linear-gradient(120deg, #eef5ff, #ffffff);
            padding: 28px 32px;
            border-radius: 32px;
            text-align: center;
            margin-top: 20px;
        }
        .result-box .total-price {
            font-size: 2.4rem;
            font-weight: 800;
            color: #003366;
        }
        .result-box .total-price small {
            font-size: 1rem;
            font-weight: 400;
        }
        .protection-message {
            background: #e6f4ea;
            padding: 16px;
            border-radius: 28px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 500;
            color: #2e6b3e;
        }
        .btn-cancel-insure {
            background: #ff6b35;
            border: none;
            width: 100%;
            padding: 16px;
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            border-radius: 48px;
            cursor: pointer;
            margin-top: 28px;
            font-family: 'Poppins', sans-serif;
            transition: 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        .btn-cancel-insure:hover {
            background: #e55a2b;
            transform: scale(1.01);
        }
        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid #e2edf7;
            justify-content: center;
        }
        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #2c5a7a;
        }
        .feature i {
            color: #ffaa44;
        }
        @media (max-width: 768px) {
            .coverage-row { flex-direction: column; }
            .insurance-card { padding: 32px 24px; }
            .cancellation-header h2 { font-size: 1.7rem; }
            .system-calculator { padding: 24px; }
            .hero-static-content h1 { font-size: 2rem; }
        }


       

/* ===== DELIVERY SECTION (NUEVA) ===== */
.delivery-section {
    max-width: 1280px;
    margin: 40px auto 80px auto;
    padding: 0 24px;
}

.delivery-header {
    text-align: center;
    margin-bottom: 48px;
}

.delivery-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
}

.delivery-header h2 i {
    color: #ff6b35;
    margin-right: 12px;
}

.delivery-header p {
    color: #4a627a;
    font-size: 1.1rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.delivery-info-card,
.delivery-zones-card,
.delivery-steps-card,
.delivery-contact-card {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaf0f5;
    transition: transform 0.2s;
}

.delivery-info-card:hover,
.delivery-zones-card:hover,
.delivery-steps-card:hover,
.delivery-contact-card:hover {
    transform: translateY(-4px);
}

.delivery-icon-top {
    text-align: center;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.delivery-info-card h3,
.delivery-zones-card h3,
.delivery-steps-card h3,
.delivery-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.delivery-info-card p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 24px;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f8;
}

.delivery-feature i {
    font-size: 1.3rem;
    color: #ff6b35;
    width: 32px;
}

.delivery-feature div {
    display: flex;
    flex-direction: column;
}

.delivery-feature strong {
    font-weight: 600;
    color: #1e2a3e;
}

.delivery-feature span {
    font-size: 0.85rem;
    color: #6b8aad;
}

.zone-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.zone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2eaf1;
}

.zone-name i {
    margin-right: 8px;
    color: #ff6b35;
}

.zone-time {
    font-weight: 500;
    color: #2c5a7a;
}

.zone-price {
    font-weight: 700;
    color: #003366;
}

.express-note {
    background: #fff7e5;
    padding: 12px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b45f06;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text {
    color: #2c3e50;
}

.delivery-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #003366;
    color: white;
    padding: 14px 28px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    width: 100%;
    justify-content: center;
}

.delivery-cta:hover {
    background: #002244;
}

.delivery-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 28px;
}

.contact-method i {
    width: 32px;
    color: #ff6b35;
}

.delivery-faq details {
    margin-top: 16px;
    padding: 12px;
    background: #fafcfd;
    border-radius: 20px;
}

.delivery-faq summary {
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-faq summary i {
    color: #ff6b35;
}

.delivery-faq p {
    margin-top: 12px;
    padding-left: 28px;
    font-size: 0.9rem;
    color: #5a7a9a;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a1a2a;
    color: #cbd5e6;
    padding: 48px 0 32px;
    text-align: center;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-footer p {
    margin-bottom: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-left a:not(.menu-trigger) {
        display: none;
    }
    .logo-center {
        position: static;
        transform: none;
    }
    .hero-static-content h1 {
        font-size: 2rem;
    }
    .insurance-card {
        padding: 32px 24px;
    }
    .insurance-card h2 {
        font-size: 1.5rem;
    }
    .coverage-row {
        flex-direction: column;
    }
    .delivery-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== CONTENEDOR PRINCIPAL CENTRADO ===== */
.visas-featured-section,
.visas-info-section {
    width: 80%;
    margin: 0 auto;
    padding: 0;
}

/* Espaciado entre secciones */
.visas-featured-section:first-of-type {
    margin-top: 40px;
    margin-bottom: 40px;
}

.visas-featured-section:nth-of-type(2) {
    margin-top: 0;
    margin-bottom: 40px;
}

.visas-info-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Header de sección */
.visas-featured-header {
    text-align: center;
    margin: 5rem 0 ;
}

.visas-featured-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(58, 97, 154);
    margin-bottom: 8px;
}

.visas-featured-header h2 span {
    color: rgb(239, 75, 75);
}

.visas-featured-header p {
    font-size: 0.9rem;
    color: #5b6e8c;
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.5;
}

/* GRID - MISMA PROPORCIÓN QUE EL CUADRO DE INFORMACIÓN */
.visas-featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* TARJETAS - MISMO ANCHO QUE EL CONTENEDOR DE INFO */
.visa-featured-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%; /* Ocupa todo el espacio de su celda */
}

.visa-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Bandera */
.card-flag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.4rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* IMAGEN - EXPANDIDA AL MÁXIMO DE LA TARJETA */
.card-image {
    width: 100%;
    height: 140px; /* Aumentada para mejor proporción */
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.visa-featured-card:hover .card-image {
    transform: scale(1.03);
}

/* Contenido */
.card-content {
    padding: 12px 10px 14px;
    text-align: center;
}

.card-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(58, 97, 154);
    margin: 0;
}

/* ===== SECCIÓN DE INFORMACIÓN ADICIONAL ===== */
.visas-info-section {
    max-width: 65%;
    margin: 40px auto 60px auto;
}

.visas-info-container {
    background: linear-gradient(115deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 40px;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
}

/* Contenedor del texto */
.visas-info-text {
    width: 100%;
}

/* Título */
.visas-info-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgb(58, 97, 154);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.3px;
}

.visas-info-text h2 span {
    color: rgb(239, 75, 75);
    font-weight: 700;
}

/* Párrafos */
.visas-info-text p {
    text-align: justify;
    margin-bottom: 18px;
    color: rgb(66, 80, 107);
    font-weight: 400;
    line-height: 1.65;
    font-size: 0.95rem;
}

.visas-info-text p strong {
    color: rgb(58, 97, 154);
    font-weight: 600;
}

/* Lista con viñeta */
.visa-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.visa-info-list li {
    background: rgba(58, 97, 154, 0.06);
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 500;
    color: rgb(66, 80, 107);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.visa-info-list li i {
    color: rgb(58, 97, 154);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Ícono al final */
.visas-info-icon {
    text-align: center;
    font-size: 4rem;
    color: rgb(58, 97, 154);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    border-top: 2px dashed rgba(58, 97, 154, 0.2);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.visas-info-container:hover .visas-info-icon {
    transform: scale(1.02);
    opacity: 1;
    color: rgb(239, 75, 75);
}

/* ===== RESPONSIVE ===== */
/* Pantallas grandes */
@media (max-width: 1200px) {
    .visas-featured-section,
    .visas-info-section {
        max-width: 75%;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .visas-featured-section,
    .visas-info-section {
        max-width: 85%;
    }
    
    .visas-featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .card-image {
        height: 120px;
    }
    
    .visas-info-container {
        padding: 30px 28px;
    }
    
    .visas-info-text h2 {
        font-size: 1.6rem;
    }
    
    .visa-info-list {
        grid-template-columns: 1fr;
    }
}

/* Móviles */
@media (max-width: 650px) {
    .visas-featured-section,
    .visas-info-section {
        max-width: 92%;
    }
    
    .visas-featured-section:first-of-type {
        margin-top: 25px;
    }
    
    .visas-featured-header h2 {
        font-size: 1.4rem;
    }
    
    .visas-featured-header p {
        font-size: 0.75rem;
    }
    
    .visas-featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .card-image {
        height: 110px;
    }
    
    .card-content h3 {
        font-size: 0.75rem;
    }
    
    .card-flag {
        font-size: 1.2rem;
        width: 28px;
        height: 28px;
        top: 8px;
        left: 8px;
    }
    
    .visas-info-text h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .visas-info-text p {
        font-size: 0.85rem;
    }
    
    .visa-info-list li {
        font-size: 0.8rem;
        padding: 10px 14px;
    }
    
    .visas-info-icon {
        font-size: 3.2rem;
    }
}

/* Estilo para los checkmarks en lugar de números */
.step-check {
    width: 36px;
    height: 36px;
    background:  rgb(239, 75, 75);;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-check i {
    font-size: 1.1rem;
    color: white;
}

/* Opcional: Efecto hover */
.step:hover .step-check {
    background: #ff6b35;
    transition: all 0.3s ease;
}