/* ANEPA — Modern stylesheet 2026 */

:root {
  --c-blue: #1d3b8e;
  --c-blue-dark: #0f1f5e;
  --c-blue-50: #eef2ff;
  --c-green: #a4d233;
  --c-green-dark: #88b228;
  --c-ink: #0f172a;
  --c-text: #334155;
  --c-muted: #64748b;
  --c-line: #e5e7eb;
  --c-bg: #ffffff;
  --c-bg-soft: #f8fafc;
  --c-bg-dark: #0b1437;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 4px 12px rgba(15, 23, 42, .08), 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, .14), 0 24px 60px rgba(15, 23, 42, .12);

  --container: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--c-ink);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--c-blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-blue-dark); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Header (dark) ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(8, 14, 40, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 14, 40, .92);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.site-header__logo { display: flex; align-items: center; gap: 12px; }
.site-header__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(164, 210, 51, .25));
}
.site-header__logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .02em;
}
.site-header__logo-text small {
  display: block;
  font-size: .58rem;
  font-weight: 500;
  color: var(--c-green);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 320px;
}
@media (max-width: 760px) {
  .site-header__logo-text small { display: none; }
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  font-size: .92rem;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: color .2s var(--ease);
}
.site-nav a:not(.cta)::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--c-green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:not(.cta):hover { color: #fff; }
.site-nav a:not(.cta):hover::after,
.site-nav a:not(.cta).active::after { transform: scaleX(1); }
.site-nav a.cta {
  background: var(--c-green);
  color: var(--c-ink);
  margin-left: 8px;
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(164, 210, 51, .3);
}
.site-nav a.cta:hover { background: #b6e54a; color: var(--c-ink); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  color: #fff;
}
.menu-toggle svg { display: block; width: 22px; height: 22px; }

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 14, 40, .98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .28s var(--ease);
    z-index: 99;
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a { padding: 14px; border-radius: 10px; font-size: 1rem; display: block; }
  .site-nav a:not(.cta)::after { display: none; }
  .site-nav a.cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
  line-height: 1;
}
.btn--primary { background: var(--c-blue); color: #fff; box-shadow: 0 8px 20px rgba(29, 59, 142, .3); }
.btn--primary:hover { background: var(--c-blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(29, 59, 142, .35); }
.btn--accent { background: var(--c-green); color: var(--c-ink); box-shadow: 0 8px 20px rgba(164, 210, 51, .3); }
.btn--accent:hover { background: var(--c-green-dark); color: var(--c-ink); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn--outline { background: transparent; color: var(--c-blue); border: 1.5px solid var(--c-blue); }
.btn--outline:hover { background: var(--c-blue); color: #fff; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 96px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(164, 210, 51, .22), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(29, 59, 142, .25), transparent 60%),
    linear-gradient(180deg, #060b25 0%, #0b1437 50%, #112360 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../Img/new/hero-aerea.jpg');
  background-size: cover;
  background-position: center;
  opacity: .08;
  z-index: 0;
  filter: saturate(.6);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, .08) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
  animation: dotsDrift 30s linear infinite;
}
@keyframes dotsDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 280px 280px; }
}

/* Floating glow blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero__blob--1 { width: 380px; height: 380px; background: var(--c-green); top: -120px; right: -60px; animation-delay: -2s; }
.hero__blob--2 { width: 320px; height: 320px; background: #4f7dff; bottom: -100px; left: -80px; animation-delay: -7s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -25px) scale(1.05); }
}
.hero > .container { max-width: 1320px; }
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(164, 210, 51, .15);
  color: var(--c-green);
  border: 1px solid rgba(164, 210, 51, .35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--c-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(164,210,51,.2);
  animation: pulseDot 2s ease-in-out infinite;
}
.hero__eyebrow--link {
  text-decoration: none;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__eyebrow--link:hover {
  background: rgba(164, 210, 51, .22);
  border-color: rgba(164, 210, 51, .55);
  color: var(--c-green);
  transform: translateY(-1px);
}
.hero__eyebrow-icon {
  font-size: .7rem;
  margin-left: 4px;
  opacity: .65;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.hero__eyebrow--link:hover .hero__eyebrow-icon {
  transform: translate(2px, -2px);
  opacity: 1;
}

.hero__pitch {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  padding: 12px 18px 12px 12px;
  background: linear-gradient(135deg, rgba(164, 210, 51, .14) 0%, rgba(164, 210, 51, .04) 100%);
  border: 1px solid rgba(164, 210, 51, .32);
  border-radius: 14px;
  max-width: 540px;
}
.hero__pitch-icon {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--c-green);
  color: var(--c-ink);
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(164, 210, 51, .35);
}
.hero__pitch-text {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: .92rem;
  line-height: 1.45;
}
.hero__pitch-text strong {
  color: var(--c-green);
  font-weight: 600;
}

.hero__countdown {
  margin-bottom: 26px;
  max-width: 540px;
}
.hero__countdown-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-green);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero__countdown .countdown {
  margin: 0;
  gap: 8px;
}
.hero__countdown .countdown__cell {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 14px 8px;
}
.hero__countdown .countdown__cell::before {
  background: linear-gradient(180deg, rgba(164, 210, 51, .14), transparent 70%);
}
.hero__countdown .countdown__num {
  color: #fff;
}
.hero__countdown .countdown__label {
  color: rgba(255, 255, 255, .6);
}

@media (max-width: 960px) {
  .hero__pitch { margin-left: auto; margin-right: auto; }
  .hero__countdown { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .hero__pitch { display: flex; text-align: left; }
  .hero__countdown .countdown { gap: 6px; }
  .hero__countdown .countdown__cell { padding: 12px 4px; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(164,210,51,.2); }
  50%      { box-shadow: 0 0 0 8px rgba(164,210,51,.05); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.3vw, 3.5rem);
  letter-spacing: -.025em;
  line-height: 1.08;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #c9ec5a 0%, #88b228 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero__sub {
  color: rgba(255, 255, 255, .82);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 22px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .9);
}
.hero__meta-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  color: var(--c-green);
}
.hero__meta-icon i { font-size: 1.1rem; }
.hero__meta-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.hero__meta-value { font-weight: 600; font-size: .98rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(closest-side, rgba(164,210,51,.28), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero__video {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .06);
  background: #000;
  border: 1px solid rgba(255, 255, 255, .12);
  transform: rotate(-1deg);
  transition: transform .6s var(--ease);
}
.hero__video.is-playing { transform: rotate(0deg); }
.hero__video:hover { transform: rotate(0deg); }

.hero__video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero__video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(164, 210, 51, .95);
  color: var(--c-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(164, 210, 51, .45), 0 0 0 8px rgba(164, 210, 51, .15);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease);
  z-index: 2;
}
.hero__video-play::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(164, 210, 51, .35);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.18); opacity: 0; }
}
.hero__video-play svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  margin-left: 4px;
}
.hero__video-play:hover {
  background: #b6e54a;
  transform: scale(1.06);
  box-shadow: 0 18px 50px rgba(164, 210, 51, .55), 0 0 0 12px rgba(164, 210, 51, .2);
}
.hero__video.is-playing .hero__video-play {
  opacity: 0;
  pointer-events: none;
  transform: scale(.6);
}

.hero__video-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(8, 14, 40, .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .92);
  z-index: 2;
  transition: opacity .25s var(--ease);
}
.hero__video-tag i { color: var(--c-green); }
.hero__video.is-playing .hero__video-tag { opacity: 0; pointer-events: none; }

@media (max-width: 960px) {
  .hero__video { max-width: 100%; transform: none; }
  .hero__video-play { width: 78px; height: 78px; }
  .hero__video-play svg { width: 30px; height: 30px; }
}
@media (max-width: 480px) {
  .hero__video-play { width: 64px; height: 64px; }
  .hero__video-play svg { width: 24px; height: 24px; }
  .hero__video-tag { left: 12px; bottom: 12px; font-size: .7rem; padding: 6px 10px; }
}

@media (max-width: 960px) {
  .hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__meta { justify-content: center; }
  .hero__cta { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__flyer img { max-height: 460px; transform: none; }
}

/* ============ Section base ============ */
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-bg-dark); color: rgba(255, 255, 255, .85); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  background: var(--c-blue-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--dark .section__eyebrow { color: var(--c-green); background: rgba(164, 210, 51, .12); }
.section__sub {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}
.section--dark .section__sub { color: rgba(255, 255, 255, .7); }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
}

