/* =========================================================
   Estilos propios de visadeinmigracion.com
   (se cargan DESPUÉS de visanet.css para sobrescribir)
   ========================================================= */

/* --- Logo de texto (sustituye la imagen de la plantilla) --- */
.site-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo-text__mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #233A7F;
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
}
.site-logo-text__name {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  font-weight: 800;
  font-size: 19px;
  color: #233A7F;
}
.site-logo-text__name small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c8a24a;
  margin-top: 2px;
}

/* --- Widget flotante de WhatsApp (en todas las páginas) --- */
.wa-widget {
  position: fixed;
  right: 34px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 18px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transition: background .2s ease, transform .2s ease;
}
.wa-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}
.wa-float i { font-size: 22px; line-height: 1; }
@media (max-width: 575px) {
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-float { padding: 14px; }
  .wa-float__text { display: none; }
}

/* Nube CTA (aparece a los 10s) */
.wa-bubble {
  position: relative;
  max-width: 268px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
  animation: waBubbleIn .35s ease both;
}
.wa-bubble::after {
  content: '';
  position: absolute;
  right: 26px;
  bottom: -8px;
  width: 16px; height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, .06);
}
@keyframes waBubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wa-bubble__text { margin: 0 0 12px; font-size: 14px; line-height: 1.5; color: #2b3440; }
.wa-bubble__cta {
  width: 100%;
  background: #25D366; color: #fff; border: none;
  padding: 10px 14px; border-radius: 10px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background .2s ease;
}
.wa-bubble__cta:hover { background: #1ebe5d; }
.wa-bubble__close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: none; font-size: 20px; line-height: 1;
  color: #9aa6b2; cursor: pointer;
}
.wa-bubble__close:hover { color: #556; }

/* Modal del formulario de pre-contacto */
.wa-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.wa-modal[hidden] { display: none; }
.wa-modal__overlay { position: absolute; inset: 0; background: rgba(17, 24, 39, .6); }
.wa-modal__dialog {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  animation: waBubbleIn .3s ease both;
}
.wa-modal__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 26px; line-height: 1;
  color: #9aa6b2; cursor: pointer;
}
.wa-modal__close:hover { color: #333; }
.wa-modal__head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; padding-right: 26px; }
.wa-modal__icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.wa-modal__head h3 { margin: 0 0 4px; font-size: 19px; font-weight: 800; color: #233A7F; line-height: 1.25; }
.wa-modal__head p { margin: 0; font-size: 14px; color: #64707c; line-height: 1.45; }

.wa-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; margin-bottom: 12px; align-items: start; }
.wa-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.wa-form__row .wa-field { margin-bottom: 0; }
.wa-field > span { font-size: 12.5px; font-weight: 700; color: #3a4653; }
.wa-field input, .wa-field select, .wa-field textarea {
  width: 100%; border: 1px solid #d5dce4; border-radius: 10px;
  padding: 10px 12px; font-size: 14px; color: #223; background: #fff;
  font-family: inherit; transition: border-color .15s ease, box-shadow .15s ease;
}
.wa-field textarea { resize: vertical; }
.wa-field input:focus, .wa-field select:focus, .wa-field textarea:focus {
  outline: none; border-color: #233A7F; box-shadow: 0 0 0 3px rgba(35, 58, 127, .12);
}
.wa-field input.is-invalid, .wa-field select.is-invalid, .wa-field textarea.is-invalid {
  border-color: #BF1731; box-shadow: 0 0 0 3px rgba(191, 23, 49, .12);
}
.wa-form__row--phone { grid-template-columns: 116px 1fr; }
.wa-form__error { margin: 4px 0 10px; color: #BF1731; font-size: 13px; font-weight: 600; }
.wa-form__submit {
  width: 100%; margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff; border: none;
  padding: 14px 18px; border-radius: 12px;
  font-weight: 800; font-size: 16px; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.wa-form__submit:hover { background: #1ebe5d; transform: translateY(-1px); }
.wa-form__submit i { font-size: 20px; }
.wa-form__note { margin: 10px 0 0; text-align: center; font-size: 12px; color: #8a95a1; }

@media (max-width: 520px) {
  .wa-form__row { grid-template-columns: 1fr; }
  .wa-modal__dialog { padding: 22px 18px 18px; }
}

/* --- Cuerpo de artículo del blog --- */
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #233A7F;
  margin: 32px 0 12px;
  line-height: 1.3;
}
.article-body p { margin: 0 0 16px; line-height: 1.75; }
.article-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}
.article-body ul li { margin-bottom: 8px; line-height: 1.7; }
.article-body a {
  color: #BF1731;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover { color: #233A7F; }
.article-body strong { color: #233A7F; }

/* --- Caja CTA dentro del artículo --- */
.blog-article-cta {
  margin: 36px 0;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #233A7F, #1a2c60);
  color: #fff;
  text-align: center;
}
.blog-article-cta h3 { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.blog-article-cta p { color: #cdd8e6; margin: 0 0 20px; }

/* --- "Sigue leyendo" --- */
.blog-article-more { margin-top: 40px; }
.blog-article-more h3 { font-size: 22px; font-weight: 700; color: #233A7F; margin-bottom: 16px; }
.blog-article-more ul li {
  padding: 14px 0;
  border-bottom: 1px solid #e6ebf1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-article-more ul li a { font-weight: 600; color: #233A7F; }
.blog-article-more ul li a:hover { color: #BF1731; }
.blog-article-more ul li span { color: #7a8894; font-size: 14px; }

/* ===== Landing de visa (data-driven) ===== */
.vl-hero-sub { margin-top: 18px; font-size: 17px; font-weight: 600; color: #233A7F; }
.visa-details__box { margin-bottom: 28px; }

/* Sidebar: visa activa de la categoría */
.visa-details__nav li.vl-nav--active > a { color: #BF1731; font-weight: 700; }
.vl-side-cta {
  margin-top: 22px; padding: 22px; border-radius: 14px;
  background: #233A7F; color: #fff; text-align: center;
}
.vl-side-cta p { color: #cdd8e6; margin: 0 0 14px; font-weight: 600; }

/* Listas con check */
.vl-list { list-style: none; padding: 0; margin: 0; }
.vl-list li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  line-height: 1.65; color: #47586a;
}
.vl-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; line-height: 20px; text-align: center;
  color: #fff; background: #1a7f37; border-radius: 50%; font-size: 12px;
}
.vl-list--x li::before { content: '\2715'; background: #BF1731; }
.vl-list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
@media (max-width: 640px) { .vl-list--grid { grid-template-columns: 1fr; } }

/* Pasos numerados */
.vl-steps { counter-reset: vlstep; list-style: none; padding: 0; margin: 0; }
.vl-steps li {
  position: relative; padding-left: 46px; margin-bottom: 16px;
  line-height: 1.65; color: #47586a;
}
.vl-steps li::before {
  counter-increment: vlstep; content: counter(vlstep);
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; line-height: 32px; text-align: center;
  background: #233A7F; color: #fff; border-radius: 50%; font-weight: 700; font-size: 14px;
}
.vl-steps li strong { color: #233A7F; }

/* Documentos (chips) */
.vl-docs { display: flex; flex-wrap: wrap; gap: 10px; }
.vl-doc {
  display: inline-block; padding: 8px 14px; font-size: 14px; color: #233A7F;
  background: #f2f5f9; border: 1px solid #e0e7ef; border-radius: 8px;
}

/* Banda CTA "Listo para evaluar tu caso" */
.vl-cta-band { background: linear-gradient(135deg, #233A7F, #1a2c60); padding: 50px 0; }
.vl-cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.vl-cta-band h2 { color: #fff; font-size: 30px; font-weight: 800; margin: 0 0 6px; }
.vl-cta-band p { color: #cdd8e6; margin: 0; max-width: 560px; }
.vl-cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.vl-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 15px 24px; border-radius: 8px;
  font-weight: 700; text-decoration: none;
}
.vl-wa-btn:hover { background: #1ebe5d; color: #fff; }
.vl-wa-btn i { font-size: 20px; }

/* Bloques de categoría en el listado de visas */
.visa-cat-block { margin-bottom: 40px; }
.visa-cat-block__title {
  font-size: 24px; font-weight: 800; color: #233A7F;
  margin: 0 0 24px; padding-left: 14px; border-left: 4px solid #BF1731;
}

/* Introducción de la página de categoría */
.cat-intro {
  max-width: 820px; margin: 0 auto 40px; text-align: center;
  font-size: 17px; line-height: 1.75; color: #47586a;
}

/* ===== Logo de marca (imagen) ===== */
.site-logo-icon { height: 48px; width: auto; display: block; }
.site-logo-text { gap: 12px; align-items: center; }
.site-logo-text__name { color: #233A7F; }
.site-logo-text__name small { color: #4d4c4c !important; }

/* Footer: navy profundo para que el logo (azul de marca) contraste bien */
.main-footer { background-color: #0e1a40; }
.main-footer .main-footer__bg { opacity: .35; }

/* Logo horizontal del header (a color, sobre fondo blanco) */
.main-header__logo img.site-logo-horizontal {
  height: 56px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}
@media (max-width: 575px) {
  .main-header__logo img.site-logo-horizontal { height: 46px !important; }
}

/* ===== Avatares con iniciales (testimonios) ===== */
.testimonial-initials {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #233A7F, #BF1731);
  color: #fff; font-weight: 800; letter-spacing: 1px;
  border-radius: 50%; text-transform: uppercase;
}
/* Avatar grande (dentro de la tarjeta de testimonio) */
.testimonials-one__image .testimonial-initials {
  width: 200px; height: 200px; max-width: 100%;
  font-size: 60px; margin: 0 auto;
}
/* Avatar pequeño (navegación por thumbnails) */
.testimonial-initials--sm {
  width: 100%; height: 100%; aspect-ratio: 1 / 1;
  font-size: 20px;
}

/* Testimonios sin foto: quitar marco decorativo y dejar avatar limpio */
.testimonials-one__image::before,
.testimonials-one__image::after { content: none !important; display: none !important; }
.testimonials-one__image {
  background: none !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 0 !important;
}
.testimonials-one__image .testimonial-initials { width: 150px; height: 150px; font-size: 48px; }
.testimonials-one__quote-icon { position: static !important; margin-left: 14px; }

/* Quitar la banda roja angular decorativa del testimonio (era para la foto) */
.testimonials-one__inner::before { display: none !important; }
.testimonials-one__inner { padding-top: 20px; }

/* ===== Reseñas estilo Google (fondo blanco) ===== */
.greview {
  background: #fff; border: 1px solid #e6ebf1; border-radius: 16px;
  padding: 28px 26px; height: 100%;
  box-shadow: 0 6px 22px rgba(10, 37, 64, .06);
  display: flex; flex-direction: column;
}
.greview__quote { color: #233A7F; font-size: 26px; line-height: 1; margin-bottom: 10px; }
.greview__text { color: #47586a; font-size: 15.5px; line-height: 1.65; margin: 0 0 22px; flex: 1 1 auto; }
.greview__person { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.greview__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, #233A7F, #BF1731);
  color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; text-transform: uppercase;
}
.greview__name { font-size: 15px; font-weight: 700; color: #0e1a40; margin: 0; line-height: 1.2; }
.greview__place { font-size: 13px; color: #8492a0; }
.greview__rating {
  border-top: 1px solid #eef1f5; padding-top: 14px;
  font-size: 14px; color: #8492a0; display: flex; align-items: center; gap: 8px;
}
.greview__stars { color: #FBBC05; letter-spacing: 2px; font-size: 16px; }
.greview__star--off { color: #dfe3e8; }

/* Insignia Google Reviews */
.google-reviews-badge { margin-top: 44px; text-align: center; }
.gr-logo { font-family: 'Roboto', Arial, sans-serif; font-weight: 700; font-size: 34px; letter-spacing: -1px; line-height: 1; }
.gr-sub { margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.gr-reviews { color: #5f6368; font-size: 20px; font-weight: 500; }
.gr-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }

/* Nav y dots del carrusel de reseñas */
.greviews__carousel .owl-dots { text-align: center; margin-top: 26px; }
.greviews__carousel .owl-dots .owl-dot span { width: 10px; height: 10px; background: #d5dce4; border-radius: 50%; display: inline-block; margin: 0 5px; transition: .25s; }
.greviews__carousel .owl-dots .owl-dot.active span { background: #233A7F; width: 26px; border-radius: 6px; }

/* Reseñas: ocultar flechas, dejar solo los puntos */
.greviews__carousel .owl-nav { display: none !important; }

/* ===== Servicios en Latinoamérica: bandera junto al nombre ===== */
.countries-one__name.pais-name { display: flex; align-items: center; gap: 10px; }
.countries-one__name img.pais-flag {
  width: 38px !important; height: 26px !important; max-width: 38px !important;
  min-width: 38px; border-radius: 3px; flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
  object-fit: cover; display: inline-block;
}
.countries-one__card .countries-one__content { padding-top: 26px; }
/* ocultar marcadores decorativos (cuadrito) de la plantilla */
.countries-one__name.pais-name::before,
.countries-one__name.pais-name::after { display: none !important; content: none !important; }

/* ===== Tarjetas de visa del inicio: función + alturas uniformes ===== */
.visa-card__func { font-size: .58em; font-weight: 600; color: #BF1731; white-space: nowrap; }
.visa-card--uniform .visa-card__title {
  min-height: 52px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; line-height: 1.25;
}
.visa-card--uniform .visa-card__text {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 46px; margin: 0;
}

/* Ocultar imagen secundaria placeholder del hero */
.hero-slider__image-2 { display: none !important; }

/* ===== Formulario de evaluación por visa (vf-*) ===== */
html { scroll-behavior: smooth; }
.vf-band { background: linear-gradient(135deg, #233A7F, #1a2c60); padding: 64px 0 72px; }
.vf-head { text-align: center; max-width: 780px; margin: 0 auto 34px; }
.vf-head h2 { color: #fff; font-size: 32px; font-weight: 800; margin: 0 0 10px; }
.vf-head p { color: #cdd8e6; font-size: 17px; margin: 0; }
.vf-card {
  background: #fff; border-radius: 18px; max-width: 940px; margin: 0 auto;
  padding: 36px 32px; box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
@media (max-width: 575px) { .vf-card { padding: 26px 18px; } }
.vf-hp { display: none !important; }
.vf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
@media (max-width: 700px) { .vf-grid { grid-template-columns: 1fr; } }
.vf-field--full { grid-column: 1 / -1; }
.vf-field label, .vf-field .vf-label {
  display: block; font-weight: 700; font-size: 14.5px; color: #233A7F; margin-bottom: 8px;
}
.vf-field input[type=text], .vf-field input[type=tel], .vf-field input[type=email],
.vf-field select, .vf-field textarea {
  width: 100%; border: 1px solid #d5dce6; border-radius: 9px; padding: 12px 14px;
  font-size: 15px; color: #20304a; background: #fff; outline: none; transition: border-color .15s;
}
.vf-field textarea { min-height: 100px; resize: vertical; }
.vf-field input:focus, .vf-field select:focus, .vf-field textarea:focus { border-color: #233A7F; }
.vf-phone { display: flex; gap: 10px; }
.vf-phone select { width: 46%; flex: none; }
.vf-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.vf-pill { position: relative; margin: 0; }
.vf-pill input { position: absolute; opacity: 0; pointer-events: none; }
.vf-pill span {
  display: inline-block; border: 1.5px solid #d5dce6; border-radius: 999px;
  padding: 9px 17px; font-size: 14px; color: #41526b; cursor: pointer;
  transition: all .15s; user-select: none;
}
.vf-pill span:hover { border-color: #233A7F; }
.vf-pill input:checked + span { background: #233A7F; border-color: #233A7F; color: #fff; }
.vf-err { display: none; color: #BF1731; font-size: 13px; margin-top: 6px; }
.vf-field--error .vf-err { display: block; }
.vf-field--error input, .vf-field--error select, .vf-field--error textarea { border-color: #BF1731; }
.vf-field--error .vf-pill span { border-color: #BF1731; }
.vf-actions { grid-column: 1 / -1; display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.vf-btn {
  border: none; cursor: pointer; border-radius: 10px; padding: 16px 26px;
  font-weight: 800; font-size: 15px; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 10px; transition: all .15s; color: #fff;
}
.vf-btn i { font-size: 17px; }
.vf-btn--mail { background: #BF1731; }
.vf-btn--mail:hover { background: #a01128; }
.vf-btn--wa { background: #25D366; }
.vf-btn--wa:hover { background: #1ebe5d; }
.vf-btn:disabled { opacity: .6; cursor: wait; }
@media (max-width: 575px) { .vf-btn { width: 100%; justify-content: center; } }
.vf-note { grid-column: 1 / -1; font-size: 12.5px; color: #8492a0; margin: 4px 0 0; line-height: 1.6; }
.vf-status { display: none; }
.vf-status--ok {
  display: block; background: #eaf7ee; border: 1px solid #bfe5c8; color: #14532d;
  padding: 26px 24px; border-radius: 12px; font-size: 16.5px; text-align: center; line-height: 1.6;
}
.vf-status--bad {
  display: block; background: #fdecec; border: 1px solid #f5b5b5; color: #8f1d1d;
  padding: 14px 18px; border-radius: 10px; margin-top: 16px; font-size: 14.5px; text-align: center;
}

/* ===== Landing de visa: ajustes de layout ===== */
/* Imagen compacta (antes muy grande) */
.vl-hero-img { border-radius: 14px; overflow: hidden; margin-bottom: 0; }
.vl-hero-img img { width: 100%; height: auto; max-height: 300px; object-fit: cover; display: block; }
/* Subtítulo + separación con "¿Qué es?" (arregla el solape en móvil) */
.vl-hero-sub { margin: 18px 0 22px !important; }
.vl-intro { clear: both; }
.vl-intro .visa-details__title:first-child { margin-top: 4px; }
.vl-intro .visa-details__title { margin-top: 22px; }

/* Dos columnas divididas por una línea (requisitos|errores, cómo ayudamos|documentos) */
.vl-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; margin-bottom: 34px; }
.vl-two-col .visa-details__title { margin-top: 0; }
.vl-col--divider { border-left: 1px solid #e3e8ef; padding-left: 44px; }
@media (max-width: 767px) {
  .vl-two-col { grid-template-columns: 1fr; gap: 0; }
  .vl-col--divider { border-left: none; padding-left: 0; border-top: 1px solid #e3e8ef; padding-top: 26px; margin-top: 6px; }
}

/* Proceso paso a paso: funnel horizontal (→ vertical en móvil) */
.vl-process-box { margin: 6px 0 30px; }
.vl-center { text-align: center; }
.vl-funnel { display: flex; align-items: stretch; justify-content: center; gap: 4px; }
.vl-funnel__step {
  flex: 1 1 0; min-width: 0; background: #f4f7fc; border: 1px solid #e5ecf5;
  border-radius: 12px; padding: 22px 14px 18px; text-align: center;
}
.vl-funnel__num {
  width: 42px; height: 42px; border-radius: 50%; background: #233A7F; color: #fff;
  font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; box-shadow: 0 4px 12px rgba(35, 58, 127, .3);
}
.vl-funnel__title { font-size: 15px; font-weight: 800; color: #0e1a40; margin: 0 0 6px; line-height: 1.25; }
.vl-funnel__detail { font-size: 12.5px; line-height: 1.5; color: #61707f; margin: 0; }
.vl-funnel__arrow { display: flex; align-items: center; justify-content: center; color: #BF1731; font-size: 18px; flex: 0 0 auto; padding: 0 2px; }
@media (max-width: 767px) {
  .vl-funnel { flex-direction: column; align-items: stretch; gap: 0; }
  .vl-funnel__step { padding: 18px 16px; }
  .vl-funnel__arrow { transform: rotate(90deg); padding: 6px 0; }
}

/* Reducir el gran espacio en blanco antes de las FAQ */
.vl-details.section-space { padding-bottom: 44px; }
.vl-faq { padding-top: 26px; }

/* Fix solape: apilar sidebar e imagen en tablet/móvil (<992px) */
@media (max-width: 991.98px) {
  .vl-details .row.gutter-y-40 > [class*="col-"] { flex: 0 0 100%; max-width: 100%; }
}
.vl-details .visa-details__content { margin-top: 10px; }

/* La plantilla estira .visa-details__image a height:100% del column: forzar auto */
.vl-details .visa-details__image.vl-hero-img { height: auto !important; }

/* ===== Ajustes finales (2026-07-10) ===== */
/* Checks azules en "¿Para quién es?" y "¿Cómo te ayudamos?" */
.vl-list--blue li::before { background: #233A7F; }

/* Hero inicio: tagline "Tu camino a Estados Unidos" en blanco */
.hero-slider__tagline__text,
.hero-slider__tagline__text span { color: #ffffff !important; }

/* Footer: submenú de categorías dentro de "Visas" */
.footer-widget__sublinks { list-style: none; margin: 6px 0 4px; padding: 0 0 0 14px; }
.footer-widget__sublinks li { margin: 0; }
.footer-widget__sublinks li a { font-size: 14px; opacity: .85; }
.footer-widget__has-sub > a { font-weight: 700; }

/* Footer: crédito "Creado por Cesar GH" */
.main-footer__credit { color: #f4c9cf; }
.main-footer__credit a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.main-footer__credit a:hover { color: #ffe1e6; }

/* ===== Ajustes footer (2026-07-10 · 2) ===== */
/* Copyright y crédito: respetar mayúsculas/minúsculas reales (sin Title Case) */
.main-footer__copyright,
.main-footer__credit { text-transform: none !important; }

/* Contacto: aire a la derecha para que el correo no toque "Horario" */
.footer-widget--contact { padding-right: 24px; }
.footer-widget--contact .footer-widget__links a { word-break: break-word; }

/* Botón de WhatsApp: más abajo y separado de las letras rojas "BACK TO TOP"
   (dejando ver la flecha "volver arriba") y libre la esquina del pie. */
.wa-widget { right: 50px; bottom: 70px; }
@media (max-width: 575px) { .wa-widget { right: 42px; bottom: 66px; } }

/* Crédito "Creado por Cesar GH": alineado a la derecha del pie de página */
.main-footer__page { justify-content: flex-end; }
.main-footer__credit { text-align: right; }

/* ===== Página de contacto (2026-07-20) ===== */
.contact-lead-intro { max-width: 760px; margin: 0 auto 30px; text-align: center; color: #5a6675; line-height: 1.7; }
.contact-lead-wrap { max-width: 860px; margin: 0 auto; }
.contact-map { height: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,.10); min-height: 420px; }
.contact-map iframe { display: block; }
.contact-details { height: 100%; background: #f4f7fc; border: 1px solid #e5ecf5; border-radius: 16px; padding: 34px 32px; }
.contact-details__title { font-size: 24px; font-weight: 800; color: #233A7F; margin: 0 0 22px; }
.contact-details__list li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #e3e9f2; }
.contact-details__list li:last-child { border-bottom: none; }
.contact-details__icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: #BF1731; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-details__list h4 { font-size: 16px; font-weight: 700; color: #233A7F; margin: 0 0 4px; }
.contact-details__list p { margin: 0; color: #5a6675; line-height: 1.55; font-size: 15px; }
.contact-details__list a { color: #5a6675; font-weight: 600; }
.contact-details__list a:hover { color: #BF1731; }
.contact-details__dir { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; background: #233A7F; color: #fff; padding: 12px 22px; border-radius: 10px; font-weight: 700; }
.contact-details__dir:hover { background: #1a2c60; color: #fff; }

/* ===== Carrusel de banderas (Latinoamérica) ===== */
.cc-flags__title { text-align: center; color: #fff; font-weight: 700; font-size: 18px; margin: 0 0 26px; opacity: .95; }
.cc-flag { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cc-flag__img { width: 58px; height: auto; border-radius: 5px; box-shadow: 0 6px 16px rgba(0,0,0,.28); display: block; }
.cc-flag__name { color: #fff; font-weight: 600; font-size: 14px; opacity: .92; }

/* ===== Página de gracias (conversión) ===== */
.gracias-card { max-width: 720px; margin: 0 auto; text-align: center; background: #f4f7fc; border: 1px solid #e5ecf5; border-radius: 20px; padding: 48px 40px; }
.gracias-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 84px; height: 84px; border-radius: 50%; background: #1a7f37; color: #fff; font-size: 38px; margin-bottom: 22px; }
.gracias-card__title { font-size: 30px; font-weight: 800; color: #233A7F; margin: 0 0 16px; }
.gracias-card__text { color: #5a6675; line-height: 1.75; margin: 0 auto 28px; max-width: 560px; }
.gracias-card__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gracias-card__wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; padding: 13px 24px; border-radius: 12px; }
.gracias-card__wa:hover { background: #1ebe5d; color: #fff; }
.gracias-card__home { display: inline-flex; align-items: center; background: #233A7F; color: #fff; font-weight: 700; padding: 13px 24px; border-radius: 12px; }
.gracias-card__home:hover { background: #1a2c60; color: #fff; }
.gracias-card__note { margin: 24px 0 0; font-size: 14px; color: #8a95a1; }
@media (max-width: 575px) { .gracias-card { padding: 34px 22px; } .gracias-card__title { font-size: 24px; } }

/* ===== Overlays más suaves para dejar ver las fotos de fondo ===== */
/* Sección del avión: dejar ver la ciudad de EE.UU. detrás del azul */
.fly-one__bg::after { background-color: rgba(35, 58, 127, 0.68) !important; }
/* Pie de página: dejar ver la foto de fondo (foto 16) */
.main-footer__bg::after { background-color: rgba(35, 58, 127, 0.82) !important; }

/* ===== Rendimiento: evitar el "salto" (CLS) del hero =====
   CAUSA: owl-carousel trae en su CSS `display:none` hasta que carga el JS → el hero
   mide 0px al inicio y de golpe crece ~815px, empujando todo hacia abajo (CLS enorme).
   FIX: mostrar el hero (solo el 1er slide) desde el primer render, con la altura ya
   reservada. Owl igual lee todos los items del DOM al inicializar. */
.hero-slider__carousel { display: block; min-height: 815px; }
.hero-slider__carousel:not(.owl-loaded) { overflow: hidden; }
.hero-slider__carousel:not(.owl-loaded) > .hero-slider__item:not(:first-child) { display: none; }
@media (max-width: 1299px) { .hero-slider__carousel { min-height: 800px; } }
@media (max-width: 991px)  { .hero-slider__carousel { min-height: 780px; } }
@media (max-width: 767px)  { .hero-slider__carousel { min-height: 700px; } }
@media (max-width: 575px)  { .hero-slider__carousel { min-height: 640px; } }
