/*
 * WebsDirect — CSS común para vistas CodeIgniter unificadas.
 * Las vistas nuevas usan una única estructura HTML y se adaptan por media query.
 */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0D1B2A;--navy2:#162436;--navy3:#1E3048;
  --teal:#00A896;--teal2:#00C4AF;--teal-bg:#E0F5F3;--teal-dk:#007A6C;
  --amber:#F5A623;--amber-bg:#FEF6E7;
  --violet:#6C5CE7;--violet-bg:#F0EFFE;
  --coral:#FF6B35;--coral-bg:#FFF0EB;
  --green:#27AE60;--green-bg:#EAF7EE;
  --red:#E5484D;--red-bg:#FDEBEC;
  --blue:#2D7FF9;--blue-bg:#E6F0FE;
  --gray-50:#F8F9FA;--gray-100:#EAECEF;--gray-200:#D1D5DB;
  --gray-400:#9BA3AE;--gray-600:#5C6370;--gray-700:#374151;--gray-900:#1C2128;
  --white:#FFFFFF;
  --font:-apple-system,"Segoe UI",system-ui,sans-serif;
  --serif:"Georgia",serif;
  --r:8px;--rl:14px;--rxl:20px;
}
html,body{overflow-x:hidden}
body{font-family:var(--font);color:var(--gray-900);background:#F4F6F8;font-size:15px;line-height:1.6}
a{text-decoration:none;color:inherit}
.wd-responsive-page{width:100%;min-height:100vh;background:#F4F6F8}

@media (max-width:767.98px){
  .wd-responsive-page > .hero:first-child{
    padding-top:50px!important;
  }

  .wd-responsive-page .hero .hero-wrap{
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    width:100%!important;
    min-width:0!important;
  }

  .wd-responsive-page .hero .hero-wrap > *{
    width:100%!important;
    min-width:0!important;
  }

  .wd-responsive-page .intro-two{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:24px!important;
  }

  .wd-responsive-page .intro-bullets{
    position:static!important;
    top:auto!important;
    width:100%!important;
    max-width:none!important;
    margin-top:0!important;
  }
}

/* =====================================================
   HEADER WEBS DIRECT
   Copiado desde custom.css para vistas con websdirect-common.css
===================================================== */

/* ===============================
   HEADER HELPERS
=============================== */

.link-disabled,
.link-disabled *{
  pointer-events:none;
  cursor:default;
}

#logo{
  width:140px!important;
  height:auto!important;
  max-height:none!important;
}

/* =====================================================
   WEBS DIRECT HEADER DESKTOP + MOBILE
   CSS limpio definitivo
   Desktop + Android Chrome + iOS Safari
===================================================== */

/* ===============================
   VARIABLES GLOBALES
=============================== */

:root {
  --wd-header-height: 56px;
  --wd-admin-offset: 0px;
}

@media (min-width: 783px) {
  body.admin-bar {
    --wd-admin-offset: 32px;
  }
}

@media (max-width: 782px) {
  body.admin-bar {
    --wd-admin-offset: 46px;
  }
}

body {
  margin: 0 !important;
  padding-top: var(--wd-header-height) !important;
}

.page,
.page-wrapper,
.page-body {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

html,
body {
  overflow-x: hidden !important;
}

body.wd-menu-open {
  overflow: hidden !important;
}

/* ===============================
   RESET HEADER DIVI
=============================== */

.et-l--header,
.et-l--header .et_builder_inner_content,
.et-l--header .et_pb_section,
.et-l--header .et_pb_row,
.et-l--header .et_pb_column,
.et-l--header .et_pb_module,
.et-l--header .et_pb_code,
.et-l--header .et_pb_code_inner {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.wd-header-section,
.wd-header-row {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* ===============================
   VARIABLES DEL MENÚ
=============================== */

#wd-megamenu,
#wd-mobile-menu {
  --navy: #0D1B2A;
  --teal: #00A896;
  --teal-bg: #E0F5F3;
  --teal-dk: #007A6C;
  --gray-50: #F8F9FA;
  --gray-100: #EAECEF;
  --gray-200: #D1D5DB;
  --gray-400: #9BA3AE;
  --gray-600: #5C6370;
  --gray-900: #1C2128;
  --white: #FFFFFF;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --r: 8px;
  --rl: 14px;

  font-family: var(--font);
  box-sizing: border-box;
}

#wd-megamenu *,
#wd-megamenu *::before,
#wd-megamenu *::after,
#wd-mobile-menu *,
#wd-mobile-menu *::before,
#wd-mobile-menu *::after {
  box-sizing: border-box;
}

#wd-megamenu a,
#wd-mobile-menu a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   LOGOS
=============================== */

.logo-img {
  display: flex !important;
  align-items: center !important;
}

.logo-img img {
  display: block !important;
  width: auto !important;
  object-fit: contain !important;
}

#wd-megamenu .logo-img img {
  height: 24px !important;
  max-width: 220px !important;
  transform: scale(1.55) !important;
  transform-origin: left center !important;
}

#wd-mobile-menu .mobile-logo img {
  height: 90px !important;
  max-width: 190px !important;
  transform: scale(1.22) !important;
  transform-origin: left center !important;
}

#wd-mobile-menu .drawer-logo img {
  height: 32px !important;
  max-width: 150px !important;
}

/* =====================================================
   MENÚ ESCRITORIO
===================================================== */

#wd-megamenu {
  display: block;
  width: 100%;
  line-height: 1;
  position: relative;
  z-index: 99999;
}

#wd-megamenu .wd-desktop-nav {
  position: fixed;
  top: var(--wd-admin-offset) !important;
  left: 0;
  right: 0;
  z-index: 99999;
  width: 100%;
  height: var(--wd-header-height);
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-bottom: none;
}

#wd-megamenu .logo {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  margin-right: 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

#wd-megamenu .logo span {
  color: var(--teal);
}

#wd-megamenu .nav-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  flex: 0 1 auto;
  margin-left: auto;
}

#wd-megamenu .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

#wd-megamenu .nav-btn,
#wd-megamenu .nav-link-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: var(--wd-header-height);
  padding: 0 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  white-space: nowrap;
  line-height: 1;
  transition: color .15s, background .15s;
}

#wd-megamenu .nav-btn {
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

#wd-megamenu .nav-btn:hover,
#wd-megamenu .nav-btn.active,
#wd-megamenu .nav-item:hover .nav-btn,
#wd-megamenu .nav-link-simple:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

#wd-megamenu .nav-btn svg {
  display: block;
  width: 10px;
  height: 6px;
  margin: 0;
  position: relative;
  top: 1px;
  flex-shrink: 0;
  transition: transform .2s;
}

#wd-megamenu .nav-btn.active svg,
#wd-megamenu .nav-item:hover .nav-btn svg {
  transform: rotate(180deg);
}

#wd-megamenu .nav-pill {
  display: inline-flex;
  align-items: center;
  height: 18px;
  line-height: 1;
  font-size: 10px;
  background: var(--teal);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 4px;
  font-weight: 600;
}

#wd-megamenu .nav-end {
  margin-left: 16px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
  flex-shrink: 0;
}

#wd-megamenu .btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: var(--teal);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  line-height: 1;
}

#wd-megamenu .btn-nav-cta:hover {
  background: var(--teal-dk);
  color: #fff;
}

/* ===============================
   MEGA MENÚ ESCRITORIO
=============================== */

#wd-megamenu .mega {
  position: absolute;
  top: var(--wd-header-height);
  left: -20px;
  z-index: 999999;
  min-width: 680px;
  padding: 28px;
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0 0 var(--rl) var(--rl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .13);
}

#wd-megamenu .mega.wide {
  min-width: 860px;
}

#wd-megamenu .nav-item:hover .mega,
#wd-megamenu .nav-item.open .mega,
#wd-megamenu .nav-btn.active + .mega,
#wd-megamenu .mega:hover {
  display: flex;
}

#wd-megamenu .mega-col {
  flex: 1;
  min-width: 0;
}

#wd-megamenu .mega-col + .mega-col {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--gray-100);
}

#wd-megamenu .mega-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

#wd-megamenu .mega-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r);
  transition: background .15s;
  cursor: pointer;
  color: var(--gray-900);
}

#wd-megamenu .mega-link:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

#wd-megamenu .mega-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

#wd-megamenu .mega-link-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

