*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #111316;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2ecc8f;
  margin-bottom: 8px;
}
.text-accent-orange {
  color: #f06a1a;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}
.text-accent-green {
  color: #2ecc8f;
}
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn--outline {
  border: 1.5px solid #ffffff;
  color: #ffffff;
}
.btn--outline:hover {
  background: #ffffff;
  color: #111316;
  transform: translateY(-2px);
}
.btn--green {
  background: #2ecc8f;
  color: #ffffff;
}
.btn--green:hover {
  background: #1fa870;
  transform: translateY(-2px);
}
.btn--dark {
  background: #111316;
  color: #ffffff;
}
.btn--dark:hover {
  background: #1a1e24;
  transform: translateY(-2px);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #e8eaf0 0%, #d0d4de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px dashed #bfc4cf;
}
.img-placeholder--map {
  min-height: 100%;
  background: linear-gradient(135deg, #c8f0e2 0%, #a8d8c8 100%);
  border-color: #8ac4b0;
  color: #3a7a60;
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.7) 0%, transparent 100%);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
#site-header.scrolled {
  background: rgba(17, 19, 22, 0.96);
  backdrop-filter: blur(14px);
  padding: 12px 48px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav__cta {
  background: #2ecc8f;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav__cta:hover {
  background: #1fa870;
  transform: translateY(-2px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .nav__toggle {
    display: flex;
  }
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}
.nav__toggle span:nth-child(2) {
  width: 70%;
}
.nav__toggle:hover span:nth-child(2) {
  width: 100%;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
}
.logo-mark--sm {
  width: 44px;
  height: 44px;
}
.logo-diamond {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  opacity: 0.9;
}
.logo-diamond--orange {
  background: #f06a1a;
  top: 0;
  left: 0;
}
.logo-diamond--purple {
  background: #5b3fcf;
  top: 8px;
  left: 8px;
}
.logo-diamond--green {
  background: #2ecc8f;
  top: 16px;
  left: 16px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: #ffffff;
}
.logo-text span {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.85;
}
.logo-text strong {
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.nav-drawer[aria-hidden="false"] {
  pointer-events: auto;
}
.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-drawer[aria-hidden="false"] .nav-drawer__backdrop {
  opacity: 1;
}
.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 85vw);
  height: 100%;
  background: #111316;
  display: flex;
  flex-direction: column;
  padding: 64px 48px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.4);
}
.nav-drawer[aria-hidden="false"] .nav-drawer__panel {
  transform: translateX(0);
}
.nav-drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.nav-drawer__close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}
.nav-drawer__menu {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer__link {
  display: block;
  padding: 20px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
}
.nav-drawer__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #2ecc8f;
  border-radius: 2px;
  transition: height 0.25s ease;
}
.nav-drawer__link:hover {
  color: #ffffff;
  padding-left: 14px;
}
.nav-drawer__link:hover::before {
  height: 60%;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 14, 20, 0.85) 0%, rgba(10, 14, 20, 0.5) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 100%;
}
.hero__content {
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero__col2 {}
.hero__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero__heading--accent {
  color: #2ecc8f;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #2ecc8f);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.nosotros {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nosotros__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nosotros__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.nosotros__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(10, 14, 20, 0.7) 0%, rgba(10, 14, 20, 0.4) 100%);
  z-index: 1;
}
.nosotros__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 90vh;
}
.nosotros__heading {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 28px;
}
.nosotros__list {
  list-style: none;
  margin-bottom: 28px;
}
.nosotros__list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 6px 0 6px 20px;
  position: relative;
  border-left: 2px solid #2ecc8f;
  padding-left: 16px;
  margin-bottom: 8px;
}
.nosotros__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  line-height: 1.7;
}
.glass-card {
  background: rgba(20, 26, 34, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 48px;
  max-width: 520px;
}
.socios {
  background: #ffffff;
  padding: 100px 0;
}
.section-header {
  margin-bottom: 56px;
}
.socios__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #5b3fcf;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 20px;
}
.heading-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #2ecc8f, transparent);
  display: block;
}
.socios__table {
  border: none;
  border-radius: 0;
  overflow: visible;
}
.socio-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  border-bottom: 1px solid #d1d5db;
  transition: background 0.25s ease;
}
.socio-row:first-child {
  border-top: 1px solid #d1d5db;
}
.socio-row:last-child {
  border-bottom: 1px solid #d1d5db;
}
.socio-row:hover {
  background: #f5f6f8;
}
.socio-row__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 32px 28px 0;
  border-right: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}