/* ============ About ============ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.about__intro {
  background: linear-gradient(140deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.about__intro h2,
.about__intro h3,
.about__intro h4 { color: #fff; }
.about__intro p { color: rgba(255, 255, 255, .85); }
.about__intro::before {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--c-green);
  border-radius: 4px;
  margin-bottom: 24px;
}

.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-card--wide { grid-column: 1 / -1; }
.about-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.about-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--c-blue-50);
  color: var(--c-blue);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.about-card:nth-child(1) .about-card__icon { background: rgba(164,210,51,.18); color: var(--c-green-dark); }
.about-card:nth-child(2) .about-card__icon { background: #fff7e6; color: #d97706; }
.about-card:nth-child(3) .about-card__icon { background: var(--c-blue-50); color: var(--c-blue); }
.about-card:nth-child(4) .about-card__icon { background: #f3e8ff; color: #7c3aed; }
.about-card:nth-child(5) .about-card__icon { background: #fee2e2; color: #b91c1c; }
.about-card h3 { margin-bottom: 8px; }
.about-card p { color: var(--c-muted); margin: 0; font-size: .95rem; }

.about__video {
  grid-column: 1 / -1;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.about__video iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__intro { position: static; padding: 32px; }
  .about__cards { grid-template-columns: 1fr; }
}

/* ============ Congress ============ */
.congress {
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(164, 210, 51, .12), transparent 70%),
    radial-gradient(800px 600px at 0% 100%, rgba(29, 59, 142, .08), transparent 70%),
    var(--c-bg-soft);
}
.congress__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.congress__flyer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.congress__flyer img { width: 100%; display: block; }

