/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: rgba(0, 0, 0, 0.75);
  --heading-color: #111111;
  --accent-color: #1f56d0;
  --surface-color: #f4f4f5;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(0, 0, 0, 0.75);
  --nav-hover-color: #1f56d0;
  --nav-mobile-background-color: #f4f4f5;
  --nav-dropdown-background-color: #f4f4f5;
  --nav-dropdown-color: rgba(0, 0, 0, 0.75);
  --nav-dropdown-hover-color: #1f56d0;
}

/* Color Presets */

.light-background {
  --background-color: #f0f0f1;
  --surface-color: #e2e2e5;
}

.dark-background {
  --background-color: #e8e8e8;
  --default-color: #111111;
  --heading-color: #111111;
  --surface-color: #d4d4d4;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Evita que iOS/Safari reescalen tipografía como “zoom escritorio” (layout raro en móvil) */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

/* Escritorio (≥1200px): una sola fila — redes junto a “Más”, sin apilar sobre Ingresar */
@media (min-width: 1200px) {
  .header .header-social-links {
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    align-items: center;
    gap: 0.75rem;
    padding-right: 15px;
  }

  .header .header-social-icons,
  .header .header-social-actions {
    flex-wrap: nowrap !important;
    flex-shrink: 0;
  }

  .header .header-social-icons a {
    display: inline-block;
    width: auto;
    height: auto;
    padding-left: 6px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
  }

  .header .header-social-actions .btn-getstarted {
    font-size: inherit;
    font-weight: 400;
    letter-spacing: normal;
    padding: 0;
    border-radius: 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
  }

  .header .header-social-actions a.btn-getstarted:hover {
    color: var(--accent-color) !important;
    box-shadow: none !important;
  }

  .header .header-social-actions a.btn-getstarted[href*="register"] {
    background: none !important;
    color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
    border: none !important;
    box-shadow: none !important;
  }

  .header .header-social-actions a.btn-getstarted[href*="register"]:hover {
    color: var(--accent-color) !important;
    background: none !important;
  }

  .header .header-social-actions button.btn-getstarted {
    padding: 0;
    border: none;
    background: transparent !important;
    color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
  }
}

/* Buscador en header (landing + global): sin esto en landing el search queda order 0 y el menú termina abajo */
.header-global-search {
  flex: 1 1 520px;
  max-width: 560px;
  margin: 0 1rem 0 1.25rem;
}

@media (max-width: 1199.98px) {
  /*
   * Una columna: fila 1 = solo logo (evita que redes y logo compitan en la misma línea).
   * Fila 2 = redes + ingresar + menú. Fila 3 = buscador.
   */
  #header {
    padding: 0.65rem 0 0.85rem;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
  }

  #header .container-fluid.container-xl {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    row-gap: 0;
    padding-left: max(0.9rem, env(safe-area-inset-left));
    padding-right: max(0.9rem, env(safe-area-inset-right));
  }

  .header .logo {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-inline-end: 0 !important;
    justify-self: start;
    align-items: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 0.65rem;
  }

  .header .logo img {
    max-height: 34px;
  }

  .header .header-social-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    padding: 0.55rem 0.7rem;
    padding-right: 0.55rem;
    margin-top: 0.15rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .header .header-social-icons {
    gap: 0.45rem !important;
  }

  .header .header-social-icons a {
    padding-left: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    color: #64748b !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 1.05rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  .header .header-social-icons a:hover {
    color: var(--accent-color) !important;
    border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
    box-shadow: 0 2px 8px rgba(31, 86, 208, 0.12);
    transform: translateY(-1px);
  }

  .header .header-social-actions {
    gap: 0.35rem 0.5rem !important;
  }

  .header .header-social-actions .btn-getstarted {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    text-decoration: none !important;
    color: #334155 !important;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.65);
    transition:
      background 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .header .header-social-actions a.btn-getstarted:hover {
    background: #fff;
    color: var(--accent-color) !important;
    border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
    box-shadow: 0 2px 8px rgba(31, 86, 208, 0.1);
  }

  .header .header-social-actions a.btn-getstarted[href*="register"] {
    color: #fff !important;
    background: var(--accent-color);
    border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    box-shadow: 0 2px 8px rgba(31, 86, 208, 0.25);
  }

  .header .header-social-actions a.btn-getstarted[href*="register"]:hover {
    background: color-mix(in srgb, var(--accent-color), black 8%);
    color: #fff !important;
    border-color: transparent;
  }

  .header .header-social-actions button.btn-getstarted {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    color: #64748b !important;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.65);
  }

  .header .header-social-actions .mobile-nav-toggle {
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-left: 0.15rem;
    border-radius: 10px;
    font-size: 1.35rem;
    line-height: 1;
    color: #1e293b !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    cursor: pointer;
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  .header .header-social-actions .mobile-nav-toggle:hover {
    color: var(--accent-color) !important;
    border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
    box-shadow: 0 2px 8px rgba(31, 86, 208, 0.12);
  }

  .header .header-global-search {
    grid-column: 1 / -1;
    grid-row: 3;
    flex: none;
    max-width: 100%;
    width: 100%;
    margin: 0.85rem 0 0;
  }

  .header .navmenu {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
    min-height: 0;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff !important;
    position: fixed;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 10000;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }

  /* Anula el color oscuro del header (.header .header-social-actions .mobile-nav-toggle) */
  .mobile-nav-active .header .header-social-actions .mobile-nav-toggle {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
      0 2px 10px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: 0;
    border-radius: 12px;
  }

  .mobile-nav-active .header .header-social-actions .mobile-nav-toggle:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.24) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #0d1b2e;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Onda superior */
.footer__wave {
  display: block;
  line-height: 0;
  margin-bottom: -2px;
}

.footer__wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* Cuerpo */
.footer__body {
  padding: 3.5rem 0 3rem;
}

/* — Columna marca — */
.footer__brand {
  padding-right: 1.5rem;
}

.footer__logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.2rem;
  display: block;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Redes sociales */
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.footer__social-link:hover {
  border-color: transparent;
  transform: translateY(-3px);
}

.footer__social-link--ig:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #ffffff;
}
.footer__social-link--wa:hover {
  background: #25d366;
  color: #ffffff;
}
.footer__social-link--mail:hover {
  background: var(--accent-color);
  color: #ffffff;
}

/* Badges de confianza */
.footer__trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__trust span i {
  color: #86efac;
  font-size: 0.9rem;
}

