/* ===================================================================
   responsive.css (actualizado)
   - Responsive general
   - Hamburguer / Off-canvas navigation (mobile)
   - Cards layout
   - Accesibilidad, motion preferences y mejoras iOS
   =================================================================== */

/* ===== Hardening global para evitar desbordes en móvil ===== */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, svg, video { max-width: 100%; height: auto; display: block; }

/* ===================== RESPONSIVE GENERAL ===================== */
@media (max-width: 1199.98px) {
  .container {
    width: 97%;
    /* de 100vw -> 100% para no sumar scrollbar/safe-areas */
    max-width: 100%;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  body { padding-top: 74px; }
}

@media (max-width: 1307.98px) {
  header.site-header .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding: 0.7rem 0.7rem 0.4rem 0.7rem;
  }
  .logo img { height: 39px; }
  body { padding-top: 65px; }
  .footer-top { margin-top: -8%; }
}

@media (max-width: 767.98px) {
  .display-6, h2, .advantages-title, .howitworks-title {
    font-size: clamp(1.15rem, 1.1rem + 1.2vw, 1.6rem) !important;
    line-height: 1.18;
  }
  .footer-top { margin-top: -12%; }
  main[role="main"] { margin-bottom: 1rem; }
}

@media (max-width: 575.98px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 0.6rem;
  }
  body { padding-top: 59px; }
  .footer-top { margin-top: -15%; }
  .support-phones { margin-left: 0; width: 100%; }
}