.socio-row__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.socio-row__list {
  padding: 24px 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.socio-row__list li {
  font-size: 0.9rem;
  color: #374151;
  padding-left: 14px;
  position: relative;
}
.socio-row__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #2ecc8f;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}
/* ===== PROYECTOS ===== */
.proyectos {
  background: #ffffff;
  padding: 100px 0;
}
.proyectos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  min-height: 560px;
}
/* Left: slider */
.proyectos__slider-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proyectos__vertical-label {
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.proyectos__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  background: #1a1e24;
}
.proyectos__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.proyectos__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.proyectos__slide.active {
  opacity: 1;
}
.proyectos__counter {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}
.proyectos__counter-current {
  color: #ffffff;
  font-weight: 700;
}
.proyectos__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.proyectos__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.proyectos__dot.active,
.proyectos__dot:hover {
  background: #f06a1a;
  transform: scale(1.25);
}
/* Right: content */
.proyectos__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.proyectos__heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #111316;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.proyectos__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proyectos__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #d1d5db;
}
.proyectos__item:first-child {
  border-top: 1px solid #d1d5db;
}
.proyectos__item p {
  font-size: 0.82rem;
  font-weight: 600;
  color: #111316;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
  padding-top: 4px;
}
/* bullet wrapper: "+" with stacked orange dot */
.proyectos__bullet {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.proyectos__plus {
  font-size: 2rem;
  font-weight: 200;
  color: #111316;
  line-height: 1;
  display: block;
}
.proyectos__dot-orange {
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f06a1a;
}
/* ===== INICIATIVAS ACTIVAS ===== */
.iniciativas {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}
/* Background map image */
.iniciativas__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.iniciativas__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Dark overlay with slight teal tint */
.iniciativas__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 28, 0.72);
}
/* Inner grid over background */
.iniciativas__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 700px;
  box-sizing: border-box;
}
/* Left: text */
.iniciativas__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.iniciativas__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.iniciativas__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}
.iniciativas__title em {
  font-style: italic;
  font-weight: 400;
}
.iniciativas__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  padding-left: 20px;
  border-left: 3px solid #2ecc8f;
  margin: 0;
}
/* Right: floating white card */
.iniciativas__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.iniciativas__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.iniciativas__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(91, 63, 207, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.iniciativas__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111316;
  line-height: 1.4;
  margin: 0;
}
.iniciativas__card-desc {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.iniciativas__card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5b3fcf;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-color: #5b3fcf;
  text-transform: uppercase;
  transition: color 0.25s ease;
  margin-top: 8px;
}
.iniciativas__card-link:hover {
  color: #7b62e8;
}
/* ===== FOOTER ===== */
.footer {
  background: #ffffff;
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e5e7eb;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.footer__logo-text span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #374151;
}
.footer__logo-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111316;
}
.footer__contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2ecc8f;
  margin-bottom: 10px;
}
.footer__email {
  display: block;
  font-size: 0.95rem;
  color: #111316;
  margin-bottom: 20px;
  transition: color 0.25s ease;
}
.footer__email:hover {
  color: #2ecc8f;
}
.footer__social {
  display: flex;
  gap: 24px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: #111316;
  font-weight: 400;
  transition: color 0.25s ease;
}
.footer__social-link svg {
  flex-shrink: 0;
}
.footer__social-link:hover {
  color: #2ecc8f;
}
.footer__subscribe-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2ecc8f;
  margin-bottom: 24px;
}
.footer__form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.footer__label {
  font-size: 0.9rem;
  color: #111316;
  font-weight: 400;
}
.footer__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.25s ease;
  background: #ffffff;
  color: #111316;
  box-sizing: border-box;
}
.footer__input::placeholder {
  color: #9ca3af;
}
.footer__input:focus {
  border-color: #111316;
}
.footer__textarea {
  resize: vertical;
  min-height: 52px;
}
.footer__form-msg {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 20px;
}
.footer__form-msg.success {
  color: #2ecc8f;
}
.footer__form-msg.error {
  color: #e53e3e;
}
.footer__bottom {
  padding: 24px 0;
  text-align: left;
  font-size: 0.82rem;
  color: #6b7280;
}
.btn--dark {
  background: #111316;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.btn--dark:hover {
  background: #2a2f38;
}
/* .social-link (icon style) removed — footer uses .footer__social-link text links */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.nav-desktop {
  position: fixed;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: none;
}
@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }
}
.nav-desktop__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
}
.nav-desktop__item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-desktop__item:hover,
.nav-desktop__item.active {
  opacity: 1;
}
.nav-desktop__item:hover .nav-desktop__dot,
.nav-desktop__item.active .nav-desktop__dot {
  background: #676767;
}
.nav-desktop__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #676767;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-desktop__dot {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1.5px solid #676767;
  transition: background 0.25s ease;
}
/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  .iniciativas__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 28px;
  }
  .iniciativas__right {
    justify-content: center;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nosotros__content {
    grid-template-columns: 1fr;
    padding: 72px 28px;
    min-height: auto;
  }
}

