/* ------------------------------------
   Error 404
   ------------------------------------ */

.e404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: #f4f7fa;
}

.e404__card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 32px rgba(0,0,0,.08);
}

/* 404 number */
.e404__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 18vw, 9rem);
    font-weight: 700;
    color: #00AFC7;
    line-height: 1;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}

/* Divider with lotus */
.e404__divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: .75rem 0 1.5rem;
}
.e404__divider-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}
.e404__lotus {
    width: 36px;
    height: 26px;
    flex-shrink: 0;
}

/* Text */
.e404__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 .75rem;
    line-height: 1.2;
}
.e404__desc {
    font-size: .9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

/* Search */
.e404__search {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color .2s;
}
.e404__search:focus-within { border-color: #00AFC7; }
.e404__search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: .7rem 1rem;
    font-size: .875rem;
    font-family: inherit;
    color: #111;
    background: transparent;
}
.e404__search-btn {
    padding: .7rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    transition: color .15s;
}
.e404__search-btn:hover { color: #00AFC7; }
.e404__search-btn svg { width: 18px; height: 18px; }

/* Action buttons */
.e404__actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.e404__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 10px;
    font-size: .83rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.e404__btn svg { width: 16px; height: 16px; }

.e404__btn--primary {
    background: #00AFC7;
    color: #fff;
    border: 1.5px solid #00AFC7;
}
.e404__btn--primary:hover { background: #009ab0; border-color: #009ab0; }

.e404__btn--outline {
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db;
}
.e404__btn--outline:hover { border-color: #00AFC7; color: #00AFC7; }


/* ------------------------------------
   Popup asesoría gratuita
   ------------------------------------ */

.pasesoria {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}
/* Desplazar cuando la barra de admin de WordPress está visible */
.admin-bar .pasesoria { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .pasesoria { top: 46px; }
}
.pasesoria.is-open {
    opacity: 1;
    pointer-events: all;
}

/* Overlay */
.pasesoria__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    cursor: pointer;
}

/* Box */
.pasesoria__box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2.5rem 2.5rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    transform: translateY(16px) scale(.97);
    transition: transform .25s ease;
}
.pasesoria__box::-webkit-scrollbar { display: none; }
.pasesoria.is-open .pasesoria__box {
    transform: translateY(0) scale(1);
}

/* Close button */
.pasesoria__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.pasesoria__close:hover { background: #e5e7eb; }
.pasesoria__close svg { width: 16px; height: 16px; stroke: #374151; }

/* Header */
.pasesoria__head { margin-bottom: 1.5rem; }

.pasesoria__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.pasesoria__icon-wrap svg { width: 22px; height: 22px; color: #00AFC7; stroke: #00AFC7; }

.pasesoria__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 .45rem;
    line-height: 1.2;
}
.pasesoria__bar {
    width: 32px;
    height: 2px;
    background: #00AFC7;
    border-radius: 2px;
    margin-bottom: .75rem;
}
.pasesoria__desc {
    font-size: .85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* CF7 form — mismos estilos que .cform__right */
.pasesoria__form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.pasesoria__form .wpcf7-form > br { display: none; }
.pasesoria__form .wpcf7-form label {
    display: flex;
    flex-direction: column;
    gap: .28rem;
    font-size: .8rem;
    font-weight: 600;
    color: #374151 !important;
    text-decoration: none !important;
    cursor: default;
}
.pasesoria__form .wpcf7-form-control-wrap { display: block; }
.pasesoria__form .wpcf7-form input[type="text"],
.pasesoria__form .wpcf7-form input[type="email"],
.pasesoria__form .wpcf7-form input[type="tel"],
.pasesoria__form .wpcf7-form textarea {
    width: 100%;
    padding: .55rem .85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: .875rem;
    color: #111;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.pasesoria__form .wpcf7-form input:focus,
.pasesoria__form .wpcf7-form textarea:focus { border-color: #00AFC7; }
.pasesoria__form .wpcf7-form textarea { resize: vertical; min-height: 90px; }
.pasesoria__form .wpcf7-form .wpcf7-submit {
    align-self: flex-end;
    padding: .7rem 2rem;
    background: #00AFC7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}
.pasesoria__form .wpcf7-form .wpcf7-submit:hover { background: #009ab0; }
.pasesoria__form .wpcf7-mail-sent-ok {
    margin-top: .5rem;
    padding: .6rem .9rem;
    background: #ecfdf5;
    color: #065f46;
    border-radius: 8px;
    font-size: .82rem;
    border: none !important;
}


/*
 * Agency Theme — main.css
 *
 * Fuentes: Cormorant Garamond (títulos) · Montserrat (cuerpo)
 *
 * CSS base del tema. Tailwind cubre la mayor parte del diseño;
 * aquí van los estilos que Tailwind no puede expresar directamente:
 * estado de carga de módulos, clases de JS, estado del header, etc.
 */


/* ------------------------------------
   Variables de tipografía
   ------------------------------------ */

:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Montserrat', sans-serif;
}

body,
input, textarea, select, button { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6,
.banner-1__title { font-family: "Montserrat", sans-serif !important; }


/* ------------------------------------
   Tipografía base (si no se usa Tailwind Typography)
   ------------------------------------ */

.prose a          { text-decoration: underline; }
.prose h1,
.prose h2,
.prose h3,
.prose h4         { font-weight: 700; line-height: 1.2; margin: 1.5em 0 0.5em; }

.prose h1 { font-size: 2.25rem; }
.prose h2 { font-size: 1.875rem; }
.prose h3 { font-size: 1.5rem; }
.prose h4 { font-size: 1.25rem; }

@media (min-width: 1024px) {
    .prose h1 { font-size: 2.75rem; }
    .prose h2 { font-size: 2.25rem; }
    .prose h3 { font-size: 1.75rem; }
    .prose h4 { font-size: 1.375rem; }
}
.prose p          { margin: 1em 0; }
.prose ul         { list-style: disc; padding-left: 1.5em; }
.prose ol         { list-style: decimal; padding-left: 1.5em; }
.prose li         { margin: 0.4em 0; }
.prose blockquote { border-left: 4px solid currentColor; padding-left: 1em; opacity: .7; }
.prose img        { max-width: 100%; height: auto; border-radius: 0.5rem; }


/* ------------------------------------
   Scroll state
   ------------------------------------ */

/* Por defecto el header siempre es blanco.
   Añade la clase "header--transparent" al <body> en las páginas donde
   quieras que el header flote sobre el hero (ej. hero con imagen de fondo). */
body.scroll--scrolled             { --header-bg: white; }
body.header--transparent.scroll--top { --header-bg: transparent; }


/* ------------------------------------
   Header
   ------------------------------------ */

.header {
    background-color: var(--header-bg, white);
    transition: background-color 0.3s ease;
}

/* Menú abierto en mobile */
body.header--open  .header__nav { display: flex !important; }
body.header--closed .header__nav { display: none; }

/* ------------------------------------
   Acordeón
   ------------------------------------ */

.accordion__content          { display: none; }
.accordion--displayed
  .accordion__content         { display: block; }


/* ------------------------------------
   Popup
   ------------------------------------ */

.popup                        { display: none; }
.popup--displayed             { display: flex; }
body.popup--open              { overflow: hidden; }


/* ------------------------------------
   Tabs
   ------------------------------------ */

.tab                          { display: none; }
.tab--displayed               { display: block; }


/* ------------------------------------
   Botones
   ------------------------------------ */

.button--state-disabled       { opacity: .45; cursor: not-allowed; pointer-events: none; }


/* ------------------------------------
   Módulos dinámicos
   ------------------------------------ */

.dynamic-module--filtering    { pointer-events: none; opacity: .5; transition: opacity .2s; }
.dynamic-module--more--hidden { display: none; }


/* ------------------------------------
   Filtros
   ------------------------------------ */

.filters__item--hidden        { display: none; }
.filters__taxonomy--hidden    { display: none; }


/* ------------------------------------
   Switcher
   ------------------------------------ */

.switcher__item               { cursor: pointer; }
.switcher__item--active       { /* estilos activos definidos por componente */ }


/* ------------------------------------
   Calendario
   ------------------------------------ */

.calendar__day--results--hidden  { opacity: .25; pointer-events: none; }
.calendar__day--selected         { /* estilos definidos por componente */ }


/* ------------------------------------
   Menú ancla
   ------------------------------------ */

.anchor-menu__current         { /* estilos definidos por componente */ }


/* ------------------------------------
   Puntos de fuga (leak points)
   ------------------------------------ */

body.no-leak-points a[target="_blank"],
body.no-leak-points .header__nav,
body.no-leak-points .footer__nav { display: none; }


/* ------------------------------------
   Header — logo y altura
   ------------------------------------ */

.header__inner       { height: 5rem; }
@media (min-width: 1024px) {
    .header__inner   { height: 6rem; }
}

.header__logo-img    { height: 3.5rem; width: auto; }
@media (min-width: 1024px) {
    .header__logo-img { height: 4.5rem; }
}


/* ------------------------------------
   Menú de navegación
   ------------------------------------ */

.header .nav-link {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.header .nav-link:hover,
.header .nav-link.nav-link--active { color: #00AFC7; font-weight: 700; }

.header .nav-link.asesoria-top {
    background: #00AFC7;
    color: #fff;
    padding: .85rem .85rem;
    border-radius: .375rem;
}

.header .nav-link.asesoria-top:hover,
.header .nav-link.asesoria-top.nav-link--active {
    background: #0099b0;
    color: #fff;
}

/* Submenús */
.menu__item--has-children.active .mobile-submenu {
    display: flex !important;
}

.menu__item--has-children.active svg {
    transform: rotate(180deg);
}



/* ------------------------------------
   Banner 1
   ------------------------------------ */

.banner-1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
}

.banner-1--s    { min-height: 400px; }
.banner-1--m    { min-height: 550px; }
.banner-1--l    { min-height: 700px; }
.banner-1--full { min-height: 100vh; }

.banner-1__bg {
    position: absolute;
    inset: 0;
}

.banner-1__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-1__overlay {
    position: absolute;
    inset: 0;
}

.banner-1--left   .banner-1__overlay { background: linear-gradient(to right,  rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,.15) 100%); }
.banner-1--center .banner-1__overlay { background: rgba(0,0,0,.60); }
.banner-1--right  .banner-1__overlay { background: linear-gradient(to left,   rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,.15) 100%); }

.banner-1__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.banner-1--center .banner-1__inner { justify-content: center; text-align: center; }
.banner-1--right  .banner-1__inner { justify-content: flex-end; }

.banner-1__content { max-width: 36rem; color: #fff; }

.banner-1--center .banner-1__content { max-width: 48rem; }

/* -- Entrada blur-fade (Magic UI — Blur Fade) -- */

@keyframes banner-blur-fade {
    from { opacity: 0; filter: blur(10px); transform: translateY(22px); }
    to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}

.banner-1__epigraph    { animation: banner-blur-fade .7s ease both .15s; }
.banner-1__title       { animation: banner-blur-fade .8s ease both .35s; }
.banner-1__description { animation: banner-blur-fade .7s ease both .55s; }
.banner-1__buttons     { animation: banner-blur-fade .7s ease both .75s; }

/* -- Shimmer en epígrafe (Magic UI — Shimmer Text) -- */

@keyframes shimmer-flow {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

.banner-1__epigraph {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 1.1rem;
    background: linear-gradient(90deg, #00AFC7 20%, #a8f0ff 50%, #00AFC7 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: banner-blur-fade .7s ease both .15s,
               shimmer-flow 2.8s linear infinite 1s;
}

.banner-1__title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 1rem;
}

@media (min-width: 1024px) {
    .banner-1__title { font-size: 6.25rem; }
}

.banner-1__description {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,.88);
    margin: 0 0 2rem;
}

.banner-1__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.banner-1--center .banner-1__buttons { justify-content: center; }
.banner-1--right  .banner-1__buttons { justify-content: flex-end; }

.banner-1__btn {
    display: inline-flex;
    align-items: center;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .75rem 1.75rem;
    border-radius: .375rem;
    text-decoration: none;
    transition: background-color .2s, color .2s, border-color .2s;
    white-space: nowrap;
}

.banner-1__btn--primary              { position: relative; background: #00AFC7; color: #fff; border: 2px solid #00AFC7; overflow: hidden; }
.banner-1__btn--primary:hover        { background: #0099b0; border-color: #0099b0; color: #fff; }

.banner-1__btn--primary .drop {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.75) 0%, rgba(255,255,255,.2) 55%, transparent 100%);
    transform: scale(0);
    animation: drop-burst .9s ease-out forwards;
    pointer-events: none;
}

@keyframes drop-burst {
    0%   { transform: scale(0);    opacity: 1; }
    35%  { transform: scale(1);    opacity: .8; }
    100% { transform: scale(2.2);  opacity: 0; }
}
.banner-1__btn--outline              { background: transparent; color: #fff; border: 2px solid #fff; }
.banner-1__btn--outline:hover        { background: #fff; color: #111; }


/* ------------------------------------
   Features Bar
   ------------------------------------ */

.features-bar {
    width: 100%;
}

.features-bar--dark  { background: #111; color: #fff; }
.features-bar--light { background: #f4f4f4; color: #111; }
.features-bar--white { background: #fff; color: #111; }

/* Mobile: 2 columnas · Tablet+ (≥640px): todos en una fila */
.features-bar__inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .features-bar__inner { grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); padding: 3rem 2rem; }
}

.features-bar__item {
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .5s ease, transform .5s ease;
}

/* --- Divisores: mobile 2 col --- */
.features-bar--dark  .features-bar__item:nth-child(2n)  { border-left: 1px solid rgba(255,255,255,.12); }
.features-bar--dark  .features-bar__item:nth-child(n+3) { border-top:  1px solid rgba(255,255,255,.12); }
.features-bar--light .features-bar__item:nth-child(2n),
.features-bar--white .features-bar__item:nth-child(2n)  { border-left: 1px solid rgba(0,0,0,.1); }
.features-bar--light .features-bar__item:nth-child(n+3),
.features-bar--white .features-bar__item:nth-child(n+3) { border-top:  1px solid rgba(0,0,0,.1); }

/* Último ítem solo (impar) → ocupa las 2 columnas centrado */
@media (max-width: 639px) {
    .features-bar__item:last-child:nth-child(odd) {
        grid-column: span 2;
        border-left: none !important;
    }
}

/* --- Divisores: tablet+ fila única --- */
@media (min-width: 640px) {
    .features-bar__item { border-left: none !important; border-top: none !important; }
    .features-bar--dark  .features-bar__item + .features-bar__item { border-left: 1px solid rgba(255,255,255,.12) !important; }
    .features-bar--light .features-bar__item + .features-bar__item,
    .features-bar--white .features-bar__item + .features-bar__item { border-left: 1px solid rgba(0,0,0,.1) !important; }
}

/* --- Animación de entrada --- */
.features-bar--visible .features-bar__item { opacity: 1; transform: translateY(0); }
.features-bar--visible .features-bar__item:nth-child(1) { transition-delay: .05s; }
.features-bar--visible .features-bar__item:nth-child(2) { transition-delay: .15s; }
.features-bar--visible .features-bar__item:nth-child(3) { transition-delay: .25s; }
.features-bar--visible .features-bar__item:nth-child(4) { transition-delay: .35s; }
.features-bar--visible .features-bar__item:nth-child(5) { transition-delay: .45s; }
.features-bar--visible .features-bar__item:nth-child(6) { transition-delay: .55s; }
.features-bar--visible .features-bar__item:nth-child(7) { transition-delay: .65s; }
.features-bar--visible .features-bar__item:nth-child(8) { transition-delay: .75s; }

.features-bar--visible .features-bar__icon-wrap {
    animation: icon-pop .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes icon-pop {
    from { transform: scale(.5); opacity: 0; }
    to   { transform: scale(1);  opacity: 1; }
}

.features-bar__icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid #00AFC7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.features-bar__icon-lucide {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 1.5;
    animation: icon-pulse 2.4s ease-in-out infinite 1s;
}

.features-bar__icon-material {
    font-size: 1.6rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 32;
    color: #00AFC7;
    animation: icon-color-pulse 2.4s ease-in-out infinite 1s;
}

@keyframes icon-pulse {
    0%, 100% { stroke: #00AFC7; }
    50%       { stroke: #fff; }
}

@keyframes icon-color-pulse {
    0%, 100% { color: #00AFC7; }
    50%       { color: #fff; }
}

.features-bar__icon-img {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
}

.features-bar__title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .02em;
    margin: 0 0 .5rem;
    line-height: 1.3;
}

.features-bar--dark .features-bar__title { color: #fff; }

.features-bar__description {
    font-size: .8rem;
    line-height: 1.6;
    margin: 0;
    max-width: 14rem;
}

.features-bar--dark  .features-bar__description { color: rgba(255,255,255,.65); }
.features-bar--light .features-bar__description,
.features-bar--white .features-bar__description { color: rgba(0,0,0,.6); }


/* ------------------------------------
   Icon Strip
   ------------------------------------ */

.icon-strip { width: 100%; border-top: 1px solid rgba(0,0,0,.08); border-bottom: 1px solid rgba(0,0,0,.08); }
.icon-strip--white { background: #fff; }
.icon-strip--light { background: #f4f6f8; }
.icon-strip--dark  { background: #111; border-color: rgba(255,255,255,.1); }

.icon-strip__inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0;
}

.icon-strip__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.25rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s ease, transform .45s ease;
}

/* Divisores verticales entre ítems */
.icon-strip--white .icon-strip__item + .icon-strip__item,
.icon-strip--light .icon-strip__item + .icon-strip__item { border-left: 1px solid rgba(0,0,0,.1); }
.icon-strip--dark  .icon-strip__item + .icon-strip__item { border-left: 1px solid rgba(255,255,255,.12); }

.icon-strip__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-strip__icon {
    width: 3.2rem;
    height: 3.2rem;
    color: #00AFC7;
    stroke: #00AFC7;
    stroke-width: 1.5;
}

.icon-strip__text {
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #222;
}
.icon-strip--dark .icon-strip__text { color: rgba(255,255,255,.85); }

/* Mobile: 2 columnas */
@media (max-width: 639px) {
    .icon-strip__inner { grid-template-columns: repeat(2, 1fr); padding: .75rem 1rem; }
    .icon-strip__item + .icon-strip__item { border-left: none; }
    .icon-strip__item:nth-child(2n) { border-left: 1px solid rgba(0,0,0,.1) !important; }
    .icon-strip__item:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,.1); }
    .icon-strip--dark .icon-strip__item:nth-child(2n)  { border-left-color: rgba(255,255,255,.12) !important; }
    .icon-strip--dark .icon-strip__item:nth-child(n+3) { border-top-color:  rgba(255,255,255,.12); }
}

/* Animación de entrada */
.icon-strip--visible .icon-strip__item { opacity: 1; transform: translateY(0); }
.icon-strip--visible .icon-strip__item:nth-child(1) { transition-delay: .05s; }
.icon-strip--visible .icon-strip__item:nth-child(2) { transition-delay: .13s; }
.icon-strip--visible .icon-strip__item:nth-child(3) { transition-delay: .21s; }
.icon-strip--visible .icon-strip__item:nth-child(4) { transition-delay: .29s; }
.icon-strip--visible .icon-strip__item:nth-child(5) { transition-delay: .37s; }
.icon-strip--visible .icon-strip__item:nth-child(6) { transition-delay: .45s; }

.icon-strip--visible .icon-strip__icon-wrap {
    animation: icon-pop .5s cubic-bezier(.34, 1.56, .64, 1) both;
}


/* ------------------------------------
   Cards Grid
   ------------------------------------ */

.cards-grid {
    width: 100%;
}

.cards-grid__inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.cards-grid__header {
    margin-bottom: 2.5rem;
}

.cards-grid--center .cards-grid__header { text-align: center; }

.cards-grid__epigraph {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 .75rem;
    display: inline-block;
    background: linear-gradient(90deg, #00AFC7 20%, #a8f0ff 50%, #00AFC7 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-flow 2.8s linear infinite;
}

.cards-grid__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin: 0;
}

@media (min-width: 1024px) {
    .cards-grid__title { font-size: 2.5rem; }
}

/* Grid responsive */
.cards-grid__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Mobile: 1 columna */
.cards-grid__card { flex: 0 0 100%; }

/* Tablet (≥640px): 2 columnas */
@media (min-width: 640px) {
    .cards-grid__card { flex: 0 0 calc(50% - .75rem); }
}

/* Desktop (≥1024px): según configuración */
@media (min-width: 1024px) {
    .cards-grid--cols-2 .cards-grid__card { flex: 0 0 calc(50% - .75rem); }
    .cards-grid--cols-3 .cards-grid__card { flex: 0 0 calc(33.333% - 1rem); }
    .cards-grid--cols-4 .cards-grid__card { flex: 0 0 calc(25% - 1.125rem); }
}

/* Card */
.cards-grid__card {
    background: #fff;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
}

.cards-grid--visible .cards-grid__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease, box-shadow .25s ease;
}

.cards-grid--visible .cards-grid__card:nth-child(1)  { transition-delay: .05s; }
.cards-grid--visible .cards-grid__card:nth-child(2)  { transition-delay: .12s; }
.cards-grid--visible .cards-grid__card:nth-child(3)  { transition-delay: .19s; }
.cards-grid--visible .cards-grid__card:nth-child(4)  { transition-delay: .26s; }
.cards-grid--visible .cards-grid__card:nth-child(5)  { transition-delay: .33s; }
.cards-grid--visible .cards-grid__card:nth-child(6)  { transition-delay: .40s; }
.cards-grid--visible .cards-grid__card:nth-child(7)  { transition-delay: .47s; }
.cards-grid--visible .cards-grid__card:nth-child(8)  { transition-delay: .54s; }
.cards-grid--visible .cards-grid__card:nth-child(9)  { transition-delay: .61s; }
.cards-grid--visible .cards-grid__card:nth-child(10) { transition-delay: .68s; }
.cards-grid--visible .cards-grid__card:nth-child(11) { transition-delay: .75s; }
.cards-grid--visible .cards-grid__card:nth-child(12) { transition-delay: .82s; }

.cards-grid__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.13);
}

.cards-grid__card-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cards-grid__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.cards-grid__card:hover .cards-grid__card-img { transform: scale(1.04); }

.cards-grid__card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cards-grid__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 .6rem;
    line-height: 1.25;
}

.cards-grid__card-desc {
    font-size: .84rem;
    line-height: 1.65;
    color: rgba(0,0,0,.6);
    margin: 0 0 1.1rem;
    flex: 1;
}

.cards-grid__card-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #00AFC7;
    text-decoration: none;
    transition: gap .2s ease;
}

.cards-grid__card-link:hover { gap: .6rem; }


/* ============================================================
   Projects Slider
   ============================================================ */

.projects-slider {
    width: 100%;
    background: #0d0d0d;
    padding: 4rem 0;
}

.projects-slider__inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.projects-slider__header {
    margin-bottom: 2rem;
}

.projects-slider__epigraph {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 .75rem;
    display: inline-block;
    background: linear-gradient(90deg, #00AFC7 20%, #a8f0ff 50%, #00AFC7 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-flow 2.8s linear infinite;
}

.projects-slider__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

@media (min-width: 1024px) {
    .projects-slider__title { font-size: 2.5rem; }
}

.projects-slider__viewport {
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.projects-slider__viewport::-webkit-scrollbar { display: none; }

.projects-slider__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: .75rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .projects-slider__slide { flex: 0 0 calc(50% - .5rem); }
}

@media (min-width: 1024px) {
    .projects-slider__slide { flex: 0 0 calc(25% - .75rem); }
}

.projects-slider__img {
    width: 100%;
    aspect-ratio: 640 / 300;
    object-fit: cover;
    object-position: center;
    display: block;
}

.projects-slider__dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.25rem;
}

.projects-slider__dot {
    width: 28px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, width .2s ease;
}

.projects-slider__dot--active {
    background: #00AFC7;
    width: 40px;
}

.projects-slider__slide {
    cursor: zoom-in;
}

/* ---- Lightbox ---- */

.ps-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.ps-lightbox--open {
    opacity: 1;
    pointer-events: all;
}

.ps-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    cursor: zoom-out;
}

.ps-lightbox__img {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: .5rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .7);
    transition: opacity .15s ease;
    display: block;
    user-select: none;
    -webkit-user-select: none;
}

.ps-lightbox__close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 2;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 1.15rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    line-height: 1;
}

.ps-lightbox__close:hover { background: rgba(255, 255, 255, .28); }

.ps-lightbox__prev,
.ps-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    user-select: none;
    -webkit-user-select: none;
    line-height: 1;
}

.ps-lightbox__prev:hover,
.ps-lightbox__next:hover { background: rgba(255, 255, 255, .3); }

.ps-lightbox__prev { left: 1.1rem; }
.ps-lightbox__next { right: 1.1rem; }

@media (min-width: 768px) {
    .ps-lightbox__prev { left: 2rem; }
    .ps-lightbox__next { right: 2rem; }
}


/* ------------------------------------
   CTA Banner
   ------------------------------------ */

.cta-banner {
    background: linear-gradient(120deg, #0a3040 0%, #0f4f63 60%, #0a3a4a 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


.cta-banner__inner {
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-banner__icon-wrap {
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(72, 190, 210, .25);
    border: 2px solid rgba(72, 190, 210, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-banner__icon {
    width: 2.2rem;
    height: 2.2rem;
    color: #fff;
    stroke: #fff;
    display: block;
}

.cta-banner__body {
    flex: 1;
    min-width: 0;
}

.cta-banner__eyebrow {
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 .2rem;
}

.cta-banner__title {
    font-size: clamp(1rem, 2.2vw, 1.9rem);
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
    margin: 0 0 .3rem;
    line-height: 1.25;
}

.cta-banner__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    line-height: 1.55;
}

.cta-banner__action { flex-shrink: 0; }

.cta-banner__btn {
    display: inline-block;
    padding: 1rem 1.4rem;
    border: 1.5px solid #00AFC7;
    background: #111;
    color: #00AFC7;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .2s, border-color .2s, color .2s;
}

.cta-banner__btn:hover {
    background: rgba(0, 175, 199, .25);
    border-color: #00AFC7;
}

@media (max-width: 640px) {
    .cta-banner__inner {
        flex-wrap: wrap;
        padding: 1.5rem 1.25rem;
    }
    .cta-banner__action { width: 100%; }
    .cta-banner__btn    { display: block; text-align: center; }
}


/* ------------------------------------
   Payment Terms
   ------------------------------------ */

.payment-terms {
    max-width: 1540px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* --- Conditions card --- */
.payment-terms__card {
    background: #fff;
    border: 1px solid #e6eaed;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.payment-terms__icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: #f0f4f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-terms__icon {
    width: 1.6rem;
    height: 1.6rem;
    color: #00AFC7;
    stroke: #00AFC7;
    stroke-width: 1.5;
}

.payment-terms__card-body { flex: 1; min-width: 0; }

.payment-terms__card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 .65rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.payment-terms__card-desc {
    font-size: .875rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 .9rem;
}

.payment-terms__card-desc ul {
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.payment-terms__card-desc ul li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    color: #444;
    line-height: 1.5;
}

.payment-terms__card-desc ul li::before {
    content: '✓';
    color: #00AFC7;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.5;
}

.payment-terms__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.payment-terms__checklist li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .875rem;
    color: #444;
    line-height: 1.5;
}

.payment-terms__checklist li::before {
    content: '✓';
    color: #00AFC7;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.5;
}

/* --- Steps grid --- */
.payment-terms__steps {
    background: #f4f6f8;
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease .1s, transform .5s ease .1s;
}

.payment-terms__step {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e6eaed;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.payment-terms__step-icon-box {
    width: 4.5rem;
    height: 4.5rem;
    border: 1.5px solid #c8e8ee;
    border-radius: 50%;
    background: #eef8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.payment-terms__step-icon {
    width: 2rem;
    height: 2rem;
    color: #00AFC7;
    stroke: #00AFC7;
    stroke-width: 1.25;
}

.payment-terms__step-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #00AFC7;
    margin: 0;
}

.payment-terms__step-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 3px;
    background: #008fa3;
    border-radius: 2px;
    margin: 16px auto 16px;
}

.payment-terms__step-desc {
    font-size: .82rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* --- Bank data --- */
.payment-terms__bank {
    background: #1a4a56;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease .2s, transform .5s ease .2s;
}

.payment-terms__bank-icon-box {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-terms__bank-icon {
    width: 1.6rem;
    height: 1.6rem;
    color: #fff;
    stroke: #fff;
    stroke-width: 1.5;
}

.payment-terms__bank-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .5rem;
    font-family: var(--font-body);
}

.payment-terms__bank-row {
    font-size: .875rem;
    color: rgba(255,255,255,.8);
    margin: 0 0 .2rem;
    line-height: 1.5;
}

.payment-terms__bank-row strong { color: #fff; }

/* Animación de entrada */
.payment-terms--visible .payment-terms__card,
.payment-terms--visible .payment-terms__steps,
.payment-terms--visible .payment-terms__bank {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .payment-terms { padding: 2rem 1rem; }
    .payment-terms__card { flex-direction: column; }
    .payment-terms__bank { flex-direction: column; }
    .payment-terms__steps { grid-template-columns: 1fr; gap: 1.5rem; }
}


/* ------------------------------------
   Delegaciones
   ------------------------------------ */

.delegaciones { padding: 4rem 0; }
.delegaciones--light { background: #eef3f7; }
.delegaciones--white { background: #fff; }
.delegaciones--dark  { background: #111; color: #fff; }

.delegaciones__inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 2rem;
}

.delegaciones__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.delegaciones__title {
    font-size: clamp(.9rem, 1.8vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #111;
    margin: 0 0 .75rem;
}
.delegaciones--dark .delegaciones__title { color: #fff; }

.delegaciones__title-bar {
    width: 60px;
    height: 3px;
    background: #00AFC7;
    margin: 0 auto;
    border-radius: 2px;
}

.delegaciones__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.delegaciones__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
}

.delegaciones__card-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.delegaciones__card-name {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
}

.delegaciones__pin-icon {
    width: 1.2rem;
    height: 1.2rem;
    color: #00AFC7;
    stroke: #00AFC7;
    flex-shrink: 0;
    margin-top: 2px;
}

.delegaciones__address {
    font-size: .875rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.delegaciones__btn {
    display: inline-block;
    margin-top: auto;
    align-self: flex-start;
    padding: .45rem 1rem;
    border: 1.5px solid #00AFC7;
    color: #00AFC7;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-decoration: none;
    border-radius: 6px;
    transition: background .2s, color .2s;
}
.delegaciones__btn:hover { background: #00AFC7; color: #fff; }

.delegaciones__map { min-height: 220px;padding: 20px; }
.delegaciones__map iframe { width: 100%; height: 100%; display: block; min-height: 220px; }

@media (max-width: 768px) {
    .delegaciones__grid { grid-template-columns: 1fr; }
    .delegaciones__card { grid-template-columns: 1fr; }
    .delegaciones__map  { min-height: 200px; }
}

/* --- Animación de entrada --- */
.delegaciones__header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.delegaciones__title-bar {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .5s cubic-bezier(.25, 1, .5, 1) .3s;
}
.delegaciones__card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.delegaciones--visible .delegaciones__header    { opacity: 1; transform: translateY(0); }
.delegaciones--visible .delegaciones__title-bar { transform: scaleX(1); }

.delegaciones--visible .delegaciones__card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: .2s;  }
.delegaciones--visible .delegaciones__card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.delegaciones--visible .delegaciones__card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: .5s;  }
.delegaciones--visible .delegaciones__card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: .65s; }


/* ------------------------------------
   Oficinas + Mapa (página de contacto)
   ------------------------------------ */

.ofmap { padding: 4rem 2rem; background: #f4f7fa; }

.ofmap__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 680px;
    max-width: 1540px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,.1);
}

/* Left column */
.ofmap__cards {
    overflow-y: auto;
    scrollbar-width: none;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    border-right: 1px solid #e8eef4;
}
.ofmap__cards::-webkit-scrollbar { display: none; }

/* Card */
.ofmap__card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem 1.25rem;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    border: 1px solid #edf2f7;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.ofmap--visible .ofmap__card:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.ofmap--visible .ofmap__card:nth-child(2) { opacity: 1; transform: none; transition-delay: .2s;  }
.ofmap--visible .ofmap__card:nth-child(3) { opacity: 1; transform: none; transition-delay: .35s; }
.ofmap--visible .ofmap__card:nth-child(4) { opacity: 1; transform: none; transition-delay: .5s;  }

/* Icon circle */
.ofmap__card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #00AFC7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ofmap__card-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
    stroke: #fff;
}

.ofmap__card-content { flex: 1; min-width: 0; }

/* Card heading */
.ofmap__card-top { margin-bottom: .85rem; }

.ofmap__label {
    display: block;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #00AFC7;
    margin-bottom: .1rem;
}
.ofmap__city {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 .4rem;
    line-height: 1.15;
}
.ofmap__bar {
    width: 32px;
    height: 2px;
    background: #00AFC7;
    border-radius: 2px;
}

/* Info rows */
.ofmap__rows {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .48rem;
}
.ofmap__row {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .82rem;
    color: #4b5563;
    line-height: 1.55;
}
.ofmap__row-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    stroke: #9ca3af;
    flex-shrink: 0;
    margin-top: 3px;
}
.ofmap__row-link { color: inherit; text-decoration: none; }
.ofmap__row-link:hover { text-decoration: underline; }
.ofmap__row-link--accent { color: #00AFC7; font-weight: 600; }
.ofmap__row-link--accent:hover { color: #009ab0; }

/* Nota box */
.ofmap__nota {
    margin-top: .85rem;
    padding: .6rem .85rem;
    background: #f0f9fb;
    border-radius: 8px;
    border-left: 3px solid #00AFC7;
}
.ofmap__nota-head {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .2rem;
}
.ofmap__nota-icon { width: 14px; height: 14px; color: #00AFC7; stroke: #00AFC7; }
.ofmap__nota-head strong { font-size: .82rem; font-weight: 700; color: #111; }
.ofmap__nota-text { font-size: .78rem; color: #555; margin: 0; line-height: 1.5; }

/* Right column: map */
.ofmap__map-wrap { overflow: hidden; height: 100%; }
.ofmap__map { width: 100%; height: 100%; min-height: 400px; }

/* Leaflet popup */
.ofmap-popup { font-family: inherit; min-width: 170px; }
.ofmap-popup__name { display: block; font-size: .9rem; font-weight: 700; color: #111; margin-bottom: .3rem; }
.ofmap-popup__addr { font-size: .78rem; color: #555; line-height: 1.5; margin: 0 0 .55rem; }
.ofmap-popup__link { font-size: .75rem; font-weight: 700; color: #00AFC7; text-decoration: none; }
.ofmap-popup__link:hover { text-decoration: underline; }

/* Leaflet legend overlay */
.ofmap-legend {
    background: #fff;
    border-radius: 10px;
    padding: .65rem .9rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.14);
}
.ofmap-legend__row {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    font-weight: 500;
    color: #111;
    padding: .25rem 0;
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s;
}
.ofmap-legend__row:hover { color: #00AFC7; }
.ofmap-legend__row + .ofmap-legend__row { border-top: 1px solid #f0f4f8; }

/* Responsive */
@media (max-width: 900px) {
    .ofmap__inner { grid-template-columns: 1fr; height: auto; }
    .ofmap__cards { max-height: 480px; }
    .ofmap__map-wrap { height: 380px; }
}


/* ------------------------------------
   Contacto con formulario
   ------------------------------------ */

.cform { padding: 4rem 2rem; background: #f4f7fa; }

.cform__inner {
    max-width: 1540px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 28px rgba(0,0,0,.09);
    display: grid;
    grid-template-columns: 40% 60%;
    overflow: hidden;
}

/* Left panel */
.cform__left {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e8eef4;
    background: #fbfbfc;
}

.cform__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e8f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.cform__icon-wrap svg {
    width: 24px;
    height: 24px;
    color: #00AFC7;
    stroke: #00AFC7;
}

.cform__title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 .55rem;
    line-height: 1.25;
}

.cform__bar {
    width: 36px;
    height: 2.5px;
    background: #00AFC7;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.cform__desc {
    font-size: .875rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.cform__image {
    margin-top: auto;
    padding-top: 1.75rem;
}
.cform__image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 200px;
    display: block;
}

/* Right panel */
.cform__right {
    padding: 2.5rem 3rem;
}

.cform__placeholder {
    font-size: .875rem;
    color: #9ca3af;
    font-style: italic;
    margin: 0;
}

/* CF7 form reset & estilos dentro del panel derecho */
.cform__right .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.cform__right .wpcf7-form > br { display: none; }

.cform__right .wpcf7-form label {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    font-size: .8rem;
    font-weight: 600;
    color: #374151 !important;
    text-decoration: none !important;
    cursor: default;
}

.cform__right .wpcf7-form-control-wrap { display: block; }

.cform__right .wpcf7-form input[type="text"],
.cform__right .wpcf7-form input[type="email"],
.cform__right .wpcf7-form input[type="tel"],
.cform__right .wpcf7-form input[type="url"],
.cform__right .wpcf7-form select,
.cform__right .wpcf7-form textarea {
    width: 100%;
    padding: .6rem .9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: .875rem;
    color: #111;
    background: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    box-shadow: none;
    appearance: none;
}
.cform__right .wpcf7-form input:focus,
.cform__right .wpcf7-form select:focus,
.cform__right .wpcf7-form textarea:focus {
    border-color: #00AFC7;
}
.cform__right .wpcf7-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Submit */
.cform__right .wpcf7-form .wpcf7-submit {
    align-self: flex-end;
    padding: .75rem 2.25rem;
    background: #00AFC7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}
.cform__right .wpcf7-form .wpcf7-submit:hover { background: #009ab0; }

/* Mensajes de validación CF7 */
.cform__right .wpcf7-not-valid-tip {
    font-size: .72rem;
    color: #ef4444;
    margin-top: .2rem;
    display: block;
}
.cform__right .wpcf7-response-output {
    margin-top: .75rem;
    padding: .6rem .9rem;
    border-radius: 8px;
    font-size: .82rem;
    border: none !important;
}
.cform__right .wpcf7-mail-sent-ok { background: #ecfdf5; color: #065f46; }
.cform__right .wpcf7-validation-errors,
.cform__right .wpcf7-mail-sent-ng { background: #fef2f2; color: #991b1b; }

/* Responsive */
@media (max-width: 768px) {
    .cform__inner { grid-template-columns: 1fr; }
    .cform__left { border-right: none; border-bottom: 1px solid #e8eef4; }
    .cform__right { padding: 2rem 1.5rem; }
}


/* ------------------------------------
   Article Features
   ------------------------------------ */

.article-features {
    padding: 3rem 0;
}

.article-features__inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

.article-features__divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.5rem 0;
}

/* --- Feature row --- */
.article-features__row {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.article-features__row.af--visible {
    opacity: 1;
    transform: translateY(0);
}

.article-features__row-icon-wrap {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #eef8fa;
    border: 1.5px solid #b8dfe8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-features__row-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #00AFC7;
    stroke: #00AFC7;
    stroke-width: 1.5;
}

.article-features__row-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.article-features__row-desc {
    color: #444;
    line-height: 1.8;
    font-size: .95rem;
}

.article-features__row-desc p { margin: 0 0 1rem; }
.article-features__row-desc p:last-child { margin-bottom: 0; }

/* --- Grid section --- */
.article-features__grid-section {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.article-features__grid-section.af--visible {
    opacity: 1;
    transform: translateY(0);
}

.article-features__grid-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 1.75rem;
    line-height: 1.2;
}

.article-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.article-features__card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
}

.article-features__card-icon-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #00AFC7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-features__card-icon {
    width: 2rem;
    height: 2rem;
    color: #00AFC7;
    stroke: #00AFC7;
    stroke-width: 1.5;
}

.article-features__card-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #111;
    margin: 0 0 .45rem;
}

.article-features__card-desc {
    font-size: .875rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .article-features__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .article-features__grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .article-features__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ------------------------------------
   Contenedor global (1540px)
   ------------------------------------ */

.site-wrap {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
}


/* ------------------------------------
   Footer
   ------------------------------------ */

.footer__logo {
    max-height: 5rem;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.footer__contact a {
    color: #00AFC7 !important;
    text-decoration: none;
    display: inline-flex;
}

.footer__contact svg {
    width: 42px !important;
    height: 42px !important;
    color: #00AFC7 !important;
    flex-shrink: 0;
}

.footer__contact a:hover {
    opacity: .75;
}

.footer .fa-brands,
.footer .fab {
    font-weight: 400;
    color: #00AFC7;
    font-size: 1.4rem;
    transition: opacity .2s;
}

.footer .fa-brands:hover,
.footer .fab:hover {
    opacity: .75;
}


/* ------------------------------------
   Admin bar
   ------------------------------------ */

/* Header height como variable reutilizable */
:root { --header-height: 5rem; }
@media (min-width: 1024px) { :root { --header-height: 6rem; } }

/* scroll-padding-top: ancla + header sticky no tapan el contenido */
html {
    scroll-padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--header-height));
}

/* Todas las secciones/bloques tienen un offset de scroll igual a la altura del header */
body > main > * {
    scroll-margin-top: var(--header-height);
}

html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
body > main { flex: 1; }

/* El header sticky baja para no quedar oculto bajo la admin bar */
.admin-bar .header {
    top: var(--wp-admin--admin-bar--height, 0px);
}
@media (min-width: 1024px) {
    .admin-bar { --header-height: calc(6rem + var(--wp-admin--admin-bar--height, 0px)); }
}


/* ============================
   Catálogo de productos
   ============================ */

/* --- Hero de categoría --- */
.cat-hero {
    position: relative;
    background: #1a2a35;
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.cat-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.65) 40%, rgba(0,0,0,.3));
    pointer-events: none;
}

.cat-hero__inner {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.cat-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.cat-hero__breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.cat-hero__breadcrumb a:hover { color: #fff; }
.cat-hero__breadcrumb-sep { color: rgba(255,255,255,.4); }

.cat-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.cat-hero__desc {
    font-size: .95rem;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 0 1.75rem;
}

.cat-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-hero__feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.9);
    font-size: .85rem;
    font-weight: 500;
}

.cat-hero__feature-icon {
    width: 1.1rem;
    height: 1.1rem;
    color: #00AFC7;
    stroke: #00AFC7;
    flex-shrink: 0;
}

/* --- Layout listado --- */
.cat-listing {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
    align-items: start;
}

/* --- Sidebar filtros --- */
.cat-filters {
    position: sticky;
    top: calc(var(--header-height, 5rem) + 1.5rem);
}

.cat-filters__form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cat-filters__header {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
    font-size: .9rem;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cat-filters__header-icon {
    width: 1rem;
    height: 1rem;
    color: #00AFC7;
    stroke: #00AFC7;
}

.cat-filters__group {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
}

.cat-filters__group:last-of-type { border-bottom: none; }

.cat-filters__group-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #555;
    margin: 0 0 .4rem;
}

/* Price range */
.cat-filters__price-range { display: flex; flex-direction: column; gap: .75rem; }

.cat-filters__price-track {
    position: relative;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 1rem 0;
}

.cat-filters__price-fill {
    position: absolute;
    height: 4px;
    background: #00AFC7;
    border-radius: 2px;
    pointer-events: none;
}

.cat-filters__range {
    position: absolute;
    top: -8px;
    width: 100%;
    height: 20px;
    background: transparent;
    -webkit-appearance: none;
    pointer-events: none;
    margin: 0;
}

.cat-filters__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00AFC7;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    pointer-events: all;
    cursor: pointer;
}

.cat-filters__price-labels {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    font-weight: 600;
    color: #111;
}

/* Checkboxes */
.cat-filters__checkbox {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-size: .85rem;
    color: #444;
}

.cat-filters__checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #00AFC7;
    cursor: pointer;
    flex-shrink: 0;
}

.cat-filters__checkbox-label { flex: 1; }
.cat-filters__checkbox-count { color: #aaa; font-size: .78rem; }

.cat-filters__submit {
    background: #00AFC7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .65rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: background .2s;
}

.cat-filters__submit:hover { background: #008fa3; }

.cat-filters__clear {
    display: block;
    text-align: center;
    font-size: .8rem;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
}

/* --- Área de contenido --- */
.cat-content__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cat-content__count {
    font-size: .85rem;
    color: #666;
}

/* --- Grid de productos --- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* --- Tarjeta de producto --- */
.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.product-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.product-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}

.product-card:hover .product-card__image { transform: scale(1.04); }

.product-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.product-card__image-icon { width: 3rem; height: 3rem; }

.product-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.product-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.35;
}

.product-card__title a { color: inherit; text-decoration: none; }
.product-card__title a:hover { color: #00AFC7; }

.product-card__capacity {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    color: #666;
    margin: 0;
}

.product-card__capacity-icon {
    width: .9rem;
    height: .9rem;
    color: #00AFC7;
    stroke: #00AFC7;
    flex-shrink: 0;
}

.product-card__desc {
    font-size: .82rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price {
    font-size: 1rem;
    color: #111;
    margin: .25rem 0 0;
}

.product-card__desde {
    font-size: .78rem;
    color: #888;
    font-weight: 400;
}

.product-card__price strong { font-size: 1.15rem; color: #00AFC7; }

.product-card__price-original {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 0.35rem;
    font-weight: 400;
}

.product-card__price--sale strong {
    color: #dc2626; /* Rojo premium para ofertas destacadas */
}

.product-card__btn {
    display: inline-block;
    margin-top: auto;
    padding: .55rem 1.25rem;
    background: #00AFC7;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background .2s;
}

.product-card__btn:hover { background: #008fa3; }

/* --- Estado vacío --- */
.cat-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: #888;
    text-align: center;
}

.cat-empty__icon { width: 3rem; height: 3rem; color: #ccc; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .cat-listing { grid-template-columns: 220px 1fr; gap: 1.5rem; }
    .cat-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cat-listing { grid-template-columns: 1fr; }
    .cat-filters { position: static; }
    .cat-grid    { grid-template-columns: repeat(2, 1fr); }
    .cat-hero    { min-height: 280px; padding: 3.5rem 0 2.5rem; }
}

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

/* ------------------------------------
   Paginación
   ------------------------------------ */
.cat-pagination {
    margin-top: 4rem;
    margin-bottom: 2rem;
    width: 100%;
}

.cat-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cat-pagination a.page-numbers:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #111;
}

.cat-pagination .page-numbers.current {
    background-color: #00AFC7;
    color: #fff;
    border-color: #00AFC7;
}
