/* ============================================================
   PDP COMUNICA — MARKETING / SOLUCIONES POR INDUSTRIA
   Hoja aislada para marketing.html.
   No altera el diseño global ni la landing propuesta.html.
   ============================================================ */

.industry-showcase {
  --industry-orange: #ff5a00;
  --industry-orange-light: #ff8a3d;
  --industry-green: #60ff01;
  --industry-white: #ffffff;
  --industry-muted: rgba(255, 255, 255, 0.67);
  --industry-line: rgba(255, 255, 255, 0.13);
  --industry-surface: rgba(255, 255, 255, 0.045);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(88px, 9vw, 138px) 24px;
  border-top: 1px solid var(--industry-line);
  border-bottom: 1px solid var(--industry-line);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 90, 0, 0.18), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(96, 255, 1, 0.09), transparent 24%),
    linear-gradient(135deg, #020202 0%, #080504 52%, #020202 100%);
  color: var(--industry-white);
}

.industry-showcase::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.industry-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16%;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 90, 0, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 90, 0, 0.025),
    0 0 0 84px rgba(255, 90, 0, 0.018);
  pointer-events: none;
}

.industry-showcase__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin-inline: auto;
}

.industry-showcase__head {
  margin-bottom: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 6vw, 90px);
  border-bottom: 1px solid var(--industry-line);
}

.industry-showcase__eyebrow {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--industry-orange-light);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industry-showcase__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--industry-orange), var(--industry-green));
  box-shadow: 0 0 14px rgba(255, 90, 0, 0.7);
}

.industry-showcase__head h2 {
  max-width: 790px;
  margin: 0;
  color: var(--industry-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.65rem, 5.8vw, 5.7rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.industry-showcase__head h2 em {
  display: block;
  background: linear-gradient(90deg, var(--industry-orange) 5%, var(--industry-orange-light) 58%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.industry-showcase__intro {
  max-width: 520px;
  margin: 0;
  color: var(--industry-muted);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.94rem, 1.25vw, 1.06rem);
  line-height: 1.8;
}

.industry-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: stretch;
  gap: 24px;
}

.industry-showcase__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.industry-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #111111;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.43);
  isolation: isolate;
  transform: translateZ(0);
}

.industry-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 30%, transparent 70%, rgba(96, 255, 1, 0.2)) border-box;
  -webkit-mask:
  linear-gradient(#fff 0 0) padding-box,
  linear-gradient(#fff 0 0);

mask:
  linear-gradient(#fff 0 0) padding-box,
  linear-gradient(#fff 0 0);

-webkit-mask-composite: xor;
mask-composite: exclude;
  pointer-events: none;
}

.industry-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.88) contrast(1.03);
  transform: scale(1.015);
  transition:
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 500ms ease;
}

.industry-card:hover .industry-card__image {
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.075);
}

.industry-card__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, transparent 64%);
}

.industry-card__content {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(28px, 5vw, 60px);
  left: clamp(24px, 4vw, 54px);
  max-width: 700px;
}

.industry-card__badge {
  width: fit-content;
  margin-bottom: 19px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(96, 255, 1, 0.38);
  border-radius: 999px;
  background: rgba(7, 17, 7, 0.56);
  color: var(--industry-green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.industry-card__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--industry-green);
  box-shadow: 0 0 0 6px rgba(96, 255, 1, 0.12), 0 0 16px rgba(96, 255, 1, 0.72);
}

.industry-card__content h3 {
  margin: 0;
  color: var(--industry-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5.1vw, 5.35rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.industry-card__content > p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.03rem);
  line-height: 1.75;
}

.industry-card__tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.industry-card__tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.industry-card__button {
  width: fit-content;
  min-height: 52px;
  margin-top: 30px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--industry-orange);
  border-radius: 999px;
  background: var(--industry-orange);
  color: #080808;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 15px 38px rgba(255, 90, 0, 0.25);
  transition:
    transform 260ms ease,
    background 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.industry-card__button:hover {
  background: var(--industry-white);
  color: #050505;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(255, 90, 0, 0.34);
}

.industry-card__button .material-symbols-outlined {
  font-size: 1.08rem;
  transition: transform 260ms ease;
}

.industry-card__button:hover .material-symbols-outlined {
  transform: translate(3px, -3px);
}