/* ================= HAMBURGUER NAV (MOBILE) ================= */
@media (max-width: 1307.98px) {
  /* Botón de apertura */
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(80,60,120,0.07);
    font-size: 2rem;
    cursor: pointer;
    z-index: 3002;
    position: relative;
    margin-left: auto;
    order: 99;
    transition: box-shadow .18s, transform .18s;
    touch-action: manipulation;
  }
  .nav-toggle:active { transform: scale(0.98); }
  .nav-toggle:focus { outline: none; }
  .nav-toggle:focus-visible {
    outline: 2px solid #df008f55;
    outline-offset: 2px;
  }
  .nav-toggle:active,
  .nav-toggle:focus {
    box-shadow: 0 6px 24px rgba(80,60,120,0.13);
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    z-index: 2;
    inset: 0;
    background: rgba(20,18,31, 0.18);
    backdrop-filter: blur(2px);
    transition: opacity 0.18s;
    opacity: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-overlay.show { display: block; opacity: 1; }

  /* Panel off-canvas (fix ancho máximo) */
  .main-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    /* antes: width: calc(92vw + env(safe-area-inset-right, 0px)); */
    width: min(92vw, 260px); /* jamás excede el viewport */
    height: 100vh;
    background: #fff;
    z-index: 5000;
    box-shadow: -5px 0 30px 0 rgba(60,60,70,0.09);
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    padding: 1.2rem 0 1.1rem 0;
    transform: translateX(110%);
    transition: transform 0.30s cubic-bezier(.55,0,.25,1);
    overflow-y: auto;
    overflow-x:hidden;
    display: block;
    box-sizing: border-box;
    min-width: 0;
    will-change: transform;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    /* safe-area sólo en padding, no en width */
    padding-right: calc(0.6rem + env(safe-area-inset-right, 0px));
  }
  .main-nav.open {
    transform: translateX(0%);
    border: none !important;
  }

  /* Scrollbar sutil en el panel */
  .main-nav::-webkit-scrollbar { width: 10px; }
  .main-nav::-webkit-scrollbar-track { background: transparent; }
  .main-nav::-webkit-scrollbar-thumb {
    background: #e9e9f1;
    border-radius: 10px;
    border: 2px solid #fff;
  }

  /* Botón X cerrar menú */
  .main-nav .menu-close {
    position: absolute;
    right: calc(1.1rem + env(safe-area-inset-right, 0px));
    top: 1.15rem;
    font-size: 2.1rem;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 5200;
    padding: 0;
    line-height: 1;
    touch-action: manipulation;
  }
  .main-nav .menu-close:focus { outline: none; }
  .main-nav .menu-close:focus-visible {
    outline: 2px solid #df008f55;
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* Menú vertical */
  .main-nav nav > ul.menu {
    display: flex !important;
    flex-direction: column;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    gap: 0.08rem;
    width: 100%;
    border-radius: 0;
    position: static;
  }

  .main-nav nav > ul.menu > li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: background 0.17s;
  }

  .main-nav nav > ul.menu > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.10rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: #008844;
    background: none;
    padding: 0.78rem 1.45rem;
    border: none;
    text-align: left;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.18s, color 0.18s;
    min-height: 44px;
  }
  .main-nav nav > ul.menu > li > a:hover,
  .main-nav nav > ul.menu > li.open > a {
    background: #f3f3fb;
    color: #df008f;
  }

  .main-nav nav > ul.menu > li.has-children > a::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    font-size: 1.05em;
    color: #606070;
    transition: transform 0.18s;
  }
  .main-nav nav > ul.menu > li.has-children.open > a::after {
    transform: rotate(180deg);
  }

  /* Submenús */
  .main-nav nav > ul.menu > li > ul {
    display: block;
    margin-top: 0.02rem;
    margin-bottom: 0.1rem;
    padding: 0.15rem 0 0.20rem 1.6rem;
    background: #f8f9fb;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    border-radius: 9px;
    min-width: 0;
    width: 90%;
    position: relative;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(.52,0,.36,1), opacity 0.19s;
    pointer-events: none;
  }
  .main-nav nav > ul.menu > li.open > ul {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    animation: fadeinSub 0.17s;
  }
  @keyframes fadeinSub {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav nav > ul.menu > li > ul > li { margin: 0; padding: 0; }
  .main-nav nav > ul.menu > li > ul > li > a {
    display: block;
    padding: 0.56rem 0 0.56rem 0.8rem;
    color: #222;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 7px;
    margin-bottom: 0.03rem;
    text-align: left;
    text-decoration: none !important;
    transition: background 0.18s, color 0.18s;
    min-height: 40px;
  }
  .main-nav nav > ul.menu > li > ul > li > a:hover,
  .main-nav nav > ul.menu > li > ul > li > a:focus-visible {
    background: #df008f14;
    color: #df008f;
    outline: none;
  }

  .main-nav .menu-divider {
    margin: 1rem 0 0.4rem 0;
    border-top: 1.3px solid #ececec;
  }

  /* ===== Selector de idioma dentro del panel ===== */
  .main-nav .oc-lang {
    display: flex !important;
    position: relative !important;
    background: #f8f9fa !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 10px;
    padding: 1rem 1.5rem 0.5rem 1.5rem !important;
    margin: 2rem 2rem 2rem 2rem !important;
    width: 96%;
    justify-content: flex-start;
    align-items: center;
    z-index: 5500;
  }
  .main-nav .oc-lang__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.06rem;
    font-weight: 600;
    color: #222;
    padding: 0.48rem 0;
    background: none;
    border: none;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    min-height: 44px;
    touch-action: manipulation;
  }
  .main-nav .oc-lang__btn::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    font-size: 1.12em;
    color: #606070;
    transition: transform 0.18s;
  }
  .main-nav .oc-lang.show .oc-lang__btn::after { transform: rotate(180deg); }

  .main-nav .lang-menu {
    position: absolute !important;
    left: 0.5rem !important;
    right: auto;
    min-width: 140px;
    top: 105%;
    z-index: 6000;
    background: #f8f9fb;
    box-shadow: 0 8px 22px rgba(30,20,80,0.13);
    border-radius: 10px;
    padding: 0.18rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s;
  }
  .main-nav .oc-lang.show .lang-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav .lang-item {
    width: 100%;
    padding: 1rem 6rem;
    border-radius: 8px;
    font-size: 1.02rem;
    background: none;
    margin-bottom: 0.05rem;
    text-align: left;
    color: #111;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.17s, color 0.17s;
  }
  .main-nav .lang-item.active,
  .main-nav .lang-item:focus,
  .main-nav .lang-item:hover {
    background: #df008f17;
    color: #df008f;
    outline: none;
  }

  /* Ocultar selector de idioma del header fuera del menú */
  header .oc-lang { display: none !important; }
}