/* — Headings de columna — */
.footer__heading {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-color);
}

/* — Links de navegación — */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links li a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s ease;
}

.footer__links li a i {
  font-size: 0.75rem;
  color: var(--accent-color);
  opacity: 0.7;
  transition: opacity 0.22s ease;
}

.footer__links li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer__links li a:hover i {
  opacity: 1;
}

/* — Lista de contacto — */
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer__contact-list li i {
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-list li a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-list li a:hover {
  color: #fff;
}

/* — CTAs de unirse — */
.footer__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
  color: rgba(255, 255, 255, 0.8);
}

.footer__cta:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateX(4px);
}

.footer__cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer__cta--comercio .footer__cta-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: #93c5fd;
}
.footer__cta--repartidor .footer__cta-icon {
  background: rgba(22, 163, 74, 0.25);
  color: #86efac;
}
.footer__cta--explorar .footer__cta-icon {
  background: rgba(217, 119, 6, 0.25);
  color: #fcd34d;
}

.footer__cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer__cta-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.footer__cta-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

.footer__cta-arrow {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.22s ease;
  flex-shrink: 0;
}

.footer__cta:hover .footer__cta-arrow {
  color: rgba(255, 255, 255, 0.7);
}

/* — Barra inferior — */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer__copyright {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright strong {
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom-badges {
  display: flex;
  gap: 1rem;
}

.footer__bottom-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-badges span i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.footer__credits {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

.footer__credits strong {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991px) {
  .footer__brand {
    padding-right: 0;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__credits {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer__body {
    padding: 2.5rem 0 2rem;
  }

  .footer__social-link {
    width: 36px;
    height: 36px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/* Tablet landscape: reducir padding de sección */
@media (max-width: 1199px) and (min-width: 768px) {
  section,
  .section {
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Tablet landscape & medium screens (768px – 1199px) */
@media (max-width: 1199px) and (min-width: 576px) {
  .section-title span {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 28px 80px 80px;
  overflow: hidden;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
    color-mix(in srgb, var(--heading-color), transparent 97%) 100%
  );
  z-index: -2;
}

.hero .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/abstract-bg-3.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 20%,
    color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
    transparent 50%
  );
  z-index: -1;
}

.hero .hero-content {
  margin-bottom: 4rem;
}

.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 400px) {
  .hero .hero-content h1 {
    font-size: 1.5rem;
  }
}

.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 0.97rem;
    margin-bottom: 1.5rem;
    line-height: 1.55;
  }
}

@media (max-width: 400px) {
  .hero .hero-content p {
    font-size: 0.9rem;
  }
}

.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-btns .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}

.hero .hero-content .hero-btns .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-btns .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.hero .hero-content .hero-btns .btn-outline i {
  font-size: 1.2rem;
}

.hero .hero-content .hero-btns .btn-outline:hover {
  transform: translateY(-2px);
}

.hero .hero-image-container {
  margin-bottom: 4rem;
  position: relative;
}

.hero .hero-image-container .hero-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-image-container .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  transition: transform 0.6s ease;
}

.hero .hero-image-container .hero-image img:hover {
  transform: scale(1.05);
}

.hero .hero-image-container .hero-image .image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #fff 30%)
  );
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.hero .hero-image-container .hero-image .image-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--contrast-color);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .hero .hero-image-container .hero-image .image-decoration {
    width: 60px;
    height: 60px;
    top: -15px;
    right: -15px;
  }

  .hero .hero-image-container .hero-image .image-decoration::before {
    width: 30px;
    height: 30px;
  }

  .hero .hero-content .hero-btns .btn-primary {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  .hero.dark-background .hero-content .hero-btns .btn-outline {
    padding: 10px 30px;
    font-size: 0.85rem;
    justify-content: center;
  }
}

.hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero .hero-stats .stat-item {
  padding: 2rem 1rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-stats .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #fff 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero .hero-stats .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero .hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero .hero-stats .stat-item h3 {
    font-size: 2rem;
  }
}

.hero .hero-stats .stat-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/* Tablet landscape: iPad Pro (1024px wide, 768px tall) */
@media (max-width: 1199px) and (min-width: 993px) {
  .hero {
    padding: 28px 0 50px;
    min-height: auto;
  }

  .hero .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero .hero-content {
    margin-bottom: 2.5rem;
  }

  .hero .hero-image-container {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 28px 0 60px;
    min-height: auto;
  }

  .hero .hero-content {
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    margin-bottom: 1.5rem;
  }

  .hero .hero-content p {
    margin-bottom: 2rem;
  }

  .hero .hero-image-container {
    margin-bottom: 3rem;
  }
}

/* Orientación landscape — tablets y teléfonos girados (hasta ~900px alto) */
@media (orientation: landscape) and (max-height: 900px) {
  .hero {
    min-height: 100dvh;
    align-items: flex-start;
    padding: 6px 0 16px;
  }

  .hero .hero-content {
    margin-bottom: 0.6rem;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
    line-height: 1.1;
  }

  .hero .hero-content p {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }

  .hero .hero-content .hero-btns {
    gap: 0.5rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero .hero-content .hero-btns .btn {
    padding: 9px 20px;
    font-size: 0.70rem;
  }

  .hero .mc-hero-trust {
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero .mc-trust-item {
    font-size: 0.75rem;
  }

  /* Ocultar stats para que el contenído principal sea visible sin scroll */
  .hero .hero-stats {
    display: none;
  }

  .hero .hero-image-container {
    display: none;
  }
}

/* Teléfonos landscape pequeños (≤ 500px alto) */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding: 4px 0 10px;
  }

  .hero .hero-content h1 {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
  }

  .hero .hero-content p {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero .hero-content .hero-btns {
    gap: 0.4rem;
  }

  .hero .hero-content .hero-btns .btn {
    padding: 7px 16px;
    font-size: 0.8rem;
  }

  .hero .mc-hero-trust {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 20px 0 40px;
  }

  .hero .hero-content {
    margin-bottom: 2rem;
  }

  .hero .hero-image-container {
    margin-bottom: 2rem;
  }

  .hero .hero-stats {
    gap: 1rem;
  }

  .hero .hero-stats .stat-item {
    padding: 1.2rem 0.8rem;
  }

  .hero .hero-stats .stat-item h3 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-wrapper {
  position: relative;
  padding-bottom: 30px; /* espacio para experience-box absolute bottom:-30px */
}

.about .image-wrapper .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about .image-wrapper .image-box img {
  transition: 0.5s transform;
}

.about .image-wrapper .image-box:hover img {
  transform: scale(1.05);
}

.about .image-wrapper .experience-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .image-wrapper .experience-box .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.about .image-wrapper .experience-box .text {
  font-size: 0.9rem;
  margin-top: 5px;
  line-height: 1.2;
}

.about .content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about .content {
    padding-left: 0;
    margin-top: 10px;
  }
}

.about .content .section-header {
  margin-bottom: 2rem;
}

.about .content .section-header .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about .content .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .about .content .section-header h2 {
    font-size: 2rem;
  }
}