#wd-megamenu .mega-link-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.4;
  margin-top: 2px;
}

#wd-megamenu .mega-sub {
  padding-left: 8px;
  margin-top: 4px;
}

#wd-megamenu .mega-sub a {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  padding: 4px 8px;
  border-radius: 5px;
  transition: color .15s, background .15s;
}

#wd-megamenu .mega-sub a:hover {
  color: var(--teal-dk);
  background: var(--teal-bg);
}

#wd-megamenu .mega-sub a::before {
  content: "›  ";
  color: var(--teal);
}

#wd-megamenu .mega-cta-box {
  background: var(--navy);
  border-radius: var(--r);
  padding: 16px;
  margin-top: 16px;
}

#wd-megamenu .mega-cta-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
}

#wd-megamenu .mega-cta-btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
}

#wd-megamenu .mega-cta-btn:hover {
  background: var(--teal-dk);
  color: #fff;
}

/* =====================================================
   MENÚ MÓVIL BASE
===================================================== */

#wd-mobile-menu {
  display: none;
}

#wd-mobile-menu .wd-mobile-nav {
  position: fixed;
  top: var(--wd-admin-offset);
  left: 0;
  right: 0;
  z-index: 2147483005;
  width: 100%;
  height: var(--wd-header-height);
  min-height: var(--wd-header-height);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

#wd-mobile-menu .mobile-logo {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  height: var(--wd-header-height);
  max-width: calc(100% - 70px);
  overflow: visible;
  position: relative;
  z-index: 1;
}

#wd-mobile-menu .mobile-logo span {
  color: var(--teal);
}

/* Hamburguesa */
#wd-mobile-menu .hamburger {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r);
  position: relative;
  z-index: 2147483006;
  pointer-events: auto;
}

#wd-mobile-menu .ham-line {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}

#wd-mobile-menu .hamburger.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#wd-mobile-menu .hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

#wd-mobile-menu .hamburger.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
#wd-mobile-menu .drawer-overlay {
  position: fixed;
  top: calc(var(--wd-admin-offset) + var(--wd-header-height));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483001;
  width: 100vw;
  height: auto;
  min-height: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

#wd-mobile-menu .drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Drawer */
#wd-mobile-menu .drawer {
  position: fixed;
  top: calc(var(--wd-admin-offset) + var(--wd-header-height));
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 2147483002;
  width: 94vw;
  max-width: 460px;
  height: auto;
  min-height: 0;
  background: var(--white);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transition: transform .3s ease;
  will-change: transform;
}

#wd-mobile-menu .drawer.open {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

/* Ocultamos la cabecera interna del drawer.
   El header principal se queda visible siempre. */
#wd-mobile-menu .drawer-header {
  display: none !important;
}

#wd-mobile-menu .drawer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

#wd-mobile-menu .drawer-logo span {
  color: var(--teal);
}

#wd-mobile-menu .drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .75);
  font-size: 22px;
  line-height: 1;
  padding: 4px;
}

/* Contenido drawer */
#wd-mobile-menu .drawer-body {
  flex: 1;
  padding: 22px 0 48px;
}

#wd-mobile-menu .drawer-section {
  margin-bottom: 10px;
}

#wd-mobile-menu .drawer-section-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: background .15s;
  background: none;
  border: none;
  font-family: var(--font);
  text-align: left;
}

#wd-mobile-menu .drawer-section-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

#wd-mobile-menu .drawer-section-head:active {
  background: var(--gray-50);
}

#wd-mobile-menu .ds-icon {
  font-size: 16px;
}

#wd-mobile-menu .drawer-chevron {
  font-size: 12px;
  color: var(--gray-400);
  transition: transform .25s;
}

#wd-mobile-menu .drawer-section.open .drawer-chevron {
  transform: rotate(180deg);
}

#wd-mobile-menu .drawer-pill {
  font-size: 9px;
  background: var(--teal);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 4px;
}

#wd-mobile-menu .drawer-sub {
  display: none;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 8px 0;
}

#wd-mobile-menu .drawer-section.open .drawer-sub {
  display: block;
}

#wd-mobile-menu .drawer-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px 13px 52px;
  font-size: 15px;
  color: var(--gray-600);
  transition: background .15s, color .15s;
}

#wd-mobile-menu .drawer-sub a:hover,
#wd-mobile-menu .drawer-sub a:active {
  background: var(--teal-bg);
  color: var(--teal-dk);
}

#wd-mobile-menu .drawer-sub-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 12px 24px 6px;
}

/* Enlaces simples móvil */
#wd-mobile-menu .drawer-simple-link {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  transition: background .15s, color .15s;
}

#wd-mobile-menu .drawer-simple-link:hover,
#wd-mobile-menu .drawer-simple-link:active {
  background: var(--teal-bg);
  color: var(--teal-dk);
}

/* CTA móvil */
#wd-mobile-menu .drawer-cta-area {
  padding: 24px;
  border-top: 1px solid var(--gray-100);
  margin-top: 8px;
}

#wd-mobile-menu .drawer-cta-btn {
  display: block;
  text-align: center;
  background: var(--teal);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, transform .1s;
}

#wd-mobile-menu .drawer-cta-btn:hover {
  background: var(--teal-dk);
  color: #fff;
}

#wd-mobile-menu .drawer-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray-600);
}

#wd-mobile-menu .drawer-tel a {
  color: var(--navy);
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE DESKTOP PEQUEÑO
===================================================== */

@media (max-width: 1100px) {
  #wd-megamenu .wd-desktop-nav {
    padding: 0 18px;
  }

  #wd-megamenu .logo {
    margin-right: 20px;
  }

  #wd-megamenu .nav-btn,
  #wd-megamenu .nav-link-simple {
    padding: 0 9px;
    font-size: 12px;
  }

  #wd-megamenu .mega,
  #wd-megamenu .mega.wide {
    min-width: 720px;
  }
}

/* =====================================================
   CAMBIO DESKTOP / MÓVIL + RESET DIVI
===================================================== */

@media (max-width: 980px) {
  #wd-megamenu {
    display: none !important;
  }

  /* Evita que Divi altere el header móvil */
  .et-l--header,
  .et-l--header .et_builder_inner_content,
  .et-l--header .et_pb_section,
  .et-l--header .et_pb_row,
  .et-l--header .et_pb_column,
  .et-l--header .et_pb_module,
  .et-l--header .et_pb_code,
  .et-l--header .et_pb_code_inner {
    display: block !important;
    height: var(--wd-header-height) !important;
    min-height: var(--wd-header-height) !important;
    max-height: var(--wd-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    background: transparent !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .et-l--header {
    position: fixed !important;
    top: var(--wd-admin-offset) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2147482990 !important;
    width: 100% !important;
    background: transparent !important;
  }
}

/* =====================================================
   FIX FINAL IOS + ANDROID
   No aplicar transform al contenedor padre #wd-mobile-menu
===================================================== */

@media (max-width: 980px) {

  body {
    padding-top: var(--wd-header-height) !important;
  }

  body.wd-menu-open {
    overflow: hidden !important;
  }

  /* Contenedor principal: SIN transform en iOS */
  #wd-mobile-menu {
    display: block !important;
    position: fixed !important;
    top: var(--wd-admin-offset) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--wd-header-height) !important;
    min-height: var(--wd-header-height) !important;
    background: #0D1B2A !important;
    z-index: 999999990 !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  /* Header móvil siempre visible */
  #wd-mobile-menu .wd-mobile-nav,
  #wd-mobile-menu.drawer-is-open .wd-mobile-nav {
    display: flex !important;
    position: fixed !important;
    top: var(--wd-admin-offset) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--wd-header-height) !important;
    min-height: var(--wd-header-height) !important;
    background: #0D1B2A !important;
    z-index: 999999995 !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  /* Botón hamburguesa / X */
  #wd-mobile-menu .hamburger {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    position: relative !important;
    z-index: 999999996 !important;
    pointer-events: auto !important;
  }

  /* Quitamos la cabecera interna del drawer */
  #wd-mobile-menu .drawer-header {
    display: none !important;
  }

  /* Overlay debajo del header */
  #wd-mobile-menu .drawer-overlay {
    position: fixed !important;
    top: calc(var(--wd-admin-offset) + var(--wd-header-height)) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;
    background: rgba(0, 0, 0, .55) !important;
    z-index: 999999991 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .25s ease, visibility .25s ease !important;
  }

  #wd-mobile-menu .drawer-overlay.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Drawer grande debajo del header */
  #wd-mobile-menu .drawer {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: calc(var(--wd-admin-offset) + var(--wd-header-height)) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 94vw !important;
    max-width: 460px !important;
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
    z-index: 999999992 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(100%) !important;
    -webkit-transform: translateX(100%) !important;
    transition: transform .3s ease !important;
    will-change: transform !important;
  }

  #wd-mobile-menu .drawer.open {
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
  }
}