/* Oculta hamburguesa en escritorio */
@media (min-width: 1307px) {
  .nav-toggle { display: none !important; }
  .nav-overlay { display: none !important; }
}

/* Bloquea el scroll del body cuando el menú está abierto */
@media (max-width: 1307.98px) {
  body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100vw;
  }
}

/* ================= Cards en 1-2 columnas para móvil ================= */
@media (max-width: 991.98px) {
  .row.g-4,
  .row.g-4.justify-content-center,
  .row.gy-4.gx-md-5.justify-content-center {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.9rem 0.9rem;
  }

  /* 2 por fila con gap estable (en lugar de 47%) */
  .col-6, .col-md-3, .col-md-2, .col-lg-4 {
    flex: 0 0 calc(50% - 0.45rem) !important;
    max-width: calc(50% - 0.45rem) !important;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
  }

  /* En col-12, ocupar toda la fila */
  .col-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Card centrada */
  .category-card,
  .product-card,
  .article-card,
  .step-card {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
  }
}

/* Título bajo imagen, centrado */
.product-title {
  display: block;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  text-align: center;
  min-height: 2.4em;
  font-size: 1.05rem;
  font-weight: 600;
  color: #16223e;
  width: 100%;
  word-break: break-word;
}

/* Evitar texto al lado de imagen en chico */
.col-6.col-md-3 { flex-direction: column; }
.product-card { width: 100%; }

/* ===================== Preferencias de movimiento ===================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================= CENTRADO EN MÓVILES (footer) ================= */
@media (max-width: 991.98px) {
  /* 1) Texto y elementos centrados (vence al left !important previo) */
  .footer-top,
  .footer-top * {
    text-align: center !important;
  }

  /* 2) Centrado del layout con flex: */
  .footer-top .container {
    display: flex !important;
    align-items: center !important;   /* centro vertical dentro del alto disponible */
    justify-content: center !important; /* centro horizontal */
  }

  .footer-top .row {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;    /* centra columnas */
    justify-content: center !important;/* centra vertical en el bloque */
    gap: 1rem !important;
  }

  /* 3) Columnas del footer centradas (antes estaban en flex-start) */
  .footer-top .col-lg-6,
  .footer-top .col-lg-4,
  .footer-top .col-lg-2 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important;
  }

  /* 4) Listas/links centrados y alineados */
  .footer-top .support-phones { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: inline-block; 
  }
  .footer-top .support-phones li { 
    display: block; 
    margin-top: .25rem; 
  }

  .footer-top .wa-link { 
    margin-left: auto; 
    margin-right: auto; 
  }

  .footer-top .social-icon { 
    margin: 0 .25rem; 
  }

  /* 5) Barra inferior: centra items del nav en móvil */
  .footer-nav .container > *:first-child {
    justify-content: center !important;
  }
}

/* ===== OPCIONAL: si quieres que TODO el bloque footer quede centrado en la PANTALLA (alto completo) =====
   Agrega la clase "center-screen" al contenedor .footer-top en tu HTML: <section class="footer-top center-screen">…</section>
*/
@media (max-width: 767.98px) {
  .footer-top.center-screen {
    min-height: 100vh;          /* ocupa alto de pantalla */
    display: grid !important;
    place-items: center !important; /* centra vertical y horizontal */
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}


/* International Locker: 1 card por fila en móviles */
@media (max-width: 575.98px) {
  .international-locker .locker-grid > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .international-locker .locker-card {
    width: 100% !important;
  }
}

/* Tablet pequeña (opcional): 2 por fila entre 576–991px */
@media (min-width: 576px) and (max-width: 991.98px) {
  .international-locker .locker-grid > [class*="col-"] {
    flex: 0 0 calc(50% - 0.45rem) !important;
    max-width: calc(50% - 0.45rem) !important;
  }
  .international-locker .locker-grid {
    gap: 0.9rem 0.9rem; /* espacio consistente entre cards */
  }
}

/* Retailer logos en 2 columnas en móviles */
@media (max-width: 575.98px) {
  .retailer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;   /* 2 columnas */
    gap: 1.2rem 1.2rem;               /* espacio uniforme */
    justify-items: center;            /* centra cada logo en su celda */
  }
  .retailer-grid .retailer-logo {
    max-width: 100px;   /* controla tamaño relativo */
    height: auto;
  }
}