.about .content .highlight-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about .content .features-list {
  margin-bottom: 2.5rem;
}

.about .content .features-list .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about .content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.about .content .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}

.about .content .features-list .feature-item .icon-box:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.about .content .features-list .feature-item .text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .content .features-list .feature-item .text p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about .content .cta-buttons .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  display: grid;
  place-items: center;
}

.about .content .cta-buttons .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

.about .content .cta-buttons .btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.3s;
}

.about .content .cta-buttons .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-container {
  margin-bottom: 60px;
}

.services .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .services-container .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services .cta-wrapper .cta-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 15%),
    color-mix(in srgb, var(--accent-color), transparent 5%)
  );
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .services-container .service-item {
    flex-direction: column;
  }

  .services .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services .cta-wrapper .cta-box {
    padding: 30px 20px;
  }

  .about .image-wrapper .experience-box .years {
    font-size: 0.8rem;
  }

  .about .image-wrapper .experience-box .text {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Repartidores Section
--------------------------------------------------------------*/

/* — Banner de impacto — */
.repartidores .rep-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    #0d1b2e 0%,
    color-mix(in srgb, var(--accent-color), #0d1b2e 55%) 100%
  );
  border-radius: 24px;
  padding: 3rem 3.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.repartidores .rep-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 75% 50%,
    color-mix(in srgb, var(--accent-color), transparent 65%) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.repartidores .rep-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.repartidores .rep-banner__tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.repartidores .rep-banner__tags span i {
  color: #86efac;
}

.repartidores .rep-banner__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.repartidores .rep-banner__title span {
  color: #93c5fd;
}

.repartidores .rep-banner__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.repartidores .rep-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.repartidores .rep-banner__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.8rem;
  background: #fff;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.repartidores .rep-banner__btn-primary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.repartidores .rep-banner__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.repartidores .rep-banner__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Grid de estadísticas del banner */
.repartidores .rep-banner__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.repartidores .rep-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.repartidores .rep-stat-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.repartidores .rep-stat-card__icon {
  font-size: 1.8rem;
  color: #93c5fd;
  flex-shrink: 0;
}

.repartidores .rep-stat-card__num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.repartidores .rep-stat-card__lbl {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
  line-height: 1.3;
}

/* — Timeline de 4 pasos — */
.repartidores .rep-steps {
  position: relative;
  margin-bottom: 3rem;
}

.repartidores .rep-steps__track {
  position: absolute;
  top: 52px;
  left: calc(12.5% + 2.5rem);
  right: calc(12.5% + 2.5rem);
  height: 2px;
  background: linear-gradient(
    to right,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 60%)
  );
  z-index: 0;
}

.repartidores .rep-step {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.repartidores .rep-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px
    color-mix(in srgb, var(--accent-color), transparent 82%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

.repartidores .rep-step__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.repartidores .rep-step__num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  line-height: 1.5;
}

.repartidores .rep-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 20px
    color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: transform 0.3s ease;
}

.repartidores .rep-step:hover .rep-step__icon {
  transform: scale(1.1) rotate(-5deg);
}

.repartidores .rep-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.6rem;
}

.repartidores .rep-step__desc {
  font-size: 0.87rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

/* — Franja de beneficios — */
.repartidores .rep-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--surface-color);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.repartidores .rep-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
  padding: 0.5rem 1.2rem;
}

.repartidores .rep-benefit > i {
  font-size: 1.6rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.repartidores .rep-benefit strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading-color);
}

.repartidores .rep-benefit span {
  display: block;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 1px;
}

.repartidores .rep-benefits__sep {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  flex-shrink: 0;
}

/* — Empresas oficiales de reparto — */
.repartidores .rep-companies {
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.repartidores .rep-companies__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.repartidores .rep-companies__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.repartidores .rep-companies__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.repartidores .rep-companies__desc {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.repartidores .rep-company-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.repartidores .rep-company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.repartidores .rep-company-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repartidores .rep-company-card__icon i {
  font-size: 1.6rem;
  color: #fff;
}

.repartidores .rep-company-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.repartidores .rep-company-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s;
}

.repartidores .rep-company-card__phone:hover {
  color: color-mix(in srgb, var(--accent-color), black 25%);
}

.repartidores .rep-company-card__phone i {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .repartidores .rep-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }

  .repartidores .rep-steps__track {
    display: none;
  }

  .repartidores .rep-banner__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .repartidores .rep-banner {
    padding: 2rem 1.5rem;
  }

  .repartidores .rep-banner__title {
    font-size: 1.55rem;
  }

  .repartidores .rep-banner__stats {
    grid-template-columns: 1fr 1fr;
  }

  .repartidores .rep-benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.5rem;
  }

  .repartidores .rep-benefits__sep {
    width: 100%;
    height: 1px;
  }

  .repartidores .rep-benefit {
    padding: 0.3rem 0;
  }

  .repartidores .rep-companies__title {
    font-size: 1.4rem;
  }

  .repartidores .rep-companies__desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .repartidores .rep-banner {
    padding: 1.6rem 1.2rem;
  }

  .repartidores .rep-banner__title {
    font-size: 1.3rem;
  }

  .repartidores .rep-banner__desc {
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
  }

  /* Tarjetas de stats: columna única en pantallas muy pequeñas */
  .repartidores .rep-banner__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .repartidores .rep-stat-card {
    padding: 0.9rem 0.8rem;
    gap: 0.6rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .repartidores .rep-stat-card__icon {
    font-size: 1.3rem;
  }

  .repartidores .rep-stat-card__num {
    font-size: 1.45rem;
  }

  .repartidores .rep-stat-card__lbl {
    font-size: 0.7rem;
  }

  /* Botones de acción: apilados */
  .repartidores .rep-banner__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .repartidores .rep-banner__btn-primary,
  .repartidores .rep-banner__btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.testimonials .testimonial-card:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-content {
  padding: 40px 30px 30px;
  position: relative;
  flex-grow: 1;
}

.testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .testimonial-content .quote-icon {
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 42px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: 0;
  opacity: 0.8;
}

.testimonials .testimonial-profile {
  padding: 20px 30px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-top: 1px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
  margin-bottom: 15px;
}

.testimonials .rating i {
  color: #ffc107;
  margin-right: 3px;
  font-size: 14px;
}

.testimonials .profile-info {
  display: flex;
  align-items: center;
}

.testimonials .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--background-color);
  margin-right: 15px;
}