/* =====================================================
   AJUSTE MÓVILES PEQUEÑOS
===================================================== */

@media (max-width: 480px) {
  #wd-mobile-menu .drawer {
    width: 94vw !important;
    max-width: none !important;
  }

  #wd-mobile-menu .mobile-logo img {
    max-width: 140px !important;
    transform: scale(1.18) !important;
  }

  #wd-mobile-menu .drawer-section-head {
    font-size: 15px !important;
    padding: 15px 22px !important;
  }

  #wd-mobile-menu .drawer-sub a {
    font-size: 14px !important;
    padding: 12px 22px 12px 48px !important;
  }

  #wd-mobile-menu .drawer-simple-link {
    font-size: 15px !important;
    padding: 15px 22px !important;
  }
}


/* =====================================================
   FIX DESKTOP — MEGAMENÚS ALINEADOS A LA DERECHA
   Sin salirse de pantalla
===================================================== */

@media (min-width: 981px) {

  #wd-megamenu .mega {
    position: fixed !important;
    top: calc(var(--wd-admin-offset) + var(--wd-header-height)) !important;

    left: auto !important;
    right: 32px !important;
    transform: none !important;

    width: min(680px, calc(100vw - 64px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 64px) !important;

    z-index: 999999 !important;
  }

  #wd-megamenu .mega.wide {
    width: min(860px, calc(100vw - 64px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 64px) !important;
  }

  #wd-megamenu .mega-col {
    min-width: 0 !important;
  }

  #wd-megamenu .nav-items > .nav-item:nth-child(1) .mega,
  #wd-megamenu .nav-items > .nav-item:nth-child(2) .mega {
    position: absolute !important;
    top: var(--wd-header-height) !important;
    left: -20px !important;
    right: auto !important;
    transform: none !important;

    width: min(680px, calc(100vw - 64px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 64px) !important;

    z-index: 999999 !important;
  }
}

/* =====================================================
   FOOTER WEBS DIRECT
===================================================== */

.wd-footer {
  --wd-footer-teal: #00A896;
  --wd-footer-gray-400: #9BA3AE;
  --wd-footer-gray-900: #1C2128;
  --wd-footer-white: #FFFFFF;
  --wd-footer-font: -apple-system, "Segoe UI", system-ui, sans-serif;

  background: var(--wd-footer-gray-900);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 56px 40px 32px;
  color: var(--wd-footer-white);
  font-family: var(--wd-footer-font);
  line-height: 1.7;
}

.wd-footer *,
.wd-footer *::before,
.wd-footer *::after {
  box-sizing: border-box;
}

.wd-footer p,
.wd-footer h4,
.wd-footer ul {
  margin: 0;
  padding: 0;
}

.wd-footer ul {
  list-style: none;
}

.wd-footer a {
  text-decoration: none;
}

.wd-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wd-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.wd-footer-logo {
  display: inline-block;
  color: var(--wd-footer-white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.wd-footer-logo span {
  color: var(--wd-footer-teal);
}

.wd-footer-brand p {
  color: var(--wd-footer-gray-400);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
}

.wd-footer-brand .wd-footer-contact-line {
  color: rgba(255, 255, 255, 0.7);
}

.wd-footer-brand .wd-footer-contact-line a,
.wd-footer-contact-line a {
  color: var(--wd-footer-teal);
}

.wd-footer-col h4 {
  color: var(--wd-footer-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wd-footer-col li {
  margin-bottom: 9px;
}

.wd-footer-col a {
  color: var(--wd-footer-gray-400);
  font-size: 13px;
  transition: color .2s;
}

.wd-footer-col a:hover,
.wd-footer-bottom .wd-footer-legal a:hover {
  color: var(--wd-footer-white);
}

.wd-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
}

.wd-footer-bottom p {
  color: var(--wd-footer-gray-400);
  font-size: 12px;
}

.wd-footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wd-footer-legal a {
  color: var(--wd-footer-gray-400);
  font-size: 12px;
  transition: color .2s;
}

.wd-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 980px) {
  .wd-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .wd-footer {
    padding: 48px 20px 28px;
  }

  .wd-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wd-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .wd-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wd-footer-top {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   LEGAL PAGES
   Estructura común para aviso legal, cookies y privacidad
===================================================== */

body .wd-legal-page{
  background:#fff;
  color:var(--gray-900);
}

body .wd-legal-page .wd-legal-container{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:0 24px;
}

body .wd-legal-page .wd-legal-hero{
  background:var(--navy);
  color:#fff;
  padding:58px 0 54px;
}

body .wd-legal-page .wd-legal-eyebrow{
  display:block;
  margin-bottom:12px;
  color:var(--teal2);
  font-size:11px;
  font-weight:800;
  letter-spacing:.09em;
  line-height:1.2;
  text-transform:uppercase;
}

body .wd-legal-page .wd-legal-hero h1{
  max-width:760px;
  margin:0;
  color:#fff;
  font-family:var(--serif);
  font-size:42px;
  font-weight:700;
  line-height:1.14;
}

body .wd-legal-page .wd-legal-hero p{
  max-width:760px;
  margin:18px 0 0;
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.7;
}

body .wd-legal-page .wd-legal-main{
  background:#fff;
  padding:54px 0 82px;
}

body .wd-legal-page .wd-legal-document{
  max-width:860px;
}

body .wd-legal-page .wd-legal-document h2{
  margin:36px 0 12px;
  color:var(--navy);
  font-size:22px;
  font-weight:800;
  line-height:1.25;
}

body .wd-legal-page .wd-legal-document h2:first-child{
  margin-top:0;
}

body .wd-legal-page .wd-legal-document h3{
  margin:24px 0 8px;
  color:var(--gray-900);
  font-size:16px;
  font-weight:800;
  line-height:1.35;
}

body .wd-legal-page .wd-legal-document p,
body .wd-legal-page .wd-legal-document li{
  color:var(--gray-600);
  font-size:15px;
  line-height:1.75;
}

body .wd-legal-page .wd-legal-document p+p{
  margin-top:14px;
}

body .wd-legal-page .wd-legal-document ul{
  margin:14px 0 0;
  padding-left:22px;
}

body .wd-legal-page .wd-legal-document li+li{
  margin-top:8px;
}

body .wd-legal-page .wd-legal-document li ul{
  margin-top:6px;
}

body .wd-legal-page .wd-legal-document strong{
  color:var(--gray-900);
  font-weight:800;
}

body .wd-legal-page .wd-legal-document a{
  color:var(--teal-dk);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}

body .wd-legal-page .wd-legal-document a:hover{
  color:var(--navy);
}

body .wd-legal-page .wd-legal-table-wrap{
  width:100%;
  margin:22px 0 34px;
  overflow-x:auto;
  border:1px solid var(--gray-100);
  border-radius:var(--rl);
}

body .wd-legal-page .wd-legal-table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
  font-size:13px;
}

body .wd-legal-page .wd-legal-table th{
  background:var(--navy2);
  color:#fff;
  padding:13px 14px;
  text-align:left;
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  line-height:1.25;
  text-transform:uppercase;
}

body .wd-legal-page .wd-legal-table td{
  padding:14px;
  border-top:1px solid var(--gray-100);
  color:var(--gray-600);
  vertical-align:top;
  line-height:1.55;
}

body .wd-legal-page .wd-legal-table tbody tr:nth-child(even) td{
  background:var(--gray-50);
}

body .wd-legal-page .wd-legal-table code{
  display:inline-block;
  margin:1px 2px 1px 0;
  padding:2px 5px;
  border-radius:4px;
  background:var(--teal-bg);
  color:var(--teal-dk);
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace;
  font-size:12px;
  font-weight:700;
}

body .wd-document-page .wd-document-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  margin-top:22px;
  padding:10px 18px;
  border-radius:999px;
  background:var(--teal2);
  color:var(--navy);
  font-size:14px;
  font-weight:800;
  line-height:1.2;
  text-decoration:none;
  transition:background .18s ease,transform .18s ease;
}

body .wd-document-page .wd-document-action:hover{
  background:#fff;
  transform:translateY(-1px);
}

body .wd-document-page .wd-document-main{
  background:#f4f6f8;
  padding:28px 24px 70px;
}

body .wd-document-page .wd-document-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

body .wd-document-page .wd-document-viewer{
  width:100%;
  height:calc(100vh - 150px);
  min-height:680px;
  overflow:hidden;
  border:1px solid var(--gray-200);
  border-radius:var(--rl);
  background:#fff;
  box-shadow:0 12px 34px rgba(13,27,42,.08);
}

body .wd-document-page .wd-document-viewer iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
  background:#fff;
}

body .wd-document-page .wd-document-fallback{
  margin-top:14px;
  color:var(--gray-600);
  font-size:13px;
  line-height:1.5;
}

body .wd-document-page .wd-document-fallback a{
  color:var(--teal-dk);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width: 767.98px) {
  body .wd-legal-page .wd-legal-container{
    padding:0 18px;
  }

  body .wd-legal-page .wd-legal-hero{
    padding:42px 0 40px;
  }

  body .wd-legal-page .wd-legal-hero h1{
    font-size:32px;
  }

  body .wd-legal-page .wd-legal-hero p{
    font-size:15px;
  }

  body .wd-legal-page .wd-legal-main{
    padding:38px 0 60px;
  }

  body .wd-legal-page .wd-legal-document h2{
    font-size:20px;
  }

  body .wd-document-page .wd-document-main{
    padding:18px 12px 46px;
  }

  body .wd-document-page .wd-document-viewer{
    height:70vh;
    min-height:520px;
    border-radius:10px;
  }
}

/* =====================================================
   COOKIE CONSENT
   Banner y configuración de cookies compartidos
===================================================== */

#cookies-fixed {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2147483646;
  border: 0;
  border-radius: 999px;
  background: #444c50;
  color: #fff;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  cursor: pointer;
}