.congress__content h2 .accent { color: var(--c-green-dark); }
.congress__lead {
  font-size: 1.1rem;
  color: var(--c-text);
  margin-bottom: 28px;
}

.congress__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.detail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.detail-card--link { text-decoration: none; color: inherit; cursor: pointer; }
.detail-card--link:hover { border-color: rgba(29, 59, 142, .25); }
.detail-card--link .detail-card__value { color: var(--c-ink); }
.detail-card__ext { font-size: .7rem; margin-left: 4px; opacity: .55; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.detail-card--link:hover .detail-card__ext { opacity: 1; transform: translate(2px, -2px); }
.detail-card__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-blue);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.detail-card__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); margin-bottom: 4px; font-weight: 600; }
.detail-card__value { font-weight: 600; color: var(--c-ink); font-size: 1rem; }

.congress__pitch {
  margin: 28px 0 18px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(164, 210, 51, .14) 0%, rgba(29, 59, 142, .08) 100%);
  border: 1px solid rgba(164, 210, 51, .35);
  border-radius: var(--radius);
  color: var(--c-ink);
  font-size: 1rem;
  line-height: 1.5;
}
.congress__pitch strong { color: var(--c-blue); font-weight: 600; }

.congress__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Map */
.congress__map {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--c-line);
}
.congress__map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.congress__map-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  background: var(--c-blue-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.congress__map-title {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--c-ink);
}
.congress__map-sub {
  margin: 0;
  color: var(--c-muted);
  font-size: .95rem;
  max-width: 640px;
}
.congress__map-cta { flex: none; }

.congress__map-frame {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
}
.congress__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 760px) {
  .congress__map-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .congress__map-frame { height: 320px; }
  .congress__map { margin-top: 48px; padding-top: 40px; }
  .congress__map-cta { width: 100%; justify-content: center; }
}
.congress__partners {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}
.partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 40px; }
.partners-row span { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--c-muted); font-weight: 600; }
.partners-row strong { color: var(--c-ink); font-weight: 600; }

@media (max-width: 960px) {
  .congress__grid { grid-template-columns: 1fr; gap: 40px; }
  .congress__flyer { max-width: 460px; margin: 0 auto; }
  .congress__details { grid-template-columns: 1fr; }
}