.testimonials .profile-info div {
  flex: 1;
}

.testimonials .profile-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .profile-info h4 {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .testimonials .testimonial-content {
    padding: 30px 20px 20px;
  }

  .testimonials .testimonial-content p {
    font-size: 15px;
  }

  .testimonials .testimonial-content .quote-icon {
    font-size: 36px;
    left: 20px;
  }

  .testimonials .testimonial-profile {
    padding: 15px 20px;
  }

  .testimonials .profile-info img {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: #004fff1c;
  transition: all 0.4s ease-out;
  overflow: hidden;
  border-radius: 1rem;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.portfolio .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 992px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
}

.team .team-member:hover .member-image:before {
  opacity: 1;
}

.team .team-member:hover .member-image img {
  transform: scale(1.1);
}

.team .team-member:hover .social-overlay {
  transform: translateY(0);
  opacity: 1;
}

.team .team-member:hover .member-info h4 {
  color: var(--accent-color);
}

.team .member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 50%) 100%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

.team .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

.team .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.team .social-icons a:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: scale(1.1);
}

.team .member-info {
  padding: 25px 20px 30px;
  text-align: center;
  position: relative;
}

.team .member-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 60%) 100%
  );
  border-radius: 2px;
}

.team .member-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
  transition: 0.3s;
}

.team .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team .member-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .team .team-member {
    margin-bottom: 30px;
  }

  .team .team-member .member-image {
    height: 250px;
  }

  .team .team-member .member-info {
    padding: 20px 15px 25px;
  }

  .team .team-member .member-info h4 {
    font-size: 20px;
  }

  .team .team-member .member-info p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
}

.pricing .pricing-card.featured {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.featured .pricing-header h3 {
  color: var(--accent-color);
}

.pricing .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.pricing .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.pricing .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  font-weight: 400;
  margin-left: -4px;
  color: var(--default-color);
  opacity: 0.7;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pricing .pricing-card .features-list li i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.pricing .pricing-card .features-list li.disabled {
  opacity: 0.5;
}

.pricing .pricing-card .features-list li.disabled i {
  color: var(--default-color);
}

.pricing .pricing-card .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.pricing .pricing-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/* ── FAQ Sidebar ──────────────────────────────────────────── */
.faq .faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar__card {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* Tarjeta repartidores */
.faq .faq-sidebar__repartidor {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #0a1628 35%) 100%
  );
  border: none;
  color: #fff;
}

.faq .faq-rep__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.faq .faq-sidebar__repartidor h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq .faq-sidebar__repartidor p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.faq .faq-rep__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq .faq-rep__checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.faq .faq-rep__checklist li i {
  color: #86efac;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq .faq-rep__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  justify-content: center;
}

.faq .faq-rep__btn:hover {
  background: color-mix(in srgb, #fff, transparent 12%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Mini estadísticas */
.faq .faq-sidebar__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.25rem 1rem;
  text-align: center;
  gap: 0.5rem;
}

.faq .faq-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.faq .faq-stat__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.faq .faq-stat__label {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.3;
  text-align: center;
}

.faq .faq-stat__sep {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  flex-shrink: 0;
}

/* Contacto rápido */
.faq .faq-contact__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.1rem;
}

.faq .faq-contact__head > i {
  font-size: 1.6rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq .faq-contact__head strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.faq .faq-contact__head span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.faq .faq-contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq .faq-contact__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: var(--default-color);
  font-size: 0.87rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
}

.faq .faq-contact__links a i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq .faq-contact__links a:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.faq .faq-contact__links a:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .faq .faq-sidebar {
    position: static;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 40%)
  );
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(
    120deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), var(--accent-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 30%)
  );
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details
  .service-process
  .process-steps
  .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details
  .service-process
  .process-steps
  .process-step
  .step-content
  h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details
  .service-sidebar
  .service-menu
  .menu-list
  .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item:last-child {
  border-bottom: none;
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item
  .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item
  .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item
  i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item
  span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

.hero.dark-background {
  isolation: isolate;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.hero.dark-background .hero-background {
  background-color: #0b1f4a !important;
  background-image: url("../img/bg/bg.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  z-index: 0 !important;
}

.hero.dark-background .hero-background::before {
  opacity: 0 !important;
}

.hero.dark-background .hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(8, 20, 60, 0.82) 0%,
    rgba(15, 40, 100, 0.75) 50%,
    rgba(5, 12, 35, 0.88) 100%
  ) !important;
  z-index: 1 !important;
}

.hero.dark-background .container {
  position: relative;
  z-index: 2;
}

/* Texto: siempre blanco, sin heredar variables */
.hero.dark-background .hero-content h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero.dark-background .hero-content p {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* Botón outline sobre fondo oscuro */
.hero.dark-background .hero-content .hero-btns .btn-outline {
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #ffffff !important;
}

.hero.dark-background .hero-content .hero-btns .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
}

/* Badge de región */
.mc-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.mc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mc-hero-trust .mc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.mc-hero-trust .mc-trust-item i {
  color: #4ade80;
  font-size: 1rem;
}

.hero.dark-background .hero-stats .stat-item {
  background-color: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.hero.dark-background .hero-stats .stat-item:hover {
  background-color: rgba(255, 255, 255, 0.14) !important;
  transform: translateY(-5px);
}

.hero.dark-background .hero-stats .stat-item .stat-icon {
  background: rgba(255, 255, 255, 0.15) !important;
}

.hero.dark-background .hero-stats .stat-item .stat-icon i {
  color: #ffffff !important;
}

.hero.dark-background .hero-stats .stat-item h3 {
  color: #ffffff !important;
}

.hero.dark-background .hero-stats .stat-item p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* About: subtítulo badge */
.about .content .section-header .subtitle {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* About: stronger highlight text */
.about .content .highlight-text strong {
  color: var(--accent-color);
}

/* About: botones CTA — corregir display:grid que desalineaba */
.about .content .cta-buttons .btn-get-started {
  display: inline-flex !important;
  align-items: center !important;
}

/* About: mini stats row */
.about .content .about-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 14px;
  text-align: center;
  justify-content: center;
}

.about .content .about-mini-stats .mini-stat {
  display: flex;
  flex-direction: column;
}

.about .content .about-mini-stats .mini-stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
  text-align: center;
}

.about .content .about-mini-stats .mini-stat strong span {
  font-size: 1.2rem;
}

.about .content .about-mini-stats .mini-stat > span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin-top: 2px;
}