#cookies-fixed:hover {
  background: #333b3f;
}

#cookies-fixed[hidden],
#cookies[hidden],
#cookieConfig[hidden],
#cookieWelcome[hidden],
.cookieInfoRow[hidden] {
  display: none !important;
}

#cookies {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(13,27,42,.38);
}

#cookies .wd-cookie-dialog {
  width: min(100%, 860px);
  max-height: min(78vh, 680px);
  overflow: auto;
  background: #fff;
  color: var(--gray-900);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}

#cookies .cookieContainer {
  padding: 24px;
}

#cookies .cookieMsg h5 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

#cookies .cookieMsg p,
#cookies .cookieInfoRow td {
  margin: 0 0 10px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.55;
}

#cookies a {
  color: var(--teal-dk);
  font-weight: 700;
  text-decoration: underline;
}

#cookies .cookieFooter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

#cookies .cookieMoreLink {
  margin-right: auto;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 600;
}

#cookies .cookieBtn {
  border: 0;
  border-radius: 8px;
  padding: 9px 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

#cookies .cookieBtnSecondary {
  background: var(--gray-100);
  color: var(--gray-700);
}

#cookies .cookieBtnSuccess {
  background: var(--teal);
  color: #fff;
}

#cookies .cookieBtn:hover {
  filter: brightness(.96);
}

#cookies .cookieSelector {
  overflow-x: auto;
  margin-top: 14px;
}

#cookies .cookieTable {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 12px;
}

#cookies .cookieTable th,
#cookies .cookieTable td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
  vertical-align: top;
}

#cookies .cookieTable th {
  color: var(--gray-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

#cookies .cookieRequired {
  color: var(--gray-400);
  font-weight: 700;
}

#cookies .infoCookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease;
}

#cookies .infoCookie.rotate-180 {
  transform: rotate(180deg);
}

#cookies .cookie-description {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--gray-50);
}

#cookies .cookie-description + .cookie-description {
  margin-top: 8px;
}

#cookies .cookie-desc-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  padding: 4px 0;
}

#cookies .cookie-desc-line b {
  color: var(--gray-900);
}

#cookies .cookie-toggle {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

#cookies .cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#cookies .cookie-toggle span {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--gray-200);
  transition: background .2s ease;
}

#cookies .cookie-toggle span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .2s ease;
}

#cookies .cookie-toggle input:checked + span {
  background: var(--teal);
}

#cookies .cookie-toggle input:checked + span::before {
  transform: translateX(20px);
}

@media screen and (hover: none) and (pointer: coarse), screen and (max-width: 768px) {
  #cookies-fixed {
    left: 0;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 36px;
    height: 36px;
    border-radius: 0 999px 999px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
  }

  #cookies-fixed::before {
    content: "🍪";
    font-size: 14px;
    line-height: 1;
    text-indent: 0;
  }

  #cookies {
    align-items: flex-end;
    padding: 12px;
  }

  #cookies .wd-cookie-dialog {
    max-height: 82vh;
    border-radius: 12px;
  }

  #cookies .cookieContainer {
    padding: 18px;
  }

  #cookies .cookieFooter {
    align-items: stretch;
    flex-direction: column;
  }

  #cookies .cookieMoreLink {
    margin-right: 0;
  }

  #cookies .cookieBtn {
    width: 100%;
  }
}

/* Formulario oscuro usado en hero/contacto rápido */
.home-contact-card{
  border:1px solid rgba(0,168,150,.7);
  border-radius:12px;
  background:#223F60;
  padding:32px 30px 30px;
  color:var(--white);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}
.home-contact-card h2{
  margin:0 0 34px;
  color:var(--white);
  text-align:left;
  font-size:22px;
  font-weight:800;
  line-height:1.2;
}
.wd-responsive-page .home-contact-card h2{
  margin:0 0 34px;
  color:var(--white);
  text-align:left;
  font-family:var(--font);
  font-size:22px;
  font-weight:800;
  line-height:1.2;
}
.home-contact-card form{display:grid;gap:11px}
.home-contact-card label:not(.form-check)>span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
}
.home-contact-card input,
.home-contact-card select,
.home-contact-card textarea{
  width:100%;
  border:1px solid var(--teal);
  border-radius:8px;
  background:#122B45;
  color:var(--white);
  font-family:var(--font);
  font-size:12px;
  padding:0 15px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.home-contact-card input,
.home-contact-card select{height:46px}
.home-contact-card textarea{
  min-height:125px;
  padding-top:14px;
  resize:vertical;
}
.home-contact-card input::placeholder,
.home-contact-card textarea::placeholder{
  color:rgba(255,255,255,.56);
  opacity:1;
}
.home-contact-card select{color:var(--white)}
.home-contact-card select:invalid{color:rgba(255,255,255,.82)}
.home-contact-card input:focus,
.home-contact-card select:focus,
.home-contact-card textarea:focus{
  border-color:#35D8C5;
  box-shadow:0 0 0 3px rgba(0,168,150,.18);
}
.home-contact-card .form-check{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-top:4px;
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.4;
}
.home-contact-card .form-check input{
  width:16px;
  height:16px;
  flex:0 0 16px;
  margin-top:1px;
  padding:0;
  border-radius:0;
  accent-color:var(--teal);
}
.home-contact-card button{
  justify-self:center;
  min-width:208px;
  margin-top:16px;
  border:2px solid var(--white);
  border-radius:999px;
  background:#24B5A2;
  color:var(--white);
  padding:10px 24px;
  font-size:20px;
  font-weight:500;
  text-transform:none;
  cursor:pointer;
  line-height:1.2;
  transition:background .2s ease,transform .2s ease;
}
.home-contact-card button:hover{
  background:var(--teal);
  transform:translateY(-1px);
}

@media (max-width:767.98px){
  .home-contact-card{
    width:100%;
    max-width:420px;
    margin:0 auto;
    padding:24px 20px;
  }
  .home-contact-card h2{font-size:22px}
  .home-contact-card form{gap:10px}
  .home-contact-card textarea{min-height:118px}
  .home-contact-card button{
    width:auto;
    min-width:206px;
    margin:12px auto 0;
  }
}

/* =====================================================
   HOME WEBS DIRECT
   Copiado desde custom.css y limitado a app/Views/home.php
===================================================== */

.wd-home {
  --home-navy: #0D1B2A;
  --home-navy-mid: #1A2E45;
  --home-teal: #00A896;
  --home-teal-light: #E0F5F3;
  --home-teal-dark: #007A6C;
  --home-accent-light: #FFF0EB;
  --home-gray-100: #F8F9FA;
  --home-gray-200: #EAECEF;
  --home-gray-400: #9BA3AE;
  --home-gray-600: #5C6370;
  --home-gray-900: #1C2128;
  --home-white: #FFFFFF;
  --home-font-serif: Georgia, "Times New Roman", serif;
  --home-font-sans: -apple-system, "Segoe UI", system-ui, sans-serif;
  --home-radius: 8px;
  --home-radius-lg: 14px;
  --home-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  --home-safe-bottom: env(safe-area-inset-bottom, 0px);

  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  overflow-x: hidden;
  background: #F4F6F8;
  color: var(--home-gray-900);
  font-family: var(--home-font-sans);
  line-height: 1.7;
}

.wd-home *,
.wd-home *::before,
.wd-home *::after {
  box-sizing: border-box;
}

.wd-home a {
  text-decoration: none;
}

.wd-home img {
  max-width: 100%;
}

.wd-home .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.wd-home .home-hero {
  background: var(--home-navy);
  padding: 82px 40px 58px;
  position: relative;
  overflow: hidden;
}

.wd-home .home-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -90px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.wd-home .home-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 56px;
  align-items: center;
}