.industry-preview {
  position: relative;
  overflow: hidden;
  min-height: 145px;
  padding: clamp(22px, 2.5vw, 30px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid var(--industry-line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.industry-preview::after {
  content: "Propuesta disponible";
  position: absolute;
  top: 15px;
  right: 17px;
  max-width: 46%;
  text-align: right;
  color: #60ff01;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.25;
  z-index: 2;
}

.industry-showcase__grid .industry-preview--available::after {
  content: "Propuesta disponible";
  color: #60ff01;
  opacity: 1;
}

.industry-showcase__list .industry-preview--available::after {
  content: "Propuesta disponible";
  color: #60ff01;
  opacity: 1;
}

.industry-showcase__list .industry-preview--available {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border-color: rgba(96, 255, 1, 0.35);
}

.industry-showcase__list .industry-preview--available:visited {
  color: inherit;
}

.industry-showcase__list .industry-preview--available:hover {
  border-color: rgba(96, 255, 1, 0.75);
  background: linear-gradient(
    135deg,
    rgba(96, 255, 1, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 20px 45px rgba(96, 255, 1, 0.12);
  transform: translateX(7px);
}

.industry-showcase__list .industry-preview--available:focus-visible {
  outline: 2px solid #60ff01;
  outline-offset: 4px;
}
.industry-preview:hover {
  border-color: rgba(255, 90, 0, 0.48);
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  transform: translateX(7px);
}

.industry-preview--has-thumb {
  grid-template-columns: 72px minmax(0, 1fr);
}

.industry-preview__thumb {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-preview__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 90, 0, 0.28);
  border-radius: 18px;
  background: rgba(255, 90, 0, 0.09);
  color: var(--industry-orange-light);
  font-size: 1.65rem;
  box-shadow: inset 0 0 24px rgba(255, 90, 0, 0.05);
}

.industry-preview h3 {
  margin: 0 0 7px;
  padding-right: 7.5rem;
  color: var(--industry-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.industry-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
}

.industry-showcase__note {
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(96, 255, 1, 0.2);
  border-radius: 18px;
  background: rgba(96, 255, 1, 0.045);
  color: rgba(255, 255, 255, 0.56);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  line-height: 1.6;
}

.industry-showcase__note .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--industry-green);
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .industry-showcase__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-showcase__grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 480px;
  }

  .industry-showcase__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .industry-preview {
    grid-template-columns: 1fr;
    align-content: end;
    min-height: 180px;
  }

  .industry-showcase__note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .industry-showcase {
    padding-inline: 16px;
  }

  .industry-showcase__head h2 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .industry-card {
    min-height: 460px;
    border-radius: 26px;
  }

  .industry-card__overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.68) 56%, rgba(0, 0, 0, 0.16) 100%);
  }

  .industry-card__content h3 {
    font-size: clamp(2.65rem, 14vw, 4.25rem);
  }

  .industry-card__button {
    width: 100%;
  }

  .industry-showcase__list {
    grid-template-columns: 1fr;
  }

  .industry-preview {
    min-height: 150px;
    grid-template-columns: 58px 1fr;
    align-content: center;
  }

  .industry-showcase__note {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card__image,
  .industry-card__button,
  .industry-preview,
  .industry-card__button .material-symbols-outlined {
    transition: none;
  }
}

/* =========================================================
   ENLACES LEGALES DEL FOOTER EN COLOR BLANCO
========================================================= */

footer .footer-bottom-link {
  color: #ffffff !important;
  opacity: 1 !important;
}

footer a.footer-bottom-link:visited {
  color: #ffffff !important;
}

footer .footer-bottom-link:hover,
footer .footer-bottom-link:focus-visible {
  color: #ff4500 !important;
  opacity: 1 !important;
}

/* =====================================================
   TÍTULO INDUSTRIAS — MARKETING
===================================================== */

.industry-showcase__head h2 {
  max-width: 820px !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(2.4rem, 3.8vw, 4.25rem) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

.industry-showcase__head h2 em {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

@media (max-width: 760px) {
  .industry-showcase__head h2 {
    max-width: 100% !important;
    font-size: clamp(2.15rem, 9.5vw, 3.2rem) !important;
    line-height: 1 !important;
  }
}

/* =====================================================
   TÍTULO DESTACADO — SALUD Y HEALTHTECH
===================================================== */

.industry-card__content h3 {
  max-width: 700px !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(2.15rem, 3.25vw, 3.7rem) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
}

@media (max-width: 680px) {
  .industry-card__content h3,
  .av-industry-featured h3,
  .dev-industry-featured h3 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1 !important;
  }
}