/* About: tarjetas de características (fila 2) */
.about .about-feature-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .about-feature-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .about-feature-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: 0.3s;
}

.about .about-feature-card:hover .icon-box {
  background: var(--accent-color);
  color: #ffffff;
}

.about .about-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.about .about-feature-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   MauleConecta — Sección Marketplace
   ============================================================ */

/* Filtros tipo píldora */
.marketplace .mkt-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.marketplace .mkt-filters__list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
  margin: 0;
  justify-content: center;
}

.marketplace .mkt-filters__list li {
  cursor: pointer;
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-size: 0.87rem;
  font-weight: 600;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.marketplace .mkt-filters__list li:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.marketplace .mkt-filters__list li.filter-active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

/* — Tarjeta — */
.marketplace .mkt-card {
  background: var(--surface-color);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 92%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.marketplace .mkt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 72%);
}

/* Imagen */
.marketplace .mkt-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.marketplace .mkt-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marketplace .mkt-card:hover .mkt-card__image img {
  transform: scale(1.07);
}

/* Overlay con acciones */
.marketplace .mkt-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.marketplace .mkt-card:hover .mkt-card__overlay {
  opacity: 1;
}

.marketplace .mkt-card__zoom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}

.marketplace .mkt-card__zoom:hover {
  background: rgba(255, 255, 255, 0.4);
}

.marketplace .mkt-card__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}

.marketplace .mkt-card__cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: scale(1.04);
}

/* Badge de categoría */
.marketplace .mkt-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.marketplace .mkt-card__badge--alimentos {
  background: #16a34a;
}
.marketplace .mkt-card__badge--vinos {
  background: #7c3aed;
}
.marketplace .mkt-card__badge--artesania {
  background: #d97706;
}
.marketplace .mkt-card__badge--turismo {
  background: #0891b2;
}
.marketplace .mkt-card__badge--servicios {
  background: var(--accent-color);
}

/* Cuerpo */
.marketplace .mkt-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta: origen + precio */
.marketplace .mkt-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.marketplace .mkt-card__origin {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 3px;
}

.marketplace .mkt-card__origin i {
  color: var(--accent-color);
  font-size: 0.75rem;
}

.marketplace .mkt-card__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Título */
.marketplace .mkt-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.2s;
}

.marketplace .mkt-card:hover .mkt-card__title {
  color: var(--accent-color);
}

/* Descripción */
.marketplace .mkt-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  flex: 1;
}

/* Link inferior */
.marketplace .mkt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}

.marketplace .mkt-card__link:hover {
  gap: 8px;
}

/* Franja vendedores */
.marketplace .mkt-seller-strip {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 85%) 100%
  );
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.marketplace .mkt-seller-strip__text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marketplace .mkt-seller-strip__text > i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.marketplace .mkt-seller-strip__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.marketplace .mkt-seller-strip__text span {
  font-size: 0.87rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.marketplace .mkt-seller-strip__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  background: var(--accent-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s;
  white-space: nowrap;
}

.marketplace .mkt-seller-strip__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 16%);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .marketplace .mkt-seller-strip {
    flex-direction: column;
    text-align: center;
  }
  .marketplace .mkt-seller-strip__text {
    flex-direction: column;
    gap: 0.5rem;
  }
  .marketplace .mkt-seller-strip__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Servicios: icon fill variant */
.services .services-container .service-item .service-icon i {
  font-size: 1.8rem;
}

/* Steps: arrow connector styling */
.steps .process-item .arrow {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ============================================================
   MauleConecta — Sección Planes: diseño propio
   ============================================================ */

/* Contenedor de tarjetas: sombra de grupo */
.planes .planes-row {
  border-radius: 24px;
  overflow: visible;
}

/* Tarjeta base */
.planes .plan-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 0;
}

/* Bordes redondeados solo en extremos */
.planes .col-lg-4:first-child .plan-card {
  border-radius: 20px 0 20px 20px;
}
.planes .col-lg-4:last-child .plan-card {
  border-radius: 0 20px 20px 20px;
}

@media (max-width: 991px) {
  .planes .plan-card {
    border-radius: 16px !important;
  }
  .planes .plan-card--featured {
    transform: none !important;
  }
}

/* Tarjeta DESTACADA */
.planes .plan-card--featured {
  background: linear-gradient(
    145deg,
    #0f2f7a 0%,
    var(--accent-color) 60%,
    #1a4db8 100%
  );
  border-color: transparent;
  border-radius: 20px !important;
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 30px 70px
    color-mix(in srgb, var(--accent-color), transparent 55%);
  z-index: 2;
}

.planes .plan-card--featured:hover {
  transform: translateY(-22px) scale(1.02);
  box-shadow: 0 40px 80px
    color-mix(in srgb, var(--accent-color), transparent 45%);
}

.planes .plan-card:not(.plan-card--featured):hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px
    color-mix(in srgb, var(--accent-color), transparent 82%);
}

/* Badge Más Popular */
.planes .plan-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.45);
}

/* Icono del plan */
.planes .plan-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.planes .plan-card--featured .plan-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* Nombre del plan */
.planes .plan-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
}

.planes .plan-card--featured .plan-card__name {
  color: #ffffff;
}

/* Tagline */
.planes .plan-card__tagline {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.planes .plan-card--featured .plan-card__tagline {
  color: rgba(255, 255, 255, 0.75);
}

/* Precio */
.planes .plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 0;
}

.planes .plan-card__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  align-self: flex-start;
  margin-top: 6px;
}

.planes .plan-card__amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.planes .plan-card__period {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-left: 4px;
}

.planes .plan-card--featured .plan-card__currency,
.planes .plan-card--featured .plan-card__amount {
  color: #ffffff;
}