.wd-home .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 150, 0.15);
  border: 1px solid rgba(0, 168, 150, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.wd-home .hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-teal);
}

.wd-home .hero-pill span:last-child {
  color: var(--home-teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.wd-home .home-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--home-white);
  font-family: var(--home-font-serif);
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}

.wd-home .home-hero h1 em {
  color: var(--home-teal);
  font-style: normal;
}

.wd-home .hero-lead {
  max-width: 670px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.wd-home .hero-actions,
.wd-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wd-home .btn-primary,
.wd-home .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--home-radius);
  padding: 13px 24px;
  font-size: 14px;
  line-height: 1.2;
  transition: background .2s, border-color .2s, color .2s, transform .1s;
}

.wd-home .btn-primary {
  background: var(--home-teal);
  color: var(--home-white);
  font-weight: 700;
}

.wd-home .btn-primary:hover {
  background: var(--home-teal-dark);
  color: var(--home-white);
  transform: translateY(-1px);
}

.wd-home .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--home-white);
  font-weight: 600;
}

.wd-home .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--home-white);
}

.wd-home .hero-disclaimer {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.wd-home .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.wd-home .hero-stat-num {
  color: var(--home-white);
  font-family: var(--home-font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.wd-home .hero-stat-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.4;
}

.wd-home .trust-bar {
  margin-top: 28px;
}

.wd-home .trust-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-home .trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wd-home .trust-chips span {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.70);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
}

.wd-home .home-contact-card {
  border: 1px solid rgba(0, 168, 150, 0.7);
  border-radius: 12px;
  background: #223F60;
  padding: 32px 30px 30px;
  color: var(--home-white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.wd-home .home-contact-card h2 {
  margin: 0 0 34px;
  color: var(--home-white);
  text-align: left;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.wd-home .home-contact-card form {
  display: grid;
  gap: 11px;
}

.wd-home .home-contact-card label:not(.form-check) > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.wd-home .home-contact-card input,
.wd-home .home-contact-card select,
.wd-home .home-contact-card textarea {
  width: 100%;
  border: 1px solid var(--home-teal);
  border-radius: 8px;
  background: #122B45;
  color: var(--home-white);
  font-family: var(--home-font-sans);
  font-size: 12px;
  padding: 0 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wd-home .home-contact-card input,
.wd-home .home-contact-card select {
  height: 46px;
}

.wd-home .home-contact-card textarea {
  min-height: 125px;
  padding-top: 14px;
  resize: vertical;
}

.wd-home .home-contact-card input::placeholder,
.wd-home .home-contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
  opacity: 1;
}

.wd-home .home-contact-card select {
  color: var(--home-white);
}

.wd-home .home-contact-card select:invalid {
  color: rgba(255, 255, 255, 0.82);
}

.wd-home .home-contact-card input:focus,
.wd-home .home-contact-card select:focus,
.wd-home .home-contact-card textarea:focus {
  border-color: #35D8C5;
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.18);
}

.wd-home .home-contact-card .form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.wd-home .home-contact-card .form-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  padding: 0;
  border-radius: 0;
  accent-color: var(--home-teal);
}

.wd-home .home-contact-card button {
  justify-self: center;
  min-width: 208px;
  margin-top: 16px;
  border: 2px solid var(--home-white);
  border-radius: 999px;
  background: #24B5A2;
  color: var(--home-white);
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wd-home .home-contact-card button:hover {
  background: var(--home-teal);
  transform: translateY(-1px);
}

.wd-home .section,
.wd-home .tech-section {
  padding: 76px 0;
  background: #F4F6F8;
}

.wd-home .section-alt {
  background: #F4F6F8;
}

.wd-home .section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--home-teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wd-home .section h2,
.wd-home .tech-section h2,
.wd-home .section-copy h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--home-gray-900);
  font-family: var(--home-font-serif);
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.wd-home .lead,
.wd-home .section-copy p {
  max-width: 760px;
  margin: 0 0 36px;
  color: var(--home-gray-600);
  font-size: 17px;
  line-height: 1.65;
}

.wd-home .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wd-home .service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-gray-200);
  border-radius: var(--home-radius-lg);
  background: var(--home-white);
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}

.wd-home .service-card:hover {
  box-shadow: var(--home-shadow);
  transform: translateY(-2px);
}

.wd-home .service-card:focus-visible {
  outline: 3px solid rgba(0, 168, 150, 0.35);
  outline-offset: 3px;
}

.wd-home .service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--home-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-teal-light);
  font-size: 20px;
  margin-bottom: 16px;
}

.wd-home .service-copy {
  min-width: 0;
}

.wd-home .service-card h3,
.wd-home .process-step h3,
.wd-home .persona-card h3,
.wd-home .why-item h3 {
  margin: 0 0 8px;
  color: var(--home-gray-900);
  font-size: 16px;
  line-height: 1.35;
}

.wd-home .service-card p,
.wd-home .process-step p,
.wd-home .why-item p {
  margin: 0;
  color: var(--home-gray-600);
  font-size: 14px;
  line-height: 1.6;
}

.wd-home .process {
  max-width: 860px;
}

.wd-home .process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--home-gray-200);
}

.wd-home .process-step:last-child {
  border-bottom: 0;
}

.wd-home .process-step-num,
.wd-home .why-item > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--home-teal);
  color: var(--home-white);
  font-size: 14px;
  font-weight: 800;
}

.wd-home .process-kpi {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--home-teal-light);
  color: var(--home-teal-dark);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.wd-home .logos-section {
  background: #F4F6F8;
  padding: 52px 0;
  overflow: hidden;
}

.wd-home .logos-viewport {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  overflow: hidden;
}

.wd-home .logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: wd-home-logos-marquee 48s linear infinite;
  will-change: transform;
}

.wd-home .logos-viewport:hover .logos-track {
  animation-play-state: paused;
}

.wd-home .logos-group {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  align-items: center;
  padding-right: 20px;
}

.wd-home .logo-tile {
  flex: 0 0 190px;
  width: 190px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 27, 42, 0.04);
  background: var(--home-white);
}

.wd-home .logo-tile img {
  display: block;
  max-width: 160px;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.2s ease;
}

.wd-home .logo-tile:hover img {
  transform: scale(1.03);
}

.wd-home .logo-tile img[src$="/ccoo.png"] {
  transform: scale(1.75);
}

.wd-home .logo-tile:hover img[src$="/ccoo.png"] {
  transform: scale(1.85);
}

@keyframes wd-home-logos-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-home .logos-viewport {
    overflow-x: auto;
  }

  .wd-home .logos-track {
    animation: none;
  }
}

.wd-home .case-slider {
  position: relative;
  width: 100vw;
  margin: 42px calc(50% - 50vw) 0;
  overflow: hidden;
  background: var(--home-navy);
}

.wd-home .case-slider-viewport {
  overflow: hidden;
}

.wd-home .case-slider-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s ease;
  will-change: transform;
}

