/* ==========================================================================
   PERUMIN 38 — site stylesheet
   Rebuilt pixel-faithfully from the Figma file "PERUMIN 38", Page 1. Shared
   by all 5 pages: Home (73:605), Sobre PERUMIN (9:1522), Sobre el IIMP
   (523:7207), Cumbre Minera (393:2028), Foro TIS (412:2902).
   Reference canvas width: 1920px. Font: Roboto (Google Fonts); page titles
   use a font named "Bosch" in Figma (a private/corporate font, not on Google
   Fonts) — falls back to the system bold stack, see .page-hero .title.
   One shared token system (colors/fonts/breakpoints) — no per-page forks.
   ========================================================================== */

:root {
  --teal: #004f59;
  --teal-light: #66959c;
  --ink: #2d2926;
  --muted: #546179;
  --muted-2: #888b8d;
  --light-blue: #e1ebec;
  --grey-tint: #c4c4c4;
  --orange: #cb6015;
  --gold: #f2a900;
  --silver: #8e8e93;
  --copper: #cb6015;
  --white: #ffffff;
  --hairline: #e5e7eb;

  --container-wide: 1600px;
  --container-narrow: 1410px;
  --side-pad: clamp(20px, 5vw, 160px);
  --side-pad-narrow: clamp(20px, 6.6vw, 256px);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; /* Figma uses "Roboto" throughout — real Google Font, loaded via <link> */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--side-pad-narrow);
}

.eyebrow {
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  color: var(--ink);
}

.section-heading {
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.section-sub {
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 21px);
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 640px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ---- reusable pill/arrow nav buttons -------------------------------- */

.nav-arrows {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.nav-arrows img { width: 58px; height: 58px; }
.nav-arrows img:first-child { margin-right: -14px; position: relative; z-index: 1; }

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 23px);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.btn-ver-mas img { width: 40px; height: 40px; }
.hidden{ display: none !important; }
/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  height: 120px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.logo { flex-shrink: 0; }
.logo img { height: 35px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 32px);
  margin-left: auto;
}

.main-nav a {
  font-size: clamp(12px, 0.9vw, 20px);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav .nav-item:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

/* ==========================================================================
   DROPDOWN MENUS (Desktop & Mobile)
   ========================================================================== */

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--teal) !important;
}

.nav-chevron {
  font-size: 11px;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-dropdown:hover .nav-chevron,
.has-dropdown.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #004853;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s;
  z-index: 300;
  pointer-events: none;
}

/* Invisible hover bridge */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 12px 20px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: #073841 !important;
  color: var(--gold, #F8A51D) !important;
  padding-left: 24px !important;
}

.header-account {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 24px);
  flex-shrink: 0;
}

.login-link {
  display: none !important;
}

