/*
Theme Name: DC Home
Template: generatepress
Version: 1.0.0
*/

/* ==================================================
   DC HOME
================================================== */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

:root {
  --dchome-dark: #070b14;
  --dchome-dark-2: #0b1020;
  --dchome-navy: #20263f;
  --dchome-blue: #2b3455;

  --dchome-red: #b32432;
  --dchome-red-dark: #8f1b27;
  --dchome-red-light: #d84857;
  --dchome-red-soft: rgba(179, 36, 50, .10);

  --dchome-silver: #e3e6ec;
  --dchome-silver-light: #f7f8fa;

  --dchome-white: #ffffff;
  --dchome-text: #1d2433;
  --dchome-muted: #687386;

  --dchome-border: rgba(32, 38, 63, .13);
  --dchome-border-red: rgba(179, 36, 50, .24);
  --dchome-shadow: 0 18px 45px rgba(20, 24, 40, .14);
  --dchome-max: 1240px;

  --dchome-header-desktop: 96px;

  --dchome-mse-top: 44px;
  --dchome-header-mobile: 84px;
  --dchome-mse-bottom: 58px;
}

html {
  scroll-padding-top: var(--dchome-header-desktop);
}

body {
  padding-top: var(--dchome-header-desktop) !important;
  overflow-x: hidden !important;
}

.dchome-header,
.dchome-header *,
.dchome-footer,
.dchome-footer * {
  box-sizing: border-box;
}

.dchome-header a,
.dchome-footer a {
  text-decoration: none !important;
}

.dchome-container,
.dchome-footer__container {
  width: 100%;
  max-width: var(--dchome-max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ==================================================
   HEADER PC
================================================== */

.dchome-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  font-family: Arial, Helvetica, sans-serif;
}

.dchome-header__wrap {
  width: 100%;
  background:
    radial-gradient(circle at 8% 0%, rgba(179, 36, 50, .10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(32, 38, 63, .10);
  box-shadow: 0 8px 28px rgba(20, 24, 40, .10);
}

.dchome-header__inner {
  position: relative;
  min-height: var(--dchome-header-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* ==================================================
   LOGO HEADER
================================================== */

.dchome-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: 235px;
  max-width: 235px;
  min-width: 235px;
  line-height: 0;
  padding: 5px 0;
}

.dchome-logo__img {
  display: block;
  width: 235px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform .25s ease;
}

.dchome-logo:hover .dchome-logo__img {
  transform: translateY(-1px);
}

.dchome-logo__mark,
.dchome-logo__text {
  display: none !important;
}

/* ==================================================
   NAV PC
================================================== */

.dchome-menu-toggle,
.dchome-sub-toggle {
  display: none;
}

.dchome-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.dchome-nav__item {
  position: relative;
}

.dchome-nav__services-row {
  display: flex;
  align-items: center;
}

.dchome-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--dchome-navy);
  font-size: 14px;
  font-weight: 850;
  transition: all .25s ease;
  white-space: nowrap;
}

.dchome-nav__link:hover,
.dchome-nav__link:focus {
  background: var(--dchome-red-soft);
  color: var(--dchome-red);
  box-shadow: inset 0 0 0 1px rgba(179, 36, 50, .18);
}

.dchome-nav__link--services::after {
  content: "▾";
  margin-left: 7px;
  font-size: 11px;
  opacity: .85;
}

.dchome-nav__arrow {
  display: none;
}

/* ==================================================
   MEGA MENÚ PC
================================================== */

.dchome-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(980px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--dchome-border-red);
  box-shadow: var(--dchome-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .22s ease;
}

.dchome-mega--simple {
  grid-template-columns: 1.05fr 1fr;
  width: min(620px, calc(100vw - 36px));
}

.dchome-mega--zones {
  grid-template-columns: 1.05fr 1fr;
  width: min(620px, calc(100vw - 36px));
}

.dchome-nav__item:hover .dchome-mega,
.dchome-nav__item:focus-within .dchome-mega,
.dchome-mega:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 1121px) {
  .dchome-nav__item::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 18px;
    background: transparent;
    pointer-events: auto;
  }
}

.dchome-mega__featured {
  min-height: 100%;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(32, 38, 63, .90), rgba(179, 36, 50, .82)),
    url('/wp-content/uploads/2026/06/dc-home-casa-expandible-hero.webp') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.dchome-mega__featured-content span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.dchome-mega__featured-content strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.dchome-mega__col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.dchome-mega__col h3 {
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(32, 38, 63, .12);
  color: var(--dchome-navy);
  font-size: 15px;
  font-weight: 900;
}

.dchome-mega__col h3 a {
  color: var(--dchome-navy);
}

.dchome-mega__col > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border-radius: 14px;
  color: #344056;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  transition: all .2s ease;
}