/* =============================================
   RESPONSIVE — 768px (tablets / mobile)
   ============================================= */
@media (max-width: 768px) {
  /* Header */
  #site-header {
    padding: 14px 20px;
  }
  #site-header.scrolled {
    padding: 10px 20px;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .hero__col2 {
    display: none;
  }
  .hero__content {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero__heading {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 28px;
  }

  /* Container padding */
  .container {
    padding: 0 20px;
  }

  /* Nosotros */
  .nosotros__content {
    grid-template-columns: 1fr;
    padding: 64px 20px;
    min-height: auto;
  }
  .glass-card {
    padding: 28px 20px;
  }

  /* Socios */
  .socios {
    padding: 64px 0;
  }
  .socios__heading {
    font-size: 1.6rem;
  }
  .socios__table .socio-row {
    grid-template-columns: 1fr;
  }
  .socio-row__cat {
    border-right: none;
    border-bottom: 1px solid #d1d5db;
    padding: 16px 20px;
  }
  .socio-row__list {
    padding: 12px 20px 20px;
  }

  /* Proyectos */
  .proyectos {
    padding: 64px 0;
  }
  .proyectos__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }
  .proyectos__vertical-label {
    display: none;
  }
  .proyectos__heading {
    font-size: 1.6rem;
  }
  .proyectos__item {
    padding: 20px 0;
  }

  /* Iniciativas */
  .iniciativas__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 20px;
  }
  .iniciativas__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .iniciativas__card {
    padding: 32px 24px;
    max-width: 100%;
  }

  /* Footer */
  .footer {
    padding: 56px 0 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer__logo {
    margin-bottom: 32px;
  }
  .footer__bottom {
    padding: 16px 0;
  }

  /* Nav drawer */
  .nav-drawer__panel {
    padding: 56px 28px;
  }
  .nav-drawer__link {
    font-size: 1.1rem;
    padding: 16px 0;
  }

  /* Side nav: hide on mobile */
  .nav-desktop {
    display: none !important;
  }
}

/* =============================================
   RESPONSIVE — 480px (small phones)
   ============================================= */
@media (max-width: 480px) {
  /* Hero */
  .hero__inner {
    padding: 0 16px;
  }
  .hero__heading {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Nosotros */
  .nosotros__content {
    padding: 56px 16px;
  }
  .glass-card {
    padding: 24px 16px;
  }

  /* Socios */
  .socios__inner {
    padding: 56px 16px;
  }
  .socios__heading {
    font-size: 1.4rem;
  }
  .socio-row__cat {
    padding: 14px 16px;
  }
  .socio-row__list {
    padding: 10px 16px 18px;
  }

  /* Proyectos */
  .proyectos {
    padding: 56px 0;
  }
  .proyectos__inner {
    padding: 0 16px;
    gap: 28px;
  }
  .proyectos__heading {
    font-size: 1.4rem;
  }
  .proyectos__content {
    gap: 24px;
  }

  /* Iniciativas */
  .iniciativas__inner {
    padding: 52px 16px;
  }
  .iniciativas__card {
    padding: 28px 20px;
  }
  .iniciativas__title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }
  .footer__logo-img {
    height: 52px;
  }
  .footer__logo-text strong {
    font-size: 0.92rem;
  }
  .footer__social {
    flex-direction: column;
    gap: 12px;
  }
  .footer__input {
    width: 100%;
  }
}