.btn-signup {
  display:none !important;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 12px clamp(16px, 2vw, 28px);
  font-weight: 600;
  font-size: clamp(13px, 1vw, 20px);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 764;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bottom-bar {
  position: absolute;
  left: clamp(24px, 7.5vw, 150px);
  right: clamp(24px, 7.5vw, 150px);
  bottom: clamp(60px, 9.5vw, 110px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.hero-controls-left {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.hero-slider-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-arrow-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.05);
}

.hero-brochure {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 20px);
  padding: 13px clamp(20px, 2.2vw, 36px);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hero-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.hero-social-btn img {
  width: 20px;
  height: 20px;
}

.hero-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.hero-social-btn.is-active {
  background: var(--teal);
}

.hero-search-wrapper {
  position: relative;
  max-width: 920px;
  margin: -48px auto 0;
  z-index: 10;
  padding-inline: 16px;
}

.hero-search-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
  padding: 22px clamp(20px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 48px);
}

.search-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.search-item .label {
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.search-indicator {
  border-radius: 2px;
  margin: 6px 0 8px;
}

.search-indicator.indicator-ubicacion {
  width: 76px;
  height: 3px;
  background: linear-gradient(to right, var(--teal) 44px, #c3cdcf 44px);
}

.search-indicator.indicator-fecha {
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, var(--teal) 32px, #c3cdcf 32px);
}

.search-item .value {
  font-size: clamp(13px, 1vw, 16px);
  color: var(--muted-2);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.search-item:hover .value {
  color: var(--ink);
}

.search-item .val-icon {
  color: var(--teal);
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.search-item:hover .val-icon {
  transform: scale(1.15);
  opacity: 1;
}

.search-divider {
  width: 1px;
  height: 44px;
  background: var(--hairline);
  margin: 0 4px;
  align-self: center;
}

.search-cta {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--teal);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 79, 89, 0.3);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, box-shadow 0.2s ease;
  margin-right: 8px;
}

.search-cta:hover {
  background: #003e46;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 79, 89, 0.45);
}

.search-cta svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.search-cta:hover svg {
  transform: rotate(10deg);
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes bubblePopIn {
  0% {
    opacity: 0;
    transform: scale(0) translateY(14px);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) translateY(-3px);
  }
  80% {
    transform: scale(0.95) translateY(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes robotTalking {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  14% {
    transform: scale(1.14, 0.90) translateY(-3px);
  }
  28% {
    transform: scale(0.94, 1.08) translateY(-1px);
  }
  42% {
    transform: scale(1.10, 0.94) translateY(-2px);
  }
  56% {
    transform: scale(0.98, 1.02) translateY(0);
  }
  70% {
    transform: scale(1.05, 0.97) translateY(-1px);
  }
  84% {
    transform: scale(1) translateY(0);
  }
}

@keyframes robotAvatarSpeak {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  14% {
    transform: rotate(-3deg) scale(1.02);
  }
  28% {
    transform: rotate(3deg) scale(1.02);
  }
  42% {
    transform: rotate(-2deg) scale(1.01);
  }
  56% {
    transform: rotate(1.5deg) scale(1.01);
  }
  70% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes textSpeakPulse {
  0%, 100% {
    letter-spacing: normal;
  }
  14%, 42% {
    letter-spacing: 0.5px;
    color: var(--teal-light, #006070);
  }
  28%, 70% {
    letter-spacing: normal;
    color: var(--teal, #004853);
  }
}

.hero-mascot-widget {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 991;
  pointer-events: auto;
  cursor: pointer;
  animation: floatMascot 4s ease-in-out infinite;
  user-select: none;
}

.mascot-speech-bubble {
  background: #e1edf0;
  color: #004853;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 18px;
  margin-bottom: 4px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 72, 83, 0.12);
  transform-origin: 65% bottom;
  animation: 
    bubblePopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both,
    robotTalking 3.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.mascot-speech-bubble .talk-text {
  display: inline-block;
  animation: textSpeakPulse 3.8s ease-in-out 1.2s infinite;
}

.mascot-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 22px;
  border-width: 5px 5px 0;
  border-style: solid;
  border-color: #e1edf0 transparent;
  transform-origin: top center;
}

.mascot-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--white);
  border: 3.5px solid var(--white);
  box-shadow: 0 6px 20px rgba(0, 40, 50, 0.16);
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: robotAvatarSpeak 3.8s ease-in-out 1.2s infinite;
}

.hero-mascot-widget:hover .mascot-speech-bubble {
  animation: robotTalking 0.8s ease-in-out infinite;
}

.hero-mascot-widget:hover .mascot-avatar {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 26px rgba(0, 72, 83, 0.25);
}

/* ==========================================================================
   GENERIC SECTION SPACING
   ========================================================================== */

section { position: relative; }
.section-pad { padding-block: clamp(56px, 8vw, 120px); }

/* ==========================================================================
   REUSABLE SECTION ACTIONS & SLIDER ARROWS
   ========================================================================== */

.section-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background: var(--white);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.arrow-btn:hover,
.arrow-btn.active {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.05);
}

.arrow-btn:disabled,
.arrow-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

.arrows-orange .arrow-btn {
  border-color: var(--orange);
  color: var(--orange);
}

.arrows-orange .arrow-btn:hover,
.arrows-orange .arrow-btn.active {
  background: var(--orange);
  color: var(--white);
}

.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 12px 24px;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 79, 89, 0.2);
}

.btn-ver-mas:hover {
  background: #003a42;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 79, 89, 0.3);
}

.btn-ver-mas svg {
  transition: transform 0.2s ease;
}

.btn-ver-mas:hover svg {
  transform: translateX(3px);
}

.btn-ver-mas.btn-orange {
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(203, 96, 21, 0.25);
}

.btn-ver-mas.btn-orange:hover {
  background: #b04e0e;
  box-shadow: 0 6px 18px rgba(203, 96, 21, 0.35);
}

/* ==========================================================================
   ACTIVIDADES (Destinations mosaic #1)
   ========================================================================== */

.mosaic-grid {
  display: grid;
  grid-template-columns: 327fr 445fr 208fr 327fr;
  grid-template-rows: 291fr 291fr;
  gap: 24px;
  width: 100%;
}

.mosaic-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: default;
}

a.mosaic-item {
  cursor: pointer;
}

.revive-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 24px 8px !important;
  margin: -24px -8px !important;
}

.revive-slider {
  display: flex !important;
  flex-wrap: nowrap !important;
  will-change: transform;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.revive-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-item .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 65%);
  transition: opacity 0.3s ease;
}

.mosaic-item .label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 24px);
  z-index: 2;
  transition: transform 0.3s ease;
}