.dchome-mega__col > a::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 999px;
  background: var(--dchome-red);
  opacity: .9;
  flex: 0 0 auto;
}

.dchome-mega__col > a:hover,
.dchome-mega__col > a:focus {
  background: linear-gradient(135deg, var(--dchome-red), var(--dchome-red-light));
  color: #ffffff;
  transform: translateX(3px);
}

/* ==================================================
   BOTONES HEADER
================================================== */

.dchome-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dchome-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dchome-red) 0%, var(--dchome-red-light) 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(179, 36, 50, .24);
  border: 1px solid rgba(179, 36, 50, .20);
  transition: all .25s ease;
}

.dchome-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dchome-red-dark), var(--dchome-red));
  color: #ffffff !important;
}

.dchome-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  background: var(--dchome-red);
  border: 1px solid rgba(179, 36, 50, .20);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.dchome-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: all .25s ease;
}

/* ==================================================
   MÓVIL HEADER + HAMBURGUESA
================================================== */

@media (max-width: 1120px) {
  html {
    scroll-padding-top: calc(var(--dchome-mse-top) + var(--dchome-header-mobile)) !important;
  }

  body {
    padding-top: calc(var(--dchome-mse-top) + var(--dchome-header-mobile)) !important;
    padding-bottom: calc(var(--dchome-mse-bottom) + 16px) !important;
  }

  #mystickyelements-wrap,
  .mystickyelements-fixed,
  .mystickyelements-position-top,
  .mystickyelements-mobile-position-top,
  .mystickyelements-position-bottom,
  .mystickyelements-mobile-position-bottom {
    z-index: 100000 !important;
  }

  .mystickyelements-position-top,
  .mystickyelements-mobile-position-top {
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mystickyelements-position-bottom,
  .mystickyelements-mobile-position-bottom {
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mystickyelements-fixed,
  .mystickyelements-fixed ul,
  .mystickyelements-fixed li,
  .mystickyelements-fixed a,
  .mystickyelements-fixed .mystickyelements-social-icon {
    margin: 0 !important;
    line-height: 1 !important;
  }

  .dchome-header {
    position: fixed !important;
    top: var(--dchome-mse-top) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99990 !important;
    overflow: visible !important;
  }

  .dchome-header__wrap,
  .dchome-header__inner {
    overflow: visible !important;
  }

  .dchome-header__wrap {
    margin: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
    background:
      linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%) !important;
    border-bottom: 1px solid rgba(32, 38, 63, .10) !important;
    box-shadow: 0 10px 28px rgba(20, 24, 40, .12) !important;
  }

  .dchome-header__inner {
    position: relative !important;
    min-height: var(--dchome-header-mobile) !important;
    height: var(--dchome-header-mobile) !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 12px !important;
  }

  .dchome-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .dchome-logo {
    width: 205px !important;
    max-width: 205px !important;
    min-width: 205px !important;
    padding: 0 !important;
  }

  .dchome-logo__img {
    width: 205px !important;
  }

  .dchome-btn--desktop {
    display: none !important;
  }

  .dchome-menu-btn {
    display: flex !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, var(--dchome-red), var(--dchome-red-light)) !important;
    border: 1px solid rgba(179, 36, 50, .22) !important;
    gap: 6px !important;
    box-shadow: 0 10px 24px rgba(179, 36, 50, .22) !important;
  }

  .dchome-menu-btn span {
    width: 25px !important;
    height: 2px !important;
    background: #ffffff !important;
  }

  .dchome-menu-toggle:checked ~ .dchome-actions .dchome-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  .dchome-menu-toggle:checked ~ .dchome-actions .dchome-menu-btn span:nth-child(2) {
    opacity: 0 !important;
  }

  .dchome-menu-toggle:checked ~ .dchome-actions .dchome-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }

  .dchome-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    max-height: calc(100vh - var(--dchome-mse-top) - var(--dchome-header-mobile) - var(--dchome-mse-bottom)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    scroll-behavior: auto !important;
    margin: 0 !important;
    padding: 14px 14px 22px !important;
    border-radius: 0 0 26px 26px !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(32, 38, 63, .08) !important;
    border-bottom: 1px solid rgba(179, 36, 50, .22) !important;
    box-shadow: 0 22px 60px rgba(20, 24, 40, .22) !important;
    z-index: 99999 !important;
  }

  .dchome-menu-toggle:checked ~ .dchome-nav {
    display: flex !important;
  }

  .dchome-nav__item {
    width: 100% !important;
    display: block !important;
    position: relative !important;
    order: initial !important;
  }

  .dchome-nav__services-row {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 56px !important;
    gap: 10px !important;
    align-items: stretch !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .dchome-nav__link {
    width: 100% !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 18px !important;
    border-radius: 18px !important;
    background: #f8f9fb !important;
    border: 1px solid rgba(32, 38, 63, .10) !important;
    color: var(--dchome-navy) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
  }

  .dchome-nav__link:hover,
  .dchome-nav__link:focus {
    background: var(--dchome-red-soft) !important;
    color: var(--dchome-red) !important;
  }

  .dchome-nav__link--services::after {
    display: none !important;
  }

  .dchome-nav__arrow {
    width: 56px !important;
    min-width: 56px !important;
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, var(--dchome-red), var(--dchome-red-light)) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    transition: transform .2s ease !important;
  }

  .dchome-sub-toggle:checked ~ .dchome-nav__services-row .dchome-nav__arrow {
    transform: rotate(180deg) !important;
  }

  .dchome-mega,
  .dchome-mega--simple,
  .dchome-mega--zones {
    position: static !important;
    inset: auto !important;
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 10px 0 0 !important;
    padding: 14px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(179, 36, 50, .18) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .dchome-sub-toggle:checked ~ .dchome-mega {
    display: grid !important;
  }

  .dchome-mega__featured {
    display: none !important;
  }

  .dchome-mega__col {
    width: 100% !important;
    display: grid !important;
    gap: 8px !important;
  }

  .dchome-mega__col h3 {
    margin: 0 0 6px !important;
    padding: 0 0 10px !important;
    color: var(--dchome-navy) !important;
    border-bottom: 1px solid rgba(32, 38, 63, .12) !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
  }

  .dchome-mega__col h3 a {
    color: var(--dchome-navy) !important;
  }

  .dchome-mega__col > a {
    width: 100% !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 13px !important;
    border-radius: 15px !important;
    background: #f8f9fb !important;
    border: 1px solid rgba(32, 38, 63, .08) !important;
    color: #344056 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
    transform: none !important;
  }

  .dchome-mega__col > a::before {
    content: "" !important;
    width: 7px !important;
    height: 7px !important;
    min-width: 7px !important;
    border-radius: 999px !important;
    background: var(--dchome-red) !important;
    opacity: .9 !important;
    flex: 0 0 auto !important;
  }

  .dchome-mega__col > a:hover,
  .dchome-mega__col > a:focus {
    background: linear-gradient(135deg, var(--dchome-red), var(--dchome-red-light)) !important;
    color: #ffffff !important;
  }
}