.planes .plan-card--featured .plan-card__period {
  color: rgba(255, 255, 255, 0.65);
}

/* Divisor */
.planes .plan-card__divider {
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  margin: 1.75rem 0;
}

.planes .plan-card--featured .plan-card__divider {
  background: rgba(255, 255, 255, 0.2);
}

/* Lista de features */
.planes .plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.planes .plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.45;
}

.planes .plan-card__features li i {
  font-size: 0.9rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.planes .plan-card__features li.disabled {
  opacity: 0.4;
}

.planes .plan-card__features li.disabled i {
  color: var(--default-color);
}

.planes .plan-card--featured .plan-card__features li {
  color: rgba(255, 255, 255, 0.88);
}

.planes .plan-card--featured .plan-card__features li i {
  color: #86efac;
}

.planes .plan-card--featured .plan-card__features li.disabled {
  opacity: 0.35;
}

.planes .plan-card--featured .plan-card__features li.disabled i {
  color: rgba(255, 255, 255, 0.5);
}

/* CTA */
.planes .plan-card__cta {
  margin-top: auto;
}

.planes .plan-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--accent-color);
  color: #ffffff;
  text-decoration: none;
  border: 2px solid var(--accent-color);
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.planes .plan-card__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 18%);
  border-color: color-mix(in srgb, var(--accent-color), #000 18%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 65%);
}

.planes .plan-card--featured .plan-card__btn {
  background: #ffffff;
  color: var(--accent-color);
  border-color: #ffffff;
}

.planes .plan-card--featured .plan-card__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Franja de garantías */
.planes .planes-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  background: var(--surface-color);
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.planes .planes-guarantee__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.planes .planes-guarantee__item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.planes .planes-guarantee__sep {
  width: 1px;
  height: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .planes .planes-guarantee__sep {
    display: none;
  }
  .planes .planes-guarantee {
    gap: 0.5rem;
  }
  .planes .planes-guarantee__item {
    padding: 0.4rem 0.75rem;
  }

  .planes .plan-card--featured {
    margin-top: 2rem;
  }

  .planes .plan-card#empresa {
    margin-top: 4rem;
  }
}

/* ============================================================
   MauleConecta — Sección Noticias: diseño editorial
   ============================================================ */

/* Tarjeta base */
.noticias .news-card {
  background: var(--surface-color);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 92%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.noticias .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* — Imagen — */
.noticias .news-card__image {
  position: relative;
  overflow: hidden;
}

.noticias .news-card--featured .news-card__image {
  height: 300px;
}

.noticias .news-card--compact .news-card__image {
  height: 160px;
}

.noticias .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.noticias .news-card:hover .news-card__image img {
  transform: scale(1.07);
}

/* Overlay con botones de compartir */
.noticias .news-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
}

.noticias .news-card:hover .news-card__overlay {
  opacity: 1;
}

.noticias .news-card__share {
  display: flex;
  gap: 8px;
}

.noticias .news-card__share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.noticias .news-card__share a:hover {
  background: var(--accent-color);
  transform: scale(1.12);
}

/* Badge de categoría */
.noticias .news-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.noticias .news-card__badge--green {
  background: #16a34a;
}

/* — Cuerpo — */
.noticias .news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta: fecha + categoría */
.noticias .news-card__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.noticias .news-card__meta span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.noticias .news-card__meta span i {
  color: var(--accent-color);
  font-size: 0.85rem;
}

/* Título */
.noticias .news-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  transition: color 0.2s;
}

.noticias .news-card--featured .news-card__title {
  font-size: 1.45rem;
}

.noticias .news-card:hover .news-card__title {
  color: var(--accent-color);
}

/* Extracto */
.noticias .news-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Link */
.noticias .news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
  margin-top: auto;
}

.noticias .news-card__link:hover {
  gap: 10px;
  color: color-mix(in srgb, var(--accent-color), #000 20%);
}

/* — Franja social al pie — */
.noticias .noticias-social-strip {
  margin-top: 2.5rem;
  padding: 1.25rem 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.noticias .noticias-social-strip__text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.noticias .noticias-social-strip__text i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.noticias .noticias-social-strip__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.noticias .noticias-social-strip__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 30px;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s;
}

.noticias .noticias-social-strip__links a:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .noticias .news-card--featured .news-card__image {
    height: 220px;
  }
  .noticias .news-card--featured .news-card__title {
    font-size: 1.2rem;
  }
  .noticias .noticias-social-strip {
    flex-direction: column;
    text-align: center;
  }
  .noticias .noticias-social-strip__links {
    justify-content: center;
  }
}

/* Team/Noticias: date badge inside span */
.team .member-info span i {
  font-size: 0.85rem;
}

/* FAQ: section header via section-title */
.faq .section-title {
  margin-bottom: 60px;
}

/* Contact: link colors inside info cards */
.contact .info-card .card-content p a {
  color: inherit;
  text-decoration: none;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.contact .info-card .card-content p a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Referidos Section
--------------------------------------------------------------*/

/* — Banner principal — */
.referidos .ref-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #0a1628 40%) 100%
  );
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.referidos .ref-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.referidos .ref-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.referidos .ref-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.referidos .ref-hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.referidos .ref-hero__title span {
  color: #fcd34d;
}

.referidos .ref-hero__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
}

.referidos .ref-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.referidos .ref-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.referidos .ref-hero__btn-primary:hover {
  background: color-mix(in srgb, #fff, transparent 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.referidos .ref-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.73rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}

.referidos .ref-hero__btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  transform: translateY(-3px);
}

/* — Tarjetas de recompensa — */
.referidos .ref-hero__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.referidos .ref-reward-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease;
}

.referidos .ref-reward-card:hover {
  transform: translateX(6px);
}

.referidos .ref-reward-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.referidos .ref-reward-card--comercio .ref-reward-card__icon {
  background: rgba(147, 197, 253, 0.2);
  color: #93c5fd;
}

.referidos .ref-reward-card--rep .ref-reward-card__icon {
  background: rgba(134, 239, 172, 0.2);
  color: #86efac;
}

.referidos .ref-reward-card--cliente .ref-reward-card__icon {
  background: rgba(252, 211, 77, 0.2);
  color: #fcd34d;
}

.referidos .ref-reward-card__data {
  display: flex;
  flex-direction: column;
}

.referidos .ref-reward-card__val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.referidos .ref-reward-card__lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