/* ============ Directiva ============ */
.directiva__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.member {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.member:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .07); border-color: rgba(164, 210, 51, .4); }
.member__photo {
  width: 130px; height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(164, 210, 51, .5);
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__name { color: #fff; font-weight: 600; font-size: 1.05rem; margin: 0 0 4px; }
.member__role {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-green);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1100px) { .directiva__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .directiva__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) {
  .directiva__grid { grid-template-columns: 1fr; }
  .member__photo { width: 110px; height: 110px; }
}

/* ============ Socios ============ */
.socios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.socio {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  min-height: 180px;
}
.socio:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(29, 59, 142, .25); }
.socio__logo {
  height: 80px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  width: 100%;
}
.socio__logo img {
  max-height: 80px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter .3s var(--ease);
}
.socio__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}
.socio__city {
  font-size: .78rem;
  color: var(--c-muted);
  margin: 0;
}

/* ============ Galeria ============ */
.gallery {
  background: #0b1437;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: #1a2347;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 20, 55, .7) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--full { grid-column: 1 / -1; height: 280px; }

@media (max-width: 960px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--big { grid-column: span 2; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--big { grid-column: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 32, .95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }

/* ============ Contacto ============ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
.contact__info {
  background: linear-gradient(155deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__info h3 { color: #fff; margin-bottom: 8px; }
.contact__info p { color: rgba(255,255,255,.82); }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  color: var(--c-green);
  font-size: 1.05rem;
}
.contact-item__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; opacity: .7; margin-bottom: 4px; }
.contact-item__value { font-weight: 500; color: #fff; word-break: break-word; }
.contact-item__value a { color: #fff; }
.contact-item__value a:hover { color: var(--c-green); }

.contact__socials { display: flex; gap: 12px; margin-top: 8px; }
.contact__socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.05rem;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.contact__socials a:hover { background: var(--c-green); color: var(--c-ink); transform: translateY(-3px); }

.contact__form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form h3 { margin-bottom: 0; }
.contact__form p { color: var(--c-muted); margin: 0 0 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--c-ink); }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  color: var(--c-ink);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 59, 142, .12);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 760px) {
  .contact__grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .contact__info, .contact__form { padding: 28px; }
}

/* ============ Footer ============ */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand h4 { color: #fff; }
.footer__brand p { font-size: .92rem; color: rgba(255, 255, 255, .65); }
.footer__col h5 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255, 255, 255, .7); font-size: .92rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--c-green); }
.footer__col i { width: 16px; margin-right: 8px; opacity: .5; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer__credit:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .95);
  transform: translateY(-2px);
}
.footer__credit span {
  font-size: .76rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.footer__credit img {
  height: 32px;
  width: auto;
  opacity: .85;
  transition: opacity .25s var(--ease);
}
.footer__credit:hover img { opacity: 1; }

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 0 24px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 18px; }
  .footer__credit { width: auto; }
}

/* ============ Floating WhatsApp ============ */
.fab-wsp {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .25s var(--ease);
  font-size: 1.6rem;
}
.fab-wsp:hover { transform: scale(1.08); color: #fff; }

/* ============ Hero scroll indicator ============ */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--c-green), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 960px) { .hero__scroll { display: none; } }