/* ==================================================
   MÓVIL PEQUEÑO
================================================== */

@media (max-width: 640px) {
  :root {
    --dchome-mse-top: 44px;
    --dchome-header-mobile: 82px;
    --dchome-mse-bottom: 58px;
  }

  .dchome-container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .dchome-header__inner {
    min-height: var(--dchome-header-mobile) !important;
    height: var(--dchome-header-mobile) !important;
  }

  .dchome-logo {
    width: 198px !important;
    max-width: 198px !important;
    min-width: 198px !important;
  }

  .dchome-logo__img {
    width: 198px !important;
  }

  .dchome-menu-btn {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }
}

@media (max-width: 390px) {
  .dchome-logo {
    width: 178px !important;
    max-width: 178px !important;
    min-width: 178px !important;
  }

  .dchome-logo__img {
    width: 178px !important;
  }

  .dchome-menu-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }

  .dchome-nav__link {
    min-height: 54px !important;
    font-size: 15px !important;
  }

  .dchome-nav__arrow {
    width: 54px !important;
    min-width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
  }

  .dchome-nav__services-row {
    grid-template-columns: 1fr 54px !important;
  }
}

/* ==================================================
   FOOTER
================================================== */

.dchome-footer,
.dchome-footer * {
  box-sizing: border-box;
}

.dchome-footer a {
  text-decoration: none !important;
}

.dchome-footer {
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dchome-navy);
  background:
    radial-gradient(circle at 12% 0%, rgba(179, 36, 50, .10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  border-top: 1px solid rgba(32, 38, 63, .08);
}

.dchome-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 38, 63, .025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 38, 63, .025) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .45;
  pointer-events: none;
}

.dchome-footer__desktop {
  display: block;
  position: relative;
  z-index: 2;
}

.dchome-footer__mobile {
  display: none;
}

/* ==================================================
   FOOTER PC
================================================== */

.dchome-footer__top,
.dchome-footer__bottom {
  position: relative;
  z-index: 2;
}

.dchome-footer__container {
  width: 100%;
  max-width: var(--dchome-max);
  margin: 0 auto;
  padding: 0 22px;
}

.dchome-footer__top {
  padding: 78px 0 46px;
}

.dchome-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .78fr .72fr .85fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.dchome-footer__brand {
  max-width: 360px;
}