a.mosaic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 79, 89, 0.18);
}

a.mosaic-item:hover img {
  transform: scale(1.08);
}

a.mosaic-item:hover .label {
  transform: translateY(-3px);
}

.mosaic-item.tall { grid-row: span 2; }
.m-01 { grid-column: 1; grid-row: 1; }
.m-02 { grid-column: 1; grid-row: 2; }
.m-03 { grid-column: 2; grid-row: 1 / span 2; }
.m-04 { grid-column: 3 / span 2; grid-row: 1; }
.m-05 { grid-column: 3; grid-row: 2; }
.m-06 { grid-column: 4; grid-row: 2; }

/* ==========================================================================
   FUNFACT strip
   ========================================================================== */

.funfact {
  background: var(--teal);
}

.funfact .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 42px;
  text-align: center;
}

.funfact .stat {
  padding-inline: 16px;
  transition: transform 0.25s ease;
}

.funfact .stat:hover {
  transform: translateY(-3px);
}

.funfact .stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.funfact .stat-number {
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 46px);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.funfact .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 1vw, 18px);
  margin: 0;
  font-weight: 400;
}

/* ==========================================================================
   COMITÉ ORGANIZADOR
   ========================================================================== */

.committee-wrap {
  background: linear-gradient(115deg, rgba(225, 235, 236, 0) 5%, #e1ebec 100%);
}

.team-carousel-container,
.blog-carousel-container,
.category-carousel-container,
.slider-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 4px 28px 4px;
  margin: -16px -4px -28px -4px;
}

.team-grid,
.blog-grid,
.category-grid,
.slider-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  will-change: transform;
  gap: 24px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.team-grid.no-transition,
.blog-grid.no-transition,
.category-grid.no-transition,
.slider-track.no-transition {
  transition: none !important;
}

.team-grid > *,
.blog-grid > *,
.category-grid > *,
.slider-track > * {
  flex-shrink: 0 !important;
  box-sizing: border-box;
}

.team-card {
  flex: 0 0 calc((100% - (3 * 24px)) / 4);
  width: calc((100% - (3 * 24px)) / 4);
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover,
.team-card.is-hovered {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.team-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 300 / 330;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.04);
}

.team-social-toggle {
  display: none !important;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #8e9a9d;
  border-radius: 20px;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease;
}