/* Tablet y escritorio: vuelve a flex-wrap */
@media (min-width: 576px) {
  .retailer-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2.5rem; /* espacio más amplio en pantallas grandes */
  }
}

.fa-bars:before{
    color: #008844;
}

@media (max-width: 575.98px) {
  #homepageCarousel.carousel-override .carousel-item {
    margin-top:1%;
    min-height: 86vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

 
  #homepageCarousel.carousel-override .carousel-item > img {
    display: none !important;
  }

  
  #homepageCarousel.carousel-override .carousel-item:nth-child(1) {
    background-image: url("../favicons/slide1-vert.png");
  }
  #homepageCarousel.carousel-override .carousel-item:nth-child(2) {
    background-image: url("../favicons/slide2-vert.jpg");
  }
  #homepageCarousel.carousel-override .carousel-item:nth-child(3) {
    background-image: url("../favicons/slide3-vert.png");
  }
  #homepageCarousel.carousel-override .carousel-item:nth-child(4) { 
    background-image: url("../favicons/slide4-vert.png");
  }
  #homepageCarousel.carousel-override .carousel-item:nth-child(5) { 
    background-image: url("../favicons/slide5-vert.jpg");
  }
}

.country-promo .info-card { max-width: 100%; }
.country-promo .info-title,
.country-promo .info-body { min-width: 0; } 
.country-promo .info-body {
  overflow-wrap: anywhere;    
  word-break: break-word;    
  hyphens: auto;             
}
.country-promo .info-body * { max-width: 100%; }
.country-promo .info-body img,
.country-promo .info-body svg,
.country-promo .info-body video { height: auto; display: block; }
.country-promo .info-body table {
  display: block;
  width: 100%;
  overflow-x: auto;            /* scroll horizontal si la tabla es ancha */
  -webkit-overflow-scrolling: touch;
}
.country-promo .info-body pre,
.country-promo .info-body code {
  white-space: pre-wrap;       /* evita overflow en bloques de código */
  word-break: break-word;
}