/* — Pasos del programa — */
.referidos .ref-step {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.referidos .ref-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 60%)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.referidos .ref-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.referidos .ref-step:hover::before {
  opacity: 1;
}

.referidos .ref-step__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 88%);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.referidos .ref-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.referidos .ref-step:hover .ref-step__icon {
  background: var(--accent-color);
  color: #fff;
}

.referidos .ref-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.6rem;
}

.referidos .ref-step__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (max-width: 991px) {
  .referidos .ref-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .referidos .ref-hero__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .referidos .ref-hero {
    padding: 2rem 1.5rem;
  }

  .referidos .ref-hero__actions {
    flex-direction: column;
  }

  .referidos .ref-hero__btn-primary,
  .referidos .ref-hero__btn-secondary {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Bolsa de Empleos Section
--------------------------------------------------------------*/

/* — Barra de búsqueda — */
.bolsa .bolsa-search {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.bolsa .bolsa-search__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--background-color);
  border-radius: 50px;
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.bolsa .bolsa-search__bar > i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bolsa .bolsa-search__bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--default-color);
  font-family: var(--default-font);
}

.bolsa .bolsa-search__bar input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.bolsa .bolsa-search__btn {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--default-font);
}

.bolsa .bolsa-search__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-1px);
}

.bolsa .bolsa-search__tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.bolsa .bolsa-tag {
  background: transparent;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0.35rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--default-font);
}

.bolsa .bolsa-tag:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.bolsa .bolsa-tag--active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

/* — Tarjeta de empleo — */
.bolsa .job-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bolsa .job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.bolsa .job-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bolsa .job-card__logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bolsa .job-card__logo--orange {
  background: rgba(234, 88, 12, 0.12);
  color: #ea580c;
}

.bolsa .job-card__logo--green {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.bolsa .job-card__logo--purple {
  background: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
}

.bolsa .job-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bolsa .job-card__company {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.bolsa .job-card__location {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.bolsa .job-card__location i {
  color: var(--accent-color);
  font-size: 0.78rem;
}

.bolsa .job-card__badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.bolsa .job-card__badge--full {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.bolsa .job-card__badge--remote {
  background: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
}

.bolsa .job-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.bolsa .job-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.25rem;
  flex: 1;
}

.bolsa .job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.bolsa .job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bolsa .job-card__tags span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.bolsa .job-card__tags span i {
  color: var(--accent-color);
  font-size: 0.82rem;
}

.bolsa .job-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.bolsa .job-card__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: #fff;
  transform: translateY(-2px);
}

/* — CTA publicar empleo — */
.bolsa .bolsa-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 88%),
    color-mix(in srgb, var(--accent-color), transparent 94%)
  );
  border-radius: 18px;
  padding: 1.5rem 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  flex-wrap: wrap;
}

.bolsa .bolsa-cta__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bolsa .bolsa-cta__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bolsa .bolsa-cta__text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.bolsa .bolsa-cta__text span {
  font-size: 0.87rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.bolsa .bolsa-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.bolsa .bolsa-cta__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .bolsa .bolsa-search {
    padding: 1.25rem;
  }

  .bolsa .bolsa-search__bar {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
  }

  .bolsa .bolsa-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bolsa .bolsa-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Eventos Section
--------------------------------------------------------------*/

/* — Filtros de categoría — */
.eventos .eventos-cats {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.eventos .eventos-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--default-font);
}

.eventos .eventos-cat:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.eventos .eventos-cat--active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

/* — Card destacada — */
.eventos .evento-card--featured {
  background: var(--surface-color);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.eventos .evento-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--accent-color), transparent 82%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

.eventos .evento-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.eventos .evento-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eventos .evento-card--featured:hover .evento-card__image img {
  transform: scale(1.06);
}

/* — Badge de categoría sobre imagen — */
.eventos .evento-card__cat {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 2;
}

.eventos .evento-card__cat--feria {
  background: var(--accent-color);
  color: #fff;
}

.eventos .evento-card__cat--negocio {
  background: rgba(22, 163, 74, 0.9);
  color: #fff;
}

.eventos .evento-card__cat--gastro {
  background: rgba(234, 88, 12, 0.9);
  color: #fff;
}

.eventos .evento-card__cat--cultura {
  background: rgba(109, 40, 217, 0.9);
  color: #fff;
}

/* — Cuerpo de la card destacada — */
.eventos .evento-card__body {
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex: 1;
}

.eventos .evento-card__date-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  min-height: 70px;
  background: var(--accent-color);
  border-radius: 14px;
  padding: 0.5rem;
}

.eventos .evento-card__day {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: var(--heading-font);
}

.eventos .evento-card__month {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eventos .evento-card__content {
  flex: 1;
}

.eventos .evento-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.eventos .evento-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.eventos .evento-card__meta span i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.eventos .evento-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.eventos .evento-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.25rem;
}

.eventos .evento-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.eventos .evento-card__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: #fff;
  transform: translateY(-2px);
}

/* — Cards compactas — */
.eventos .evento-card--compact {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  flex: 1;
}

.eventos .evento-card--compact:hover {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 8px 24px
    color-mix(in srgb, var(--accent-color), transparent 88%);
}

.eventos .evento-card__compact-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-height: 58px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
}