.wd-home .case-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: clamp(600px, 49vw, 880px);
  overflow: hidden;
}

.wd-home .case-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.32), rgba(13, 27, 42, 0.05));
  pointer-events: none;
}

.wd-home .case-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.wd-home .case-slide-panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(54vw, 990px);
  transform: translate(-50%, -50%);
  background: rgba(31, 36, 37, 0.58);
  color: var(--home-white);
  padding: 28px 32px 30px;
}

.wd-home .case-slide-panel h3 {
  margin: 0 0 8px;
  color: var(--home-white);
  font-family: var(--home-font-sans);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.wd-home .case-slide-panel p {
  margin: 0;
  color: var(--home-white);
  font-family: var(--home-font-sans);
  font-size: 25px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.wd-home .case-slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--home-white);
  font-family: var(--home-font-sans);
  font-size: 62px;
  font-weight: 200;
  line-height: 0.75;
  cursor: pointer;
  transform: translateY(-50%);
  opacity: 0.9;
}

.wd-home .case-slider-arrow:hover {
  opacity: 1;
}

.wd-home .case-slider-prev {
  left: 26px;
}

.wd-home .case-slider-next {
  right: 26px;
}

.wd-home .case-slider-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.wd-home .case-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.wd-home .case-slider-dot.active {
  background: var(--home-white);
}

.wd-home .personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}

.wd-home .persona-card {
  border: 1px solid var(--home-gray-200);
  border-radius: var(--home-radius-lg);
  background: var(--home-white);
  padding: 28px;
}

.wd-home .persona-toggle {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: default;
  pointer-events: none;
}

.wd-home .persona-tag {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
}

.wd-home .tag-marketing {
  background: var(--home-accent-light);
  color: #CC4400;
}

.wd-home .tag-it {
  background: var(--home-teal-light);
  color: var(--home-teal-dark);
}

.wd-home .persona-chevron {
  display: none;
}

.wd-home .persona-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wd-home .persona-list li {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--home-gray-200);
  padding: 9px 0;
  color: var(--home-gray-600);
  font-size: 14px;
  line-height: 1.5;
}

.wd-home .persona-list li::before {
  content: "→";
  color: var(--home-teal);
  flex-shrink: 0;
}

.wd-home .persona-list li:last-child {
  border-bottom: 0;
}

.wd-home .section-copy h2:not(:first-child) {
  margin-top: 42px;
}

.wd-home .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 46px;
  max-width: 1000px;
  margin-top: 42px;
}

.wd-home .why-item {
  display: flex;
  gap: 16px;
}

.wd-home .why-item > span {
  background: var(--home-navy);
  color: var(--home-teal);
}

.wd-home .tech-section {
  background: #F4F6F8;
}

.wd-home .tech-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.wd-home .tech-tab {
  border: 1px solid var(--home-gray-200);
  border-radius: 999px;
  background: var(--home-white);
  color: var(--home-gray-600);
  padding: 7px 18px;
  font-family: var(--home-font-sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.wd-home .tech-tab.active,
.wd-home .tech-tab:hover {
  background: var(--home-navy);
  border-color: var(--home-navy);
  color: var(--home-white);
}

.wd-home .tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.wd-home .tech-item {
  border: 1px solid var(--home-gray-200);
  border-radius: var(--home-radius-lg);
  background: var(--home-white);
  padding: 18px 12px;
  text-align: center;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.wd-home .tech-item:hover {
  border-color: var(--home-teal);
  box-shadow: 0 4px 16px rgba(0, 168, 150, 0.10);
  transform: translateY(-2px);
}

.wd-home .tech-item span,
.wd-home .tech-item strong,
.wd-home .tech-item small {
  display: block;
}

.wd-home .tech-item span {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.wd-home .tech-item strong {
  color: var(--home-gray-900);
  font-size: 12px;
  line-height: 1.25;
}

.wd-home .tech-item small {
  color: var(--home-gray-400);
  font-size: 10px;
  line-height: 1.25;
  margin-top: 2px;
}

.wd-home .project-cta {
  background: #F4F6F8;
  padding: 62px 0;
  text-align: center;
}

.wd-home .project-cta h2 {
  margin: 0 0 8px;
  color: var(--home-gray-900);
  font-family: var(--home-font-serif);
  font-size: 32px;
}

.wd-home .project-cta p {
  margin: 0 0 24px;
  color: var(--home-gray-600);
}

.wd-home .project-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-teal);
  color: var(--home-white);
  padding: 13px 34px;
  font-weight: 800;
}

.wd-home .faq-container {
  max-width: 960px;
}

.wd-home .faq-item {
  border-bottom: 1px solid var(--home-gray-200);
}

.wd-home .faq-q {
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--home-gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  text-align: left;
  font-family: var(--home-font-sans);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.wd-home .faq-q span {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--home-gray-400);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--home-gray-400);
}

.wd-home .faq-a {
  display: none;
  max-width: 780px;
  padding: 0 56px 22px 0;
  color: var(--home-gray-600);
  font-size: 15px;
  line-height: 1.7;
}

.wd-home .faq-item.open .faq-a {
  display: block;
}

.wd-home .faq-item.open .faq-q {
  color: var(--home-teal-dark);
}

.wd-home .faq-item.open .faq-q span {
  border-color: var(--home-teal);
  background: var(--home-teal);
  color: var(--home-white);
  transform: rotate(45deg);
}

.wd-home .sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
}

.wd-home .sectors span {
  border: 1px solid var(--home-gray-200);
  border-radius: 999px;
  background: var(--home-gray-100);
  color: var(--home-gray-600);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
}

.wd-home .cta-banner {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--home-radius-lg);
  background: var(--home-navy);
  padding: 56px 48px;
  text-align: center;
}

.wd-home .cta-banner .section-label {
  color: var(--home-teal);
}

.wd-home .cta-banner h2 {
  margin: 0 auto 14px;
  color: var(--home-white);
  font-family: var(--home-font-serif);
  font-size: 32px;
  line-height: 1.25;
}

.wd-home .cta-banner p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.65);
}

.wd-home .cta-banner .cta-actions {
  justify-content: center;
}

.wd-home .cta-contact {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 13px;
}

.wd-home .cta-contact a {
  color: var(--home-teal);
}

.wd-home .sticky-cta {
  display: none;
}