.team-social-toggle .toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.team-social-toggle .toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.team-social-toggle .icon-down {
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-social-toggle .icon-up {
  display: none !important;
}

.team-social-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0 2px;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.28s ease,
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-social-toggle,
.team-social-toggle:hover,
.team-card.is-hovered .team-social-toggle {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.team-card:hover .team-social-toggle .icon-down,
.team-social-toggle:hover .icon-down,
.team-card.is-hovered .team-social-toggle .icon-down {
  transform: rotate(180deg);
}

.team-card:hover .team-social-dropdown,
.team-social-toggle:hover .team-social-dropdown,
.team-card.is-hovered .team-social-dropdown {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 4px;
  padding-bottom: 4px;
}

.social-icon-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.25s ease;
}

.social-icon-link:hover {
  background: #ffffff;
  color: var(--teal, #004853);
  transform: scale(1.15);
}

.team-card .info {
  margin: -24px 14px 14px 14px;
  position: relative;
  z-index: 2;
  background: var(--teal);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(0, 79, 89, 0.25);
}

.team-card .info h3 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.team-card .info .role-main {
  color: #e1ebec;
  font-size: 13px;
  font-weight: 500;
  margin: 4px 0 0;
}

.team-card .info .role-sub {
  color: #a4c4c8;
  font-size: 11px;
  line-height: 1.35;
  margin: 4px 0 0;
  font-weight: 400;
}

/* ==========================================================================
   SÉ PARTE DE PERUMIN 38 (signup cards)
   ========================================================================== */

.signup-section .section-heading { max-width: 700px; }

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 40px;
}

.signup-card {
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.signup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.card-auspiciador {
  background: #f2a900;
  color: #ffffff;
  grid-column: 1;
  grid-row: 1;
}

.card-separa {
  background: var(--teal);
  color: #ffffff;
  grid-column: 3;
  grid-row: 1;
}

.card-recibe {
  background: #cb6015;
  color: #ffffff;
  grid-column: 1 / span 2;
  grid-row: 2;
}

.card-media {
  background: #8e9a9d;
  color: #ffffff;
  grid-column: 3;
  grid-row: 2;
}

.signup-card h3 {
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  line-height: 1.2;
}

.btn-signup-pill {
  display: inline-block;
  width: fit-content;
  background: #ffffff;
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-signup-pill:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  background: #00363d;
  color: #ffffff;
}

.signup-photo {
  grid-column: 2;
  grid-row: 1;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.signup-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.signup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.signup-photo:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   REVIVE PERUMIN 38 (video)
   ========================================================================== */

.revive-section {
  background: rgba(203, 96, 21, 0.08);
}

.revive-head-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.highlight-orange {
  color: var(--orange);
  font-size: 40px !important;
}

.revive-grid {
  display: grid;
  grid-template-columns: minmax(280px, 810px) 1fr;
  gap: clamp(24px, 3vw, 80px);
  align-items: center;
}

.video-container-wrap {
  position: relative;
}

.video-megaphone-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 58px;
  height: 58px;
  background: var(--orange);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(203, 96, 21, 0.35);
  z-index: 5;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-container-wrap:hover .video-megaphone-badge {
  transform: scale(1.1) rotate(-8deg);
}

.video-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 810 / 506;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-container-wrap:hover .video-thumb img {
  transform: scale(1.04);
}

.play-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.video-thumb .play-btn {
  width: clamp(64px, 8vw, 100px);
  height: clamp(64px, 8vw, 100px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-wrap:hover .play-btn {
  transform: scale(1.15);
}

.revive-copy h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}

.revive-copy p {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  white-space: pre-line;
}

/* ==========================================================================
   NOTAS DE PRENSA (blog cards)
   ========================================================================== */

.blog-card {
  flex: 0 0 calc((100% - (2 * 24px)) / 3);
  width: calc((100% - (2 * 24px)) / 3);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.blog-img-wrap {
  width: 100%;
  aspect-ratio: 507 / 294;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-body-wrap {
  display: flex;
  flex: 1;
  background: #ffffff;
}

.blog-date-badge {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.blog-date-badge.badge-orange {
  background: var(--orange);
  color: #ffffff;
}

.blog-date-badge.badge-grey {
  background: #e1ebec;
  color: var(--teal);
}

.blog-date-badge span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.blog-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-content h3 {
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
  transition: color 0.2s ease;
}

.blog-card:hover .blog-content h3 {
  color: var(--teal);
}

.blog-content p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   CATEGORY / "También te podría interesar"
   ========================================================================== */

.category-card {
  flex: 0 0 calc((100% - (3 * 24px)) / 4);
  width: calc((100% - (3 * 24px)) / 4);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 79, 89, 0.1);
  border-color: rgba(0, 79, 89, 0.3);
}

.category-card .icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card .icon-wrap img {
  width: 100%;
  height: 100%;
}

.category-card:hover .icon-wrap {
  transform: scale(1.15) rotate(-4deg);
}

.category-card h3 {
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.category-card:hover h3 {
  color: var(--teal);
}

.category-card .program-tag {
  font-size: 14px;
  color: var(--muted-2);
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   AUSPICIOS (logos hover effects)
   ========================================================================== */

.sponsor-tier img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sponsor-tier:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   AUSPICIOS (sponsors)
   ========================================================================== */

.sponsor-tier + .sponsor-tier { margin-top: 40px; }
.sponsor-tier h3 {
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 28px);
  margin: 0 0 20px;
}
.sponsor-tier hr {
  border: none;
  height: 2px;
  margin: 0 0 32px;
}
.tier-oro h3 { color: var(--gold); }
.tier-oro hr { background: var(--gold); }
.tier-plata h3 { color: var(--silver); }
.tier-plata hr { background: var(--silver); }
.tier-cobre h3 { color: var(--copper); }
.tier-cobre hr { background: var(--copper); }
.sponsor-tier img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   FOOTER (Why Choose Us + Quote form + Contáctanos)
   ========================================================================== */

/* ==========================================================================
   PERUMIN SIGNATURE ACCENT BLOCKS
   ========================================================================== */

.decor-accent-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 16px;
}

.decor-block-teal {
  width: 48px;
  height: 24px;
  background: var(--teal);
  border-radius: 4px;
}

.decor-block-orange {
  width: 24px;
  height: 48px;
  background: #f2a900;
  border-radius: 4px;
}

/* ==========================================================================
   FOOTER (Exact index.pdf Composite Design)
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--teal);
  color: #fff;
  overflow: hidden;
  /* margin-top: 60px; */
}

.site-footer .footer-bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.site-footer .footer-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 56, 64, 0.4) 0%, rgba(0, 56, 64, 0.7) 100%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(60px, 8vw, 100px);
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-left .footer-logo {
  margin-bottom: 20px;
}

.footer-left .footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-left .footer-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-transform: uppercase;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 24px 0;
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.footer-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-sq-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.social-sq-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-privacy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-privacy:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Composite Contact Card on Right */
.footer-right {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: -40px; /* Subtle negative offset matching Figma / PDF composition */
}

.footer-card-composite {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: rgba(184, 193, 195, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(28px, 3.5vw, 42px) clamp(24px, 3vw, 36px) 32px;
  color: #ffffff;
}

.contact-form-card h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.contact-form-card > p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-field input,
.form-field textarea {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 15px;
  font-family: inherit;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.35);
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.form-field input:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.select-field {
  position: relative;
}

.select-field .field-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.field-textarea {
  margin-bottom: 20px;
}

.field-textarea textarea {
  resize: none;
  min-height: 100px;
}

.btn-footer-enviar {
  display: inline-block;
  background: #ffffff;
  color: var(--teal);
  border: none;
  border-radius: 9999px;
  padding: 12px 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-footer-enviar:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  background: #f0fdf4;
}

/* Contact Info Banner (Bottom of Composite Card) */
.contact-info-banner {
  background: #004b54;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.headset-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-card-composite:hover .headset-circle {
  transform: rotate(-10deg) scale(1.08);
}

.contact-text-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.contact-channels a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.contact-channels a:hover {
  opacity: 1;
  transform: translateY(-1px);
  text-decoration: underline;
}

/* ==========================================================================
   INNER PAGES (Sobre PERUMIN / Sobre el IIMP / Cumbre Minera / Foro TIS)
   Shared components used by the 4 secondary pages. Each page's own hero photo
   collage ("Image" 845x563 + the cargo-plane photo) is visible:false in the
   source file on all 4 frames — the real hero is the gradient band + text.
   ========================================================================== */

/* ---- Page hero: gradient band + photo background + breadcrumb + title + optional CTA ---- */
.page-hero {
  position: relative;
  border-radius: 0 0 28px 28px;
  padding-top: 80px;
  padding-bottom: 72px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.page-hero.hero-cumbre {
  background: linear-gradient(90deg, #004f59 0%, #004f59 38%, rgba(0, 79, 89, 0.88) 55%, rgba(0, 79, 89, 0.45) 100%),
              url('../assets/img/hero-cumbre-bg.jpg') center/cover no-repeat;
}
.page-hero.hero-tis {
  background: linear-gradient(90deg, #ba0c2f 0%, #ba0c2f 38%, rgba(186, 12, 47, 0.88) 55%, rgba(186, 12, 47, 0.45) 100%),
              url('../assets/img/hero-tis-bg.jpg') center/cover no-repeat;
}
.page-hero.hero-iimp {
  background: linear-gradient(90deg, #004f59 0%, #004f59 38%, rgba(0, 79, 89, 0.88) 55%, rgba(0, 79, 89, 0.45) 100%),
              url('../assets/img/hero-iimp-bg.jpg') center/cover no-repeat;
}
.page-hero.hero-PERUMIN {
  background: linear-gradient(90deg, #004f59 0%, #004f59 38%, rgba(0, 79, 89, 0.88) 55%, rgba(0, 79, 89, 0.45) 100%),
              url('../assets/img/hero-perumin-bg.jpg') center/cover no-repeat;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 500;
}
.breadcrumb a {
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
  opacity: 0.8;
}
.breadcrumb .current {
  color: #fff;
  opacity: 1;
  font-weight: 600;
}

.page-hero .title {
  font-family: Arial, Helvetica, "Roboto", sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.page-hero .subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 24px);
  margin: 0 0 24px;
  opacity: 0.95;
  color: #fff;
}
.page-hero .hero-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  padding: 13px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 18px;
}
.page-hero .hero-cta:hover {
  background: #ffffff;
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.page-hero.hero-tis .hero-cta:hover {
  color: #ba0c2f;
}

/* ---- Text highlight utilities ---- */
.highlight-teal { color: var(--teal); }
.highlight-red { color: #ba0c2f; }
.highlight-gold { color: #f2a900; }
.highlight-orange { color: #cb6015; }
.highlight-cyan { color: #B2C9CD }

/* ---- Intro block: photo + heading + body copy ---- */
.intro-block {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.25fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}
.intro-block.reverse {
  grid-template-columns: 1.25fr minmax(280px, 1fr);
}
.intro-block.reverse .intro-photo {
  order: 2;
}
.intro-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.intro-photo:hover {
  transform: scale(1.02);
}
.intro-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-copy h2 {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.intro-copy p {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
}
.intro-copy p:last-child {
  margin-bottom: 0;
}

/* ---- Brand decorative tabs & indicators ---- */
.accent-tab-red {
  position: absolute;
  top: 36px;
  right: clamp(24px, 5vw, 80px);
  width: 14px;
  height: 46px;
  background: #b3152f;
  border-radius: 3px;
}
.accent-tab-teal {
  position: absolute;
  top: 36px;
  right: clamp(24px, 5vw, 80px);
  width: 14px;
  height: 46px;
  background: #004f59;
  border-radius: 3px;
}
.accent-tab-yellow {
  position: absolute;
  bottom: 0;
  right: clamp(24px, 8vw, 140px);
  width: 52px;
  height: 20px;
  background: #f2a900;
  border-radius: 4px 4px 0 0;
}
.accent-tab-red-left {
  width: 14px;
  height: 46px;
  background: #b3152f;
  border-radius: 3px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.committee-layout-v2 > div:first-child {
  position: relative;
}

@media (min-width: 993px) {
  .members-grid-v2 .member-card-maldonado {
    grid-column: 1;
    margin-left: 26px;
    max-width: calc(100% - 26px);
  }
  .committee-layout-v2 .accent-tab-red-left {
    position: absolute;
    left: 0;
    bottom: 115px;
    margin: 0;
  }
}
.section-tabs {
  display: flex;
  gap: 8px;
  margin: 12px 0 44px;
}
.tab-pill-white {
  width: 44px;
  height: 6px;
  background: #ffffff;
  border-radius: 999px;
}
.tab-pill-grey {
  width: 44px;
  height: 6px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.tab-pill-dark {
  width: 44px;
  height: 6px;
  background: #737b7d;
  border-radius: 999px;
}
.tab-pill-light {
  width: 44px;
  height: 6px;
  background: #d8dddd;
  border-radius: 999px;
}

/* ---- +1000 ASISTENTES Section (Cumbre Minera) ---- */
.asistentes-section {
  background: linear-gradient(180deg, #f4f8f8 0%, #edf4f4 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.asistentes-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.asistentes-stat .big-number {
  font-size: clamp(64px, 8vw, 115px);
  font-weight: 800;
  color: var(--teal);
  line-height: 0.88;
  margin: 0;
  letter-spacing: -0.03em;
}
.asistentes-stat .big-number-label {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 800;
  color: var(--ink);
  margin: 12px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
.asistentes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.asistente-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 79, 89, 0.04);
}
.asistente-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 79, 89, 0.12);
}
.asistente-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.asistente-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.asistente-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

/* ---- COMMITTEE SECTIONS (Dark Teal / Crimson / Light) ---- */
.committee-dark-teal {
  background: linear-gradient(135deg, #004f59 0%, #00363d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.committee-dark-teal .section-heading {
  color: #fff;
}

.committee-crimson {
  background: linear-gradient(135deg, #ba0c2f 0%, #87071f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.committee-crimson .section-heading {
  color: #fff;
}

.committee-light {
  background: #f7f9f9;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.committee-light .section-heading {
  color: var(--ink);
}

.committee-layout-v2 {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.committee-layout-v2.reverse {
  grid-template-columns: 1.35fr 1.15fr;
}

/* Lead portrait with diamond backdrop */
.lead-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-backdrop-diamond {
  position: absolute;
  width: 72%;
  aspect-ratio: 1/1;
  border-radius: 40px;
  transform: rotate(45deg);
  z-index: 1;
}
.lead-backdrop-diamond.bg-teal-shield {
  background: linear-gradient(135deg, rgba(82, 140, 147, 0.45) 0%, rgba(38, 97, 104, 0.6) 100%);
}
.lead-backdrop-diamond.bg-red-shield {
  background: linear-gradient(135deg, rgba(235, 144, 144, 0.45) 0%, rgba(200, 70, 70, 0.6) 100%);
}
.lead-backdrop-diamond.bg-tan-shield {
  background: linear-gradient(135deg, rgba(222, 193, 148, 0.5) 0%, rgba(196, 151, 86, 0.6) 100%);
}
.lead-backdrop-diamond.bg-grey-shield {
  background: linear-gradient(135deg, rgba(210, 222, 224, 0.5) 0%, rgba(180, 198, 200, 0.6) 100%);
}
.lead-portrait-wrap {
  position: relative;
  z-index: 2;
  width: 82%;
  max-width: 440px;
  line-height: 0;
  display: block;
}
.lead-portrait-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.lead-badge-float {
  position: absolute;
  z-index: 3;
  left: 72.45%;
  top: 80.6%;
  transform: translate(-50%, -50%);
  width: 22%;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lead-badge-float img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.lead-title-block {
  margin-top: 18px;
}
.lead-title-block h3 {
  font-size: clamp(26px, 2.6vw, 42px);
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.15;
}
.lead-title-block .role-lead {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  margin: 0 0 6px;
  opacity: 0.95;
}
.lead-title-block .role-sub {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.4;
  margin: 0;
}

/* Committee Member Grid V2 */
.members-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.members-grid-v2.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 580px;
}
.member-card-v2 {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.member-card-v2:hover {
  transform: translateY(-6px);
}
.member-thumb-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  aspect-ratio: 1/1;
  position: relative;
}
.member-thumb-wrap.bg-teal-tab {
  background: #3d7980;
}
.member-thumb-wrap.bg-red-tab {
  background: #e89090;
}
.member-thumb-wrap.bg-grey-tab {
  background: #d4e0e2;
}
.member-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-info-v2 {
  padding: 12px 4px 4px;
}
.member-info-v2 h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.25;
}
.committee-dark-teal .member-info-v2 h4,
.committee-crimson .member-info-v2 h4 {
  color: #fff;
}
.committee-light .member-info-v2 h4 {
  color: var(--ink);
}
.member-info-v2 .role-main {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  opacity: 0.9;
}
.committee-dark-teal .member-info-v2 .role-main,
.committee-crimson .member-info-v2 .role-main {
  color: rgba(255, 255, 255, 0.9);
}
.committee-light .member-info-v2 .role-main {
  color: var(--muted-2);
}
.member-info-v2 .role-sub {
  font-size: 11px;
  line-height: 1.35;
  margin: 0;
  opacity: 0.7;
}
.committee-dark-teal .member-info-v2 .role-sub,
.committee-crimson .member-info-v2 .role-sub {
  color: rgba(255, 255, 255, 0.75);
}
.committee-light .member-info-v2 .role-sub {
  color: var(--muted-2);
}

/* ---- SCHEDULE CARDS V2 ---- */
.schedule-section-v2 {
  padding: 70px 0;
  background: #ffffff;
}
.schedule-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.schedule-card-v2 {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.schedule-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}
.schedule-top-v2 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.schedule-badge-v2 {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.schedule-badge-v2.teal {
  background: #528c93;
}
.schedule-badge-v2.red {
  background: #e89090;
}
.schedule-badge-v2 img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.schedule-date-col {
  display: flex;
  flex-direction: column;
}
.schedule-date-col .day-name {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}
.schedule-card-v2.theme-teal .day-name {
  color: var(--ink);
}
.schedule-card-v2.theme-red .day-name {
  color: #ba0c2f;
}
.schedule-date-col .day-number {
  font-size: 52px;
  font-weight: 800;
  line-height: 0.9;
  margin: 2px 0 0;
  letter-spacing: -0.03em;
}
.schedule-card-v2.theme-teal .day-number {
  color: var(--teal);
}
.schedule-card-v2.theme-red .day-number {
  color: #ba0c2f;
}
.schedule-card-v2 .event-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.schedule-card-v2 .event-time {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.schedule-card-v2.theme-teal .event-time {
  color: var(--teal);
}
.schedule-card-v2.theme-red .event-time {
  color: #ba0c2f;
}

/* ---- PILLARS SECTION (Foro TIS) ---- */
.pillars-section {
  padding: 80px 0;
  background: #f7f9f9;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(186, 12, 47, 0.12);
}
.pillar-badge {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #95171a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pillar-badge img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.pillar-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}
.pillar-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- TIS TRACKS & METRICS SECTION (Foro TIS) ---- */
.tis-tracks-section {
  padding: 80px 0;
  background: #f7f9f9;
}
.tis-tracks-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.tis-metrics-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tis-metric-pill {
  background: #ba0c2f;
  color: #fff;
  border-radius: 18px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 6px 18px rgba(186, 12, 47, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tis-metric-pill:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(186, 12, 47, 0.35);
}
.tis-metric-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding-right: 16px;
  flex-shrink: 0;
}
.tis-metric-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.tis-metric-text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tis-metric-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}
.tis-metric-label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
}

.tis-tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tis-track-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.tis-track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}
.tis-track-badge {
  background: #95171a;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  padding: 6px 32px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: inline-block;
}
.tis-track-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

/* ---- MANIFESTO SECTION (Sobre el IIMP) ---- */
.manifesto-section {
  background: #c49756;
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.manifesto-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.manifesto-copy h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.manifesto-copy p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 0 18px;
}
.btn-descargar-carta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.3s ease;
}
.btn-descargar-carta:hover {
  background: #ffffff;
  color: #c49756;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.manifesto-signature {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.manifesto-signature .author-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
}

.manifesto-signature .author-role {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ---- REGIONAL INTEGRATION SECTION (Sobre PERUMIN) ---- */
.regional-section {
  background: var(--teal);
  color: #ffffff;
  padding: 90px 0 70px;
  position: relative;
  text-align: center;
}
.regional-section h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 28px;
  max-width: 900px;
  line-height: 1.18;
}
.regional-section p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  max-width: 960px;
  margin: 0 auto 22px;
}

/* Legacy aliases for backward compatibility */
.inner-section + .inner-section { border-top: 1px solid var(--hairline); }
.inner-section.tinted { background: #f7f9f9; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Header only: the 7-item nav + login + signup pill is the widest fixed-content
   row on the site. Above 1024px it stays as one line (no hamburger), so give
   it a bit less side padding than the rest of the page in the tightest part
   of that range to avoid the row overflowing before the hamburger kicks in. */
@media (min-width: 1025px) and (max-width: 1320px) {
  .site-header .container { padding-inline: 24px; }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--side-pad);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    gap: 16px;
  }
  .main-nav.open { display: flex; }
  
  .main-nav .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    font-size: 17px;
    color: var(--ink);
  }

  .main-nav .nav-chevron {
    font-size: 13px;
    margin-right: 8px;
    color: var(--muted);
  }

  .main-nav .has-dropdown.dropdown-open .nav-chevron {
    color: var(--teal);
  }

  .main-nav .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: #003b44;
    border-radius: 6px;
    box-shadow: none;
    padding: 0;
    margin: 4px 0 6px 0;
    transform: none;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                padding 0.35s ease;
    pointer-events: none;
    width: 100%;
    min-width: 0;
  }

  .main-nav .dropdown-menu::before {
    display: none;
  }

  .main-nav .has-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 250px;
    padding: 6px 0;
    pointer-events: auto;
  }

  .main-nav .dropdown-menu li a {
    font-size: 15px !important;
    padding: 10px 16px !important;
  }
  .header-account .login-link { display: none; }
  .menu-toggle { display: flex; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .mosaic-item, .m-01, .m-02, .m-03, .m-04, .m-05, .m-06 {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
  .mosaic-item.tall { aspect-ratio: 4/5; }

  .signup-grid { grid-template-columns: 1fr 1fr; }
  .signup-photo, .card-auspiciador, .card-separa, .card-recibe, .card-media {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .card-recibe { grid-column: 1 / span 2 !important; }

  .revive-grid { grid-template-columns: 1fr; }
  .decorative-circle-photo { display: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .funfact .container { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .funfact .stat:nth-child(odd) { border-left: none; }
  .funfact .stat:nth-child(1), .funfact .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 16px; }

  /* inner pages responsive */
  .intro-block, .intro-block.reverse { grid-template-columns: 1fr; }
  .intro-block .intro-photo, .intro-block.reverse .intro-photo { order: -1; }
  .asistentes-layout { grid-template-columns: 1fr; }
  .committee-layout-v2, .committee-layout-v2.reverse { grid-template-columns: 1fr; }
  .lead-stage { max-width: 440px; margin-inline: auto; margin-bottom: 32px; }
  .members-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .tis-tracks-layout { grid-template-columns: 1fr; }
  .tis-tracks-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-layout { grid-template-columns: 1fr; }
  .manifesto-layout .lead-stage { margin-top: 36px; }
  .committee-layout { grid-template-columns: 1fr; }
  .committee-lead { max-width: 420px; margin-inline: auto; }
  .committee-grid { grid-template-columns: repeat(2, 1fr); }
  .attend-tags { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-tiles { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .logo img { height: 34px; }
  .btn-signup { padding: 10px 16px; }
  .hero-mascot-widget { margin: 16px; transform: scale(0.85); transform-origin: bottom right; }
  .hero-search-card { flex-direction: column; align-items: stretch; margin-top: -32px; padding: 24px; gap: 16px; }
  .search-divider { display: none; }
  .search-item { width: 100%; }
  .search-cta { align-self: center; width: 100%; height: 48px; border-radius: 8px; }

  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .funfact .container { grid-template-columns: 1fr; }
  .funfact .stat { border: none !important; padding-bottom: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.15) !important; padding-block: 12px; }
  .funfact .stat:last-child { border-bottom: none !important; }

  .signup-grid { grid-template-columns: 1fr; }
  .signup-photo, .card-auspiciador, .card-separa, .card-recibe, .card-media, .card-media { grid-column: 1 !important; }

  .section-head-row { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .contactanos-card { flex-direction: column; align-items: flex-start; }

  .hero-bottom-bar { display: none; }

  /* inner pages responsive */
  .page-hero { border-radius: 0 0 16px 16px; padding-top: 64px; padding-bottom: 40px; }
  .asistentes-grid { grid-template-columns: 1fr; }
  .members-grid-v2 { grid-template-columns: 1fr; }
  .schedule-grid-v2 { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .tis-tracks-grid { grid-template-columns: 1fr; }
  .committee-grid { grid-template-columns: 1fr; }
  .attend-tags { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .purpose-grid { grid-template-columns: 1fr; }
  .stats-tiles { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .committee-lead .lead-badge, .lead-badge-float { display: none; }
}