.eventos .evento-card--compact .evento-card__day {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.eventos .evento-card--compact .evento-card__month {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eventos .evento-card__compact-body {
  flex: 1;
}

.eventos .evento-card__compact-body .evento-card__cat {
  position: static;
  display: inline-flex;
  font-size: 0.68rem;
  margin-bottom: 0.4rem;
}

.eventos .evento-card__compact-body .evento-card__title {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.eventos .evento-card__compact-body .evento-card__meta {
  gap: 0.5rem;
  margin-bottom: 0;
}

/* — Franja proponer evento — */
.eventos .eventos-propose {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface-color);
  border-radius: 18px;
  padding: 1.5rem 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  flex-wrap: wrap;
}

.eventos .eventos-propose__icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.eventos .eventos-propose__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.eventos .eventos-propose__text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.eventos .eventos-propose__text span {
  font-size: 0.87rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.eventos .eventos-propose__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.72rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.eventos .eventos-propose__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .eventos .evento-card__image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .eventos .evento-card__body {
    flex-direction: column;
    gap: 1rem;
  }

  .eventos .eventos-propose {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .eventos .eventos-propose__btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Comunidad Section (Testimonios)
--------------------------------------------------------------*/

/* — Ticker de estadísticas — */
.comunidad .comunidad-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.comunidad .comunidad-ticker__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 2.5rem;
  text-align: center;
}

.comunidad .comunidad-ticker__stat > i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.comunidad .comunidad-ticker__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.comunidad .comunidad-ticker__lbl {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.comunidad .comunidad-ticker__sep {
  width: 1px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  flex-shrink: 0;
}

/* — Tarjeta de testimonio — */
.comunidad .testimonio-card {
  background: var(--surface-color);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.comunidad .testimonio-card::before {
  content: "\275D";
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  font-family: Georgia, serif;
  pointer-events: none;
}

.comunidad .testimonio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--accent-color), transparent 82%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

/* — Variante destacada — */
.comunidad .testimonio-card--featured {
  background: linear-gradient(
    145deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #0a1628 38%) 100%
  );
  border: none;
}

.comunidad .testimonio-card--featured::before {
  color: rgba(255, 255, 255, 0.1);
}

.comunidad .testimonio-card--featured:hover {
  box-shadow: 0 20px 50px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* — Cabecera con avatar — */
.comunidad .testimonio-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.comunidad .testimonio-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  flex-shrink: 0;
}

.comunidad .testimonio-card--featured .testimonio-card__avatar {
  border-color: rgba(255, 255, 255, 0.4);
}

.comunidad .testimonio-card__author {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comunidad .testimonio-card__author strong {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--heading-color);
}

.comunidad .testimonio-card--featured .testimonio-card__author strong {
  color: #fff;
}

.comunidad .testimonio-card__author span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 1px;
}

.comunidad .testimonio-card--featured .testimonio-card__author span {
  color: rgba(255, 255, 255, 0.72);
}

.comunidad .testimonio-card__stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.comunidad .testimonio-card__stars i {
  font-size: 0.8rem;
  color: #fbbf24;
}

.comunidad .testimonio-card__badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.comunidad .testimonio-card--featured .testimonio-card__badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.comunidad .testimonio-card__badge--rep {
  background: rgba(22, 163, 74, 0.15);
  color: #16a34a;
}

.comunidad .testimonio-card__badge--empresa {
  background: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
}

/* — Cita — */
.comunidad .testimonio-card__quote {
  font-size: 0.93rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  border: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.comunidad .testimonio-card--featured .testimonio-card__quote {
  color: rgba(255, 255, 255, 0.9);
}

.comunidad .testimonio-card__quote strong {
  color: var(--accent-color);
}

.comunidad .testimonio-card--featured .testimonio-card__quote strong {
  color: #fcd34d;
}

/* — Meta de la tarjeta — */
.comunidad .testimonio-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  z-index: 1;
}

.comunidad .testimonio-card--featured .testimonio-card__meta {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.comunidad .testimonio-card__plan {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.comunidad .testimonio-card--featured .testimonio-card__plan {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.comunidad .testimonio-card__plan--rep {
  background: rgba(22, 163, 74, 0.13);
  color: #16a34a;
}

.comunidad .testimonio-card__time {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.comunidad .testimonio-card--featured .testimonio-card__time {
  color: rgba(255, 255, 255, 0.6);
}

.comunidad .testimonio-card__time i {
  font-size: 0.75rem;
}

/* — CTA de comunidad — */
.comunidad .comunidad-cta {
  margin-top: 3rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 10%),
    color-mix(in srgb, var(--accent-color), #0a1628 30%)
  );
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.comunidad .comunidad-cta::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.comunidad .comunidad-cta__content {
  position: relative;
  z-index: 1;
}

.comunidad .comunidad-cta__content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.comunidad .comunidad-cta__content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.comunidad .comunidad-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.comunidad .comunidad-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.78rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.comunidad .comunidad-cta__btn-primary:hover {
  background: color-mix(in srgb, #fff, transparent 10%);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.comunidad .comunidad-cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.76rem 1.7rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}

.comunidad .comunidad-cta__btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .comunidad .comunidad-ticker {
    justify-content: flex-start;
  }

  .comunidad .comunidad-ticker__stat {
    padding: 0.5rem 1.5rem;
  }

  .comunidad .comunidad-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem;
  }

  .comunidad .comunidad-cta__content p {
    max-width: 100%;
  }

  .comunidad .comunidad-cta__actions {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .comunidad .comunidad-ticker {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .comunidad .comunidad-ticker__sep {
    width: 100%;
    height: 1px;
  }

  .comunidad .comunidad-ticker__stat {
    padding: 0.25rem 0;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .comunidad .comunidad-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .comunidad .comunidad-cta__btn-primary,
  .comunidad .comunidad-cta__btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Countdown Section
--------------------------------------------------------------*/
.countdown-section {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #0a1628 55%) 100%
  );
  padding: 70px 0;
}

.countdown-section .countdown-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.countdown-section .countdown-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.countdown-section .countdown-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.countdown-section .countdown-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 36px;
}

.countdown-section .countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.countdown-section .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.countdown-section .countdown-number {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  padding: 16px 10px 12px;
  min-width: 90px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.countdown-section .countdown-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.countdown-section .countdown-sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 28px;
  align-self: flex-end;
}

.countdown-section .countdown-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.countdown-section .countdown-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .countdown-section .countdown-title {
    font-size: 1.6rem;
  }
  .countdown-section .countdown-number {
    font-size: 2.2rem;
    min-width: 68px;
    padding: 12px 8px;
  }
  .countdown-section .countdown-item {
    min-width: 68px;
  }
  .countdown-section .countdown-sep {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Plan Empresa - Funcionalidades Premium
--------------------------------------------------------------*/
.plan-card__features .plan-premium-sep {
  list-style: none;
  padding: 10px 0 4px;
  pointer-events: none;
}

.plan-card__features .plan-premium-sep span {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #f5a623, #f7c05a);
  color: #5a3a00;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 20px;
}

.plan-card__features li.premium {
  color: #7a5c00;
}

.plan-card__features li.premium i {
  color: #f5a623;
  font-size: 1rem;
}

/* En modo dark del plan featured */
.plan-card--featured .plan-card__features .plan-premium-sep span {
  background: linear-gradient(90deg, #ffd54f, #ffe082);
  color: #3e2800;
}

.plan-card--featured .plan-card__features li.premium {
  color: rgba(255, 255, 255, 0.9);
}

.plan-card--featured .plan-card__features li.premium i {
  color: #ffd54f;
}