/* ============ Stats strip ============ */
.stats {
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.stats__inner {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  box-shadow: 0 30px 60px rgba(11, 20, 55, .14), 0 12px 24px rgba(11, 20, 55, .08);
  position: relative;
  overflow: hidden;
}
.stats__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 50% 0%, rgba(164, 210, 51, .12), transparent 70%);
  pointer-events: none;
}
.stat {
  text-align: center;
  padding: 8px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 14%; bottom: 14%;
  width: 1px;
  background: var(--c-line);
}
.stat__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--c-blue) 0%, var(--c-blue-dark) 100%);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(29, 59, 142, .25);
  flex: none;
}
.stat:nth-child(2) .stat__icon { background: linear-gradient(140deg, #2952d1 0%, #1d3b8e 100%); }
.stat:nth-child(3) .stat__icon { background: linear-gradient(140deg, #b6e54a 0%, var(--c-green-dark) 100%); color: var(--c-ink); box-shadow: 0 8px 18px rgba(164, 210, 51, .35); }
.stat:nth-child(4) .stat__icon { background: linear-gradient(140deg, #88b228 0%, #5b8516 100%); }
.stat__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.stat__sub {
  font-size: .85rem;
  color: var(--c-muted);
  line-height: 1.4;
  max-width: 220px;
}
@media (max-width: 760px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; gap: 16px; }
  .stat + .stat::before { display: none; }
  .stat { padding: 16px 8px; }
  .stat__title { font-size: .98rem; }
  .stat__sub { font-size: .78rem; }
}
@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr; }
  .stat { flex-direction: row; text-align: left; gap: 16px; padding: 12px 8px; border-bottom: 1px solid var(--c-line); }
  .stat:last-child { border-bottom: none; }
  .stat__icon { width: 44px; height: 44px; font-size: 1.05rem; }
  .stat__sub { max-width: none; }
}

/* ============ Countdown ============ */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}
.countdown__cell {
  background: linear-gradient(150deg, #fff 0%, #f8fafc 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(164,210,51,.08), transparent 60%);
  pointer-events: none;
}
.countdown__num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 6px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-muted);
  font-weight: 600;
}

/* ============ Socios marquee ============ */
.socios-marquee {
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.socios-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.socios-marquee__track:hover { animation-play-state: paused; }
.socios-marquee .socio {
  width: 200px;
  flex: none;
  min-height: 160px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Member overlay polish ============ */
.member__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 20, 55, .7) 100%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.member:hover .member__photo::after { opacity: 1; }
.member__photo img { transition: transform .5s var(--ease); }
.member:hover .member__photo img { transform: scale(1.06); }

/* Section dark — directiva — pattern bg */
#directiva.section--dark {
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(164, 210, 51, .12), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(29, 59, 142, .35), transparent 60%),
    var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}
#directiva.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
}
#directiva > .container { position: relative; z-index: 1; }

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__blob, .hero::after, .socios-marquee__track { animation: none !important; }
  .hero__flyer img { transform: none !important; }
}

/* ============ Small phones ≤ 480px ============ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .site-header__logo-text { font-size: .95rem; }
  .site-header__logo-text small { font-size: .6rem; letter-spacing: .1em; }
  .site-header__logo img { height: 38px; }

  .hero { padding: calc(var(--header-h) + 24px) 0 48px; }
  .hero__sub { font-size: .98rem; }
  .hero__meta { flex-direction: column; gap: 14px; align-items: stretch; }
  .hero__meta-item { justify-content: flex-start; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__flyer img { max-height: 380px; }

  .stats { margin-top: -40px; }
  .stats__inner { padding: 20px 12px; gap: 4px; }
  .stat__num { font-size: 1.7rem; }
  .stat__label { font-size: .68rem; letter-spacing: .08em; }

  .section__head { margin-bottom: 32px; }
  .section { padding: 56px 0; }

  .about__intro { padding: 24px; }
  .about-card { padding: 22px; }
  .about__video { margin-top: 32px; }

  .congress__details { gap: 12px; }
  .detail-card { padding: 16px; gap: 12px; }
  .detail-card__icon { width: 38px; height: 38px; font-size: .9rem; }
  .countdown { gap: 8px; }
  .countdown__cell { padding: 14px 4px; }
  .countdown__num { font-size: 1.5rem; }
  .countdown__label { font-size: .6rem; letter-spacing: .1em; }
  .congress__cta { flex-direction: column; align-items: stretch; }
  .congress__cta .btn { justify-content: center; }

  .partners-row { flex-direction: column; gap: 12px; text-align: center; }

  .socios__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .socio { padding: 16px 10px; min-height: 160px; }
  .socio__logo { height: 64px; margin-bottom: 10px; }
  .socio__logo img { max-height: 64px; }
  .socio__name { font-size: .78rem; }
  .socio__city { font-size: .72rem; }

  .contact__info, .contact__form { padding: 24px 20px; border-radius: var(--radius); }
  .contact-item__icon { width: 38px; height: 38px; font-size: .9rem; }
  .contact__socials a { width: 38px; height: 38px; }

  .fab-wsp { width: 52px; height: 52px; right: 16px; bottom: 16px; font-size: 1.4rem; }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Tablet refinement: keep things breathable */
@media (min-width: 481px) and (max-width: 760px) {
  .container { padding: 0 22px; }
  .hero__cta .btn { padding: 12px 18px; font-size: .9rem; }
  .countdown__cell { padding: 16px 6px; }
}