@media (max-width: 1024px) {
  .wd-home .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wd-home .home-contact-card {
    max-width: 620px;
  }

  .wd-home .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wd-home .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 980px) {
  .wd-home .home-hero {
    padding: 42px 0 34px;
  }

  .wd-home .home-hero::before {
    top: auto;
    right: -90px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.18) 0%, transparent 70%);
  }

  .wd-home .home-hero-grid {
    width: 100%;
    max-width: 640px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .wd-home .home-hero-copy {
    width: 100%;
  }

  .wd-home .inner {
    padding: 0 20px;
  }

  .wd-home .home-hero h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 1.14;
    letter-spacing: -0.2px;
  }

  .wd-home .hero-lead {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.62;
  }

  .wd-home .hero-actions,
  .wd-home .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wd-home .btn-primary,
  .wd-home .btn-ghost {
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px;
    min-height: 50px;
    font-size: 14px;
  }

  .wd-home .btn-casos {
    display: none;
  }

  .wd-home .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    overflow: visible;
    text-align: center;
  }

  .wd-home .hero-stats > div {
    min-width: 0;
    padding: 14px 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
  }

  .wd-home .hero-stat-num {
    font-size: 20px;
  }

  .wd-home .hero-stat-label {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .wd-home .trust-label {
    display: none;
  }

  .wd-home .trust-chips {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .wd-home .trust-chips::-webkit-scrollbar {
    display: none;
  }

  .wd-home .trust-chips span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .wd-home .home-contact-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 24px 20px;
  }

  .wd-home .home-contact-card h2 {
    font-size: 22px;
  }

  .wd-home .home-contact-card form {
    gap: 10px;
  }

  .wd-home .home-contact-card textarea {
    min-height: 118px;
  }

  .wd-home .home-contact-card button {
    width: auto;
    min-width: 206px;
    margin: 12px auto 0;
  }

  .wd-home .section,
  .wd-home .tech-section {
    padding: 48px 0;
  }

  .wd-home .section h2,
  .wd-home .tech-section h2,
  .wd-home .section-copy h2 {
    font-size: 25px;
  }

  .wd-home .lead,
  .wd-home .section-copy p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .wd-home .services-grid,
  .wd-home .personas,
  .wd-home .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wd-home .service-card {
    flex-direction: row;
    gap: 14px;
    padding: 16px;
  }

  .wd-home .service-card:hover {
    box-shadow: none;
    transform: none;
  }

  .wd-home .service-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .wd-home .logos-section {
    padding: 36px 0;
  }

  .wd-home .logos-viewport {
    width: 100%;
  }

  .wd-home .logos-track {
    animation-duration: 38s;
  }

  .wd-home .logos-group {
    gap: 14px;
    padding-right: 14px;
  }

  .wd-home .logo-tile {
    flex-basis: 166px;
    width: 166px;
    height: 108px;
  }

  .wd-home .logo-tile img {
    max-width: 138px;
    max-height: 78px;
  }

  .wd-home .case-slider {
    margin-top: 30px;
  }

  .wd-home .case-slide {
    height: clamp(500px, 120vw, 700px);
  }

  .wd-home .case-slide-panel {
    width: calc(100% - 48px);
    padding: 20px 22px 22px;
  }

  .wd-home .case-slide-panel h3 {
    font-size: 18px;
  }

  .wd-home .case-slide-panel p {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }

  .wd-home .case-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 48px;
  }

  .wd-home .case-slider-prev {
    left: 6px;
  }

  .wd-home .case-slider-next {
    right: 6px;
  }

  .wd-home .case-slider-dots {
    bottom: 18px;
  }

  .wd-home .persona-card {
    padding: 0;
    overflow: hidden;
  }

  .wd-home .persona-toggle {
    min-height: 58px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    pointer-events: auto;
    cursor: pointer;
  }

  .wd-home .persona-tag {
    margin-bottom: 0;
  }

  .wd-home .persona-chevron {
    display: inline-flex;
    color: var(--home-gray-400);
    transition: transform .2s;
  }

  .wd-home .persona-panel {
    display: none;
    border-top: 1px solid var(--home-gray-200);
    padding: 16px;
  }

  .wd-home .persona-card.open .persona-panel {
    display: block;
  }

  .wd-home .persona-card.open .persona-chevron {
    transform: rotate(180deg);
  }

  .wd-home .why-item {
    border-bottom: 1px solid var(--home-gray-200);
    padding: 16px 0;
  }

  .wd-home .why-item:last-child {
    border-bottom: 0;
  }

  .wd-home .tech-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .wd-home .tech-tabs::-webkit-scrollbar {
    display: none;
  }

  .wd-home .tech-tab {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .wd-home .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .wd-home .tech-item {
    padding: 12px 8px;
  }

  .wd-home .tech-item span {
    font-size: 23px;
  }

  .wd-home .faq-q {
    min-height: 0;
    padding: 16px 0;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .wd-home .faq-a {
    max-width: 100%;
    padding: 0 0 16px;
    font-size: 13px;
  }

  .wd-home .cta-banner {
    border-radius: 16px;
    padding: 32px 20px;
  }

  .wd-home .cta-banner h2 {
    font-size: 23px;
  }

  .wd-home .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 10px 18px calc(10px + var(--home-safe-bottom));
    background: rgba(13, 27, 42, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity .25s, transform .25s, visibility .25s;
  }

  .wd-home .sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wd-home .sticky-cta-primary,
  .wd-home .sticky-cta-tel {
    display: grid;
    place-items: center;
    height: 58px;
    border-radius: 10px;
    color: var(--home-white);
    text-align: center;
  }

  .wd-home .sticky-cta-primary {
    flex: 1 1 auto;
    background: var(--home-teal);
    font-size: 15px;
    font-weight: 800;
  }

  .wd-home .sticky-cta-tel {
    flex: 0 0 58px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.26);
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .wd-home .home-hero {
    padding-top: 34px;
  }

  .wd-home .home-hero h1 {
    font-size: 29px;
  }

  .wd-home .hero-pill {
    width: 100%;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .wd-home .hero-pill span:last-child {
    font-size: 11px;
  }

  .wd-home .hero-stats {
    grid-template-columns: 1fr;
  }

  .wd-home .hero-stat-label br {
    display: none;
  }

  .wd-home .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   DISEÑO WEB + WORDPRESS + APPS - CASOS CON IMAGEN Y OVERLAY
   Compartido por vistas de web, WordPress, apps, aplicaciones web y marketing
===================================================== */

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:40px;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  border:0;
  border-radius:0;
  background:var(--gray-100);
  transition:box-shadow .2s,transform .15s;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card:hover,
body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card:focus-within{
  box-shadow:0 4px 24px rgba(0,0,0,.12);
  transform:translateY(-2px);
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card-link{
  display:block;
  position:relative;
  width:100%;
  height:100%;
  color:#fff;
  text-decoration:none;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card-link:focus-visible{
  outline:3px solid var(--teal);
  outline-offset:3px;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-image{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease,filter .35s ease;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:28px;
  text-align:center;
  background:rgba(34,34,34,.68);
  opacity:0;
  transform:translateY(8px);
  transition:opacity .25s ease,transform .25s ease;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card:hover .case-overlay,
body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card:focus-within .case-overlay{
  opacity:1;
  transform:translateY(0);
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card:hover .case-image,
body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-card:focus-within .case-image{
  transform:scale(1.04);
  filter:saturate(.9);
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-overlay h3{
  margin:0 0 12px;
  color:#fff;
  font-size:25px;
  font-weight:800;
  line-height:1.1;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-row{
  margin-bottom:10px;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-row-label{
  margin-bottom:2px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:0;
  text-transform:none;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-row-text{
  color:rgba(255,255,255,.95);
  font-size:13px;
  line-height:1.25;
}

body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:4px;
  border-bottom:1px solid rgba(255,255,255,.7);
  color:#fff;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
}

@media (hover:none){
  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-overlay{
    opacity:1;
    transform:translateY(0);
    background:rgba(34,34,34,.58);
  }
}

@media (max-width:900px){
  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid{
    grid-template-columns:1fr;
  }

  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-overlay{
    padding:22px;
  }

  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-overlay h3{
    margin-bottom:10px;
    font-size:22px;
  }

  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-row{
    margin-bottom:8px;
  }

  body .wd-responsive-page:is(.wd-page-diseno-paginas-web,.wd-page-diseno-web-wordpress,.wd-page-desarrollo-apps,.wd-page-aplicaciones-web-medida,.wd-page-consultora-marketing-digital) .cases-grid .case-row-text{
    font-size:12px;
    line-height:1.2;
  }
}

/* =====================================================
   BREADCRUMB BAR COMUN
   Barra reutilizable para migas de pan antes del hero
===================================================== */

body .wd-responsive-page .wd-breadcrumb-bar{
  width:100%;
  min-height:38px;
  display:flex;
  align-items:center;
  background:#fff;
  border-top:1px solid rgba(13,27,42,.06);
  border-bottom:1px solid rgba(13,27,42,.06);
  color:#6B7280;
  font-family:var(--font,-apple-system,"Segoe UI",system-ui,sans-serif);
  font-size:11px;
  line-height:1.2;
}

body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:8px;
  list-style:none;
}

body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list li{
  display:flex;
  align-items:center;
  min-width:0;
  color:#6B7280;
  font-size:11px;
  line-height:1.2;
  white-space:nowrap;
}

body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list li+li::before{
  content:"›";
  margin-right:8px;
  color:#9CA3AF;
  font-size:12px;
  font-weight:500;
  line-height:1;
}

body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list a{
  color:#6B7280;
  text-decoration:none;
  transition:color .15s ease;
}

body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list a:hover{
  color:#0D1B2A;
}

body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list [aria-current="page"]{
  color:#1F2937;
  font-weight:700;
}

@media (max-width:767.98px){
  body .wd-responsive-page .wd-breadcrumb-bar{
    min-height:40px;
  }

  body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list{
    padding:0 16px;
    overflow-x:auto;
    scrollbar-width:none;
  }

  body .wd-responsive-page .wd-breadcrumb-bar .wd-breadcrumb-list::-webkit-scrollbar{
    display:none;
  }
}

/* =====================================================
   TRUST BAR COMUN - LOGOS EN MARQUEE
   Compartido por cualquier vista con trust-logos-viewport/track/group
===================================================== */

body .wd-responsive-page .page-wrap .trust-bar:has(.trust-logos-viewport){
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--rxl);
  padding:24px 28px;
  margin-bottom:48px;
  display:block;
  overflow:hidden;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-viewport{
  width:100%;
  overflow:hidden;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-track{
  display:flex;
  align-items:center;
  width:max-content;
  animation:wdTrustLogoMarquee 36s linear infinite;
  will-change:transform;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-viewport:hover .trust-logos-track{
  animation-play-state:paused;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  gap:24px;
  padding-right:24px;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo{
  flex:0 0 168px;
  width:168px;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font);
  font-size:0;
  color:inherit;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo img{
  display:block;
  width:auto;
  height:auto;
  max-width:176px;
  max-height:100px;
  object-fit:contain;
  filter:grayscale(1) saturate(0);
  opacity:.82;
  transition:opacity .2s ease,transform .2s ease;
}

body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo:hover img{
  opacity:1;
  transform:scale(1.03);
}

@keyframes wdTrustLogoMarquee{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}

@media (prefers-reduced-motion:reduce){
  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-viewport{
    overflow-x:auto;
  }

  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-track{
    animation:none;
  }
}

@media (max-width:900px){
  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group{
    gap:18px;
    padding-right:18px;
  }

  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo{
    flex-basis:150px;
    width:150px;
    height:62px;
  }

  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo img{
    max-height:52px;
  }
}

@media (max-width:600px){
  body .wd-responsive-page .page-wrap .trust-bar:has(.trust-logos-viewport){
    padding:18px 12px;
    margin-bottom:36px;
  }

  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group{
    gap:14px;
    padding-right:14px;
  }

  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo{
    flex-basis:130px;
    width:130px;
    height:54px;
  }

  body .wd-responsive-page .page-wrap .trust-bar .trust-logos-group .trust-logo img{
    max-width:124px;
    max-height:90px;
    opacity:.86;
  }
}

/* =====================================================
   CASOS COMUNES - CARDS CON IMAGEN, CUERPO Y METRICAS
   Compartido por grids con case-card + case-body
===================================================== */

body .wd-responsive-page .page-wrap .cases-grid:has(.case-card .case-body){
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body){
  display:block;
  overflow:hidden;
  border:1px solid var(--gray-100);
  border-radius:var(--rxl);
  background:var(--white);
  cursor:pointer;
  transition:box-shadow .2s,transform .15s,border-color .2s;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body):hover,
body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body):focus-within{
  border-color:var(--teal);
  box-shadow:0 14px 36px rgba(0,0,0,.1);
  transform:translateY(-3px);
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-image{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:180px;
  overflow:hidden;
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy3) 100%);
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-image-img,
body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-brand{
  color:#fff;
  font-family:var(--serif);
  font-size:38px;
  font-weight:700;
  letter-spacing:.05em;
  opacity:.95;
  text-shadow:0 2px 12px rgba(0,0,0,.3);
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-tag{
  position:absolute;
  top:14px;
  left:14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--navy);
  padding:4px 10px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-body{
  padding:22px 24px;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-sector{
  margin-bottom:6px;
  color:var(--gray-400);
  font-size:11px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-title{
  margin-bottom:8px;
  color:var(--gray-900);
  font-family:var(--serif);
  font-size:18px;
  font-weight:700;
  line-height:1.3;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-desc{
  margin-bottom:14px;
  color:var(--gray-600);
  font-size:13px;
  line-height:1.6;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-meta{
  display:flex;
  gap:14px;
  border-top:1px solid var(--gray-100);
  padding-top:12px;
  font-size:11px;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-meta-item{
  flex:1;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .cm-num{
  color:var(--teal-dk);
  font-family:var(--serif);
  font-size:18px;
  font-weight:700;
  line-height:1;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .cm-lbl{
  margin-top:3px;
  color:var(--gray-400);
  font-size:10px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-link{
  display:inline-flex;
  align-items:center;
  gap:5px;
  margin-top:14px;
  color:var(--teal-dk);
  font-size:12px;
  font-weight:600;
}

@media (max-width:900px){
  body .wd-responsive-page .page-wrap .cases-grid:has(.case-card .case-body){
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:767.98px){
  body .wd-responsive-page .page-wrap .cases-grid:has(.case-card .case-body){
    grid-template-columns:1fr;
    gap:14px;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body){
    border-radius:var(--rl);
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body):active{
    transform:scale(.99);
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-image{
    height:130px;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-brand{
    font-size:28px;
    letter-spacing:.04em;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-tag{
    top:10px;
    left:10px;
    padding:3px 8px;
    font-size:9px;
    letter-spacing:.05em;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-body{
    padding:16px 18px;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-sector{
    margin-bottom:4px;
    font-size:10px;
    letter-spacing:.05em;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-title{
    margin-bottom:6px;
    font-size:15px;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-desc{
    margin-bottom:12px;
    font-size:12.5px;
    line-height:1.55;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding-top:10px;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .cm-num{
    font-size:15px;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .cm-lbl{
    font-size:9px;
    letter-spacing:.04em;
  }

  body .wd-responsive-page .page-wrap .cases-grid .case-card:has(.case-body) .case-link{
    gap:4px;
    margin-top:12px;
    font-size:11px;
  }
}

/* =====================================================
   CASE SLIDER COMUN
   Compartido por cualquier bloque data-case-slider
===================================================== */

body .wd-responsive-page .page-wrap .case-slider[data-case-slider]{
  position:relative;
  width:100vw;
  margin:42px calc(50% - 50vw) 0;
  overflow:hidden;
  background:var(--navy);
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-viewport{
  overflow:hidden;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-track{
  display:flex;
  transform:translate3d(0,0,0);
  transition:transform .55s ease;
  will-change:transform;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide{
  position:relative;
  flex:0 0 100%;
  min-width:100%;
  height:clamp(600px,49vw,880px);
  overflow:hidden;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(13,27,42,.32),rgba(13,27,42,.05));
  pointer-events:none;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide-panel{
  position:absolute;
  z-index:2;
  top:50%;
  left:50%;
  width:min(54vw,990px);
  transform:translate(-50%,-50%);
  background:rgba(31,36,37,.58);
  color:var(--white);
  padding:28px 32px 30px;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide-panel h3{
  margin:0 0 8px;
  color:var(--white);
  font-family:var(--font);
  font-size:25px;
  font-weight:800;
  line-height:1.2;
  letter-spacing:0;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide-panel p{
  margin:0;
  color:var(--white);
  font-family:var(--font);
  font-size:25px;
  line-height:1.45;
  letter-spacing:.08em;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-arrow{
  position:absolute;
  z-index:3;
  top:50%;
  width:48px;
  height:48px;
  padding:0;
  border:0;
  border-radius:50%;
  background:transparent;
  color:var(--white);
  font-family:var(--font);
  font-size:62px;
  font-weight:200;
  line-height:.75;
  cursor:pointer;
  transform:translateY(-50%);
  opacity:.9;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-arrow:hover{
  opacity:1;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-prev{
  left:26px;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-next{
  right:26px;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-dots{
  position:absolute;
  z-index:3;
  left:0;
  right:0;
  bottom:30px;
  display:flex;
  justify-content:center;
  gap:8px;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-dot{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.34);
  cursor:pointer;
}

body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-dot.active{
  background:var(--white);
}

@media (max-width:767.98px){
  body .wd-responsive-page .page-wrap .case-slider[data-case-slider]{
    margin-top:30px;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide{
    height:clamp(500px,120vw,700px);
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide-panel{
    width:calc(100% - 48px);
    padding:20px 22px 22px;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide-panel h3{
    font-size:18px;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slide-panel p{
    font-size:16px;
    line-height:1.45;
    letter-spacing:.04em;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-arrow{
    width:40px;
    height:40px;
    font-size:48px;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-prev{
    left:6px;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-next{
    right:6px;
  }

  body .wd-responsive-page .page-wrap .case-slider[data-case-slider] .case-slider-dots{
    bottom:18px;
  }
}

/* Bloque de errores de validación de formularios (global) */
.form-errors{background:#fdecec;border:1px solid #f5b5b5;color:#a11;border-radius:8px;padding:14px 16px;margin-bottom:18px;font-size:14px}
.form-errors strong{display:block;margin-bottom:6px}
.form-errors ul{margin:0;padding-left:20px}
.form-errors li{margin-bottom:4px}