@media (max-width: 575.98px) {
  .country-promo .row.gy-4.gx-lg-5.mt-4 > [class*="col-"]{
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .country-promo .info-card { 
    max-height: none;
    padding: 1rem 0.95rem;    
  }

  .country-promo .info-title { 
    font-size: clamp(1rem, 0.95rem + 1.5vw, 1.2rem);
    line-height: 1.25;
    margin: 6px 0 12px;
  }
  .country-promo .info-body {
    font-size: clamp(0.95rem, 0.9rem + 0.6vw, 1.05rem);
    line-height: 1.5;
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {
  .country-promo .row.gy-4.gx-lg-5.mt-4 > [class*="col-"]{
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .country-promo .info-card { max-height: none; padding: 1.1rem 1.1rem; }
  .country-promo .info-title { font-size: 1.2rem; }
  .country-promo .info-body  { font-size: 1.05rem; }
}

@media (max-width: 991.98px) {
  /* Cambia los contenedores a GRID (anula d-flex de Bootstrap) */
  .ex-contacts .ex-contacts-grid,
  .ex-contacts .ex-contacts-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem 1.2rem;             
    justify-items: center;       
    justify-content: center;      
  }


  .ex-contacts .ex-contacts-grid > .ex-contact,
  .ex-contacts .ex-contacts-row  > .ex-contact {
    max-width: 100% !important;   
    width: 100% !important;
    flex: initial !important;
  }


  .ex-contacts .ex-contacts-grid > .ex-contact:last-child:nth-child(odd),
  .ex-contacts .ex-contacts-row  > .ex-contact:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}


@media (max-width: 575.98px) {
  .ex-contacts .ex-contacts-grid,
  .ex-contacts .ex-contacts-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991.98px) {
  :root {
    --mobile-x: clamp(16px, 5vw, 24px);
  }

  .container {
    /* lo subimos (tenías 0.6rem en <=575) */
    padding-left: max(var(--mobile-x), env(safe-area-inset-left, 0px)) !important;
    padding-right: max(var(--mobile-x), env(safe-area-inset-right, 0px)) !important;
  }
  .container-fluid {
    padding-left: max(var(--mobile-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--mobile-x), env(safe-area-inset-right, 0px));
  }

  main[role="main"] > section:not(.full-bleed):not(.nos-hero):not(.registro-hero),
  .page-section:not(.full-bleed) {
    padding-left: max(var(--mobile-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--mobile-x), env(safe-area-inset-right, 0px));
  }

  .footer-nav .container,
  .footer-top .container {
    padding-left: max(var(--mobile-x), env(safe-area-inset-left, 0px)) !important;
    padding-right: max(var(--mobile-x), env(safe-area-inset-right, 0px)) !important;
  }
}

@media (max-width: 575.98px) {
  :root { --mobile-x: clamp(18px, 6vw, 28px); } 
}

.full-bleed {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ===== Utilidades de justificado ===== */

/* 1) Justificado estándar con guionado automático */
.text-justify {
  text-align: justify;
  text-justify: inter-word;          /* mejor reparto entre palabras */
  hyphens: auto;                     /* guiones automáticos */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: anywhere;           /* evita desbordes en URLs/largas */
  word-break: normal;
}

/* 2) Justificado con última línea NO estirada (recomendado) */
.text-justify-balanced {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;             /* o 'start' si prefieres */
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: anywhere;
}

/* 3) Aplicar solo a párrafos dentro de un bloque */
/* ===== Justificar todos los párrafos dentro de un bloque ===== */
.justify-body p {
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;   /* evita que la última línea se estire feo */
  hyphens: auto;           /* guiones automáticos */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: anywhere; /* evita desbordes en palabras largas */
}


/* 4) Opcional: en móviles, mantener izquierda si el bloque es muy estrecho */
@media (max-width: 575.98px) {
  .text-justify-mobile-left {
    text-align: left;
    text-align-last: left;
  }
}




/* ====== Justificado global de párrafos en áreas de contenido ======
   - Sin tocar el Liquid.
   - Aplica en main y secciones de contenido comunes.
   - Puedes desactivar en un bloque añadiendo la clase .no-justify (si alguna vez la usas).
*/

/* Áreas donde SÍ queremos texto justificado */
:where(
  main[role="main"],
  .page-section,
  .country-promo,
  .international-locker,
  .article-body,
  .content-body,
  .cms-content,
  .richtext,
  .info-body
) :where(p):not(.no-justify) {
  text-align: justify;
  text-justify: inter-word;        /* mejor reparto entre palabras */
  text-align-last: left;           /* que la última línea no se estire */
  hyphens: auto;                   /* guionado automático */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: anywhere;         /* evita desbordes en URLs/largas */
  word-break: normal;
}

/* Excepciones típicas (párrafos dentro de componentes de UI) */
.card :where(p),
.alert :where(p),
.toast :where(p),
blockquote :where(p),
form :where(p) {
  text-align: left;
  text-align-last: auto;
  hyphens: manual;
  overflow-wrap: normal;
}

/* Opt-out total si en algún momento lo necesitas en un bloque */
.no-justify, .no-justify :where(p) {
  text-align: left !important;
  text-align-last: auto !important;
  hyphens: manual !important;
  overflow-wrap: normal !important;
}

/* Móviles muy angostos: el justificado puede verse “río”.
   Si quieres suavizar, vuelve a izquierda bajo 360px. */
@media (max-width: 359.98px) {
  :where(
    main[role="main"],
    .page-section,
    .country-promo,
    .international-locker,
    .article-body,
    .content-body,
    .cms-content,
    .richtext,
    .info-body
  ) :where(p):not(.no-justify) {
    text-align: left;
    text-align-last: left;
  }
}