.dchome-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 280px;
  max-width: 100%;
  margin-bottom: 22px;
  line-height: 0;
}

.dchome-footer__logo-img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.dchome-footer__logo-mark,
.dchome-footer__logo-text {
  display: none !important;
}

.dchome-footer__brand p {
  margin: 0;
  color: var(--dchome-muted);
  font-size: 15px;
  line-height: 1.75;
}

.dchome-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.dchome-footer__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--dchome-red-soft);
  border: 1px solid rgba(179, 36, 50, .16);
  color: var(--dchome-red);
  font-size: 12px;
  font-weight: 800;
}

.dchome-footer__col h3,
.dchome-footer__contact h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 13px;
  color: var(--dchome-red);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.dchome-footer__col h3::after,
.dchome-footer__contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dchome-red), var(--dchome-red-light));
}

.dchome-footer__links {
  display: grid;
  gap: 11px;
}

.dchome-footer__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dchome-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  transition: all .22s ease;
}

.dchome-footer__links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dchome-red);
  opacity: .85;
  flex: 0 0 auto;
}

.dchome-footer__links a:hover,
.dchome-footer__links a:focus {
  color: var(--dchome-red);
  transform: translateX(4px);
}

.dchome-footer__contact-list {
  display: grid;
  gap: 12px;
}

.dchome-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(32, 38, 63, .10);
  box-shadow: 0 10px 26px rgba(20, 24, 40, .06);
  transition: all .22s ease;
}

.dchome-footer__contact-item:hover {
  background: #ffffff;
  border-color: rgba(179, 36, 50, .24);
  transform: translateY(-2px);
}

.dchome-footer__contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--dchome-red), var(--dchome-red-light));
  color: #ffffff;
  font-size: 15px;
}

.dchome-footer__contact-item strong {
  display: block;
  color: var(--dchome-navy);
  font-size: 14px;
  margin-bottom: 4px;
}

.dchome-footer__contact-item small {
  display: block;
  color: var(--dchome-muted);
  font-size: 13px;
  line-height: 1.35;
}

.dchome-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dchome-red), var(--dchome-red-light));
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(179, 36, 50, .22);
  border: 1px solid rgba(179, 36, 50, .18);
  transition: all .25s ease;
}

.dchome-footer__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dchome-red-dark), var(--dchome-red));
}

.dchome-footer__bottom {
  border-top: 1px solid rgba(32, 38, 63, .08);
  background: #ffffff;
}

.dchome-footer__bottom-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.dchome-footer__bottom p {
  margin: 0;
  color: var(--dchome-muted);
  font-size: 14px;
  line-height: 1.5;
}

.dchome-footer__legal {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.dchome-footer__legal a {
  position: relative;
  color: var(--dchome-muted);
  font-size: 14px;
  font-weight: 700;
  padding: 0 12px;
  transition: color .2s ease;
}

.dchome-footer__legal a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: rgba(32, 38, 63, .18);
}

.dchome-footer__legal a:hover,
.dchome-footer__legal a:focus {
  color: var(--dchome-red);
}

/* ==================================================
   FOOTER TABLET
================================================== */

@media (max-width: 1120px) and (min-width: 768px) {
  .dchome-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .dchome-footer__brand,
  .dchome-footer__contact {
    grid-column: span 3;
    max-width: none;
  }

  .dchome-footer__contact-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .dchome-footer__btn {
    max-width: 320px;
  }
}

/* ==================================================
   FOOTER MÓVIL COMPACTO
================================================== */

@media (max-width: 767px) {
  .dchome-footer__desktop {
    display: none !important;
  }

  .dchome-footer__mobile {
    display: block !important;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 14px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .dchome-footer-mobile__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 315px;
    margin: 0 auto 14px;
    line-height: 1.35;
  }

  .dchome-footer-mobile__legal a,
  .dchome-footer-mobile__legal span {
    color: var(--dchome-muted);
    font-size: 12px;
    font-weight: 700;
  }

  .dchome-footer-mobile__legal a:hover,
  .dchome-footer-mobile__legal a:focus {
    color: var(--dchome-red);
  }

  .dchome-footer-mobile__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  .dchome-footer-mobile__logo img {
    display: block;
    width: 165px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .dchome-footer-mobile__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .dchome-footer-mobile__trust span {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--dchome-red-soft);
    color: var(--dchome-red);
    font-size: 10.5px;
    font-weight: 850;
    white-space: nowrap;
  }

  .dchome-footer-mobile__trust span::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 6px;
    border-radius: 999px;
    background: var(--dchome-red);
  }

  .dchome-footer-mobile__copy {
    max-width: 300px;
    margin: 0 auto;
    color: var(--dchome-muted);
    font-size: 12.5px;
    line-height: 1.45;
    font-weight: 600;
  }
}