﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: #1A2340;
  background-color: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

.Container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .Container {
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .Container {
    padding: 0 48px;
  }
}

.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.Btn--Primary {
  background: #1565C0;
  color: #FFFFFF;
  border-color: #1565C0;
}
.Btn--Primary:hover {
  background: #0D47A1;
  border-color: #0D47A1;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(13, 71, 161, 0.18);
}
.Btn--Light {
  background: #FFFFFF;
  color: #1565C0;
  border-color: #FFFFFF;
}
.Btn--Light:hover {
  background: #BBDEFB;
  border-color: #BBDEFB;
  transform: translateY(-2px);
}
.Btn--Outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}
.Btn--Outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}
.Btn--Gold {
  background: #FFB300;
  color: #1A2340;
  border-color: #FFB300;
}
.Btn--Gold:hover {
  background: rgb(204, 143.2, 0);
  border-color: rgb(204, 143.2, 0);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 179, 0, 0.35);
}

.Section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .Section {
    padding: 100px 0;
  }
}
.Section--Blue {
  background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
  color: #FFFFFF;
}
.Section--Soft {
  background-color: #F5F7FB;
}

.SectionHeader {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.SectionHeader--Light .SectionHeader__Tag {
  background: rgba(255, 255, 255, 0.2);
  color: #BBDEFB;
}
.SectionHeader--Light .SectionHeader__Title {
  color: #FFFFFF;
}
.SectionHeader--Light .SectionHeader__Desc {
  color: rgba(255, 255, 255, 0.75);
}
.SectionHeader--Left {
  text-align: left;
  margin-left: 0;
}
.SectionHeader__Tag {
  display: inline-block;
  background: #E3F2FD;
  color: #1565C0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.SectionHeader__Title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #1A2340;
  line-height: 1.2;
  margin-bottom: 16px;
}
.SectionHeader__Desc {
  font-size: 17px;
  color: #546E7A;
  line-height: 1.7;
}

.Navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 71, 161, 0.08);
  transition: box-shadow 0.35s ease;
}
.Navbar.IsScrolled {
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.1);
}
.Navbar__Container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .Navbar__Container {
    padding: 0 32px;
  }
}
.Navbar__Logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.Navbar__LogoSvg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.Navbar__LogoText {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 13px;
  color: #546E7A;
  line-height: 1.3;
  display: none;
}
.Navbar__LogoText strong {
  display: block;
  font-size: 15px;
  color: #0D47A1;
  font-weight: 700;
}
@media (min-width: 480px) {
  .Navbar__LogoText {
    display: block;
  }
}
.Navbar__Toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.Navbar__Toggle:hover {
  background: #E3F2FD;
}
.Navbar__Toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0D47A1;
  border-radius: 2px;
  transition: all 0.35s ease;
}
@media (min-width: 1024px) {
  .Navbar__Toggle {
    display: none;
  }
}
.Navbar__Toggle.IsOpen span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.Navbar__Toggle.IsOpen span:nth-child(2) {
  opacity: 0;
}
.Navbar__Toggle.IsOpen span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.Navbar__Menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(13, 71, 161, 0.1);
  padding: 20px;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.12);
}
.Navbar__Menu.IsOpen {
  display: flex;
}
@media (min-width: 1024px) {
  .Navbar__Menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 4px;
    align-items: center;
  }
}
.Navbar__Link {
  font-size: 14px;
  font-weight: 500;
  color: #546E7A;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.Navbar__Link:hover {
  color: #1565C0;
  background: #E3F2FD;
}
.Navbar__Link--Cta {
  background: #1565C0;
  color: #FFFFFF !important;
  border-radius: 50px;
  padding: 10px 22px;
  margin-left: 8px;
}
.Navbar__Link--Cta:hover {
  background: #0D47A1 !important;
  color: #FFFFFF;
}

.Hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 20px 80px;
  background: linear-gradient(160deg, #0D47A1 0%, #1976D2 50%, #42A5F5 100%);
  overflow: hidden;
}
.Hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.Hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.Hero__Overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #FFFFFF);
  pointer-events: none;
}
.Hero__Content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  animation: FadeInUp 0.8s ease both;
}
.Hero__Tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #BBDEFB;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 28px;
}
.Hero__Title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.Hero__Title em {
  font-style: italic;
  color: #42A5F5;
}
.Hero__Subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.Hero__Actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .Hero__Actions {
    flex-direction: row;
    justify-content: center;
  }
}
.Hero__Scroll {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .Hero__Scroll {
    display: none;
  }
}
.Hero__ScrollLine {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: ScrollPulse 2s ease-in-out infinite;
}

.MisionVision {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .MisionVision {
    grid-template-columns: 1fr 1fr;
  }
}
.MisionVision__Card {
  padding: 40px;
  border-radius: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.MisionVision__Card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(13, 71, 161, 0.18);
}
.MisionVision__Card--Mision {
  background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
  color: #FFFFFF;
}
.MisionVision__Card--Mision h3 {
  color: #BBDEFB;
}
.MisionVision__Card--Mision p {
  color: rgba(255, 255, 255, 0.85);
}
.MisionVision__Card--Vision {
  background: #E3F2FD;
  color: #1A2340;
  border: 2px solid #BBDEFB;
}
.MisionVision__Card--Vision h3 {
  color: #0D47A1;
}
.MisionVision__Card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin: 16px 0 12px;
}
.MisionVision__Card p {
  font-size: 15px;
  line-height: 1.75;
}
.MisionVision__Icon {
  width: 48px;
  height: 48px;
  color: #42A5F5;
}
.MisionVision__Icon svg {
  width: 100%;
  height: 100%;
}

.Valores {
  background: #F5F7FB;
  border-radius: 20px;
  padding: 40px;
}
.Valores__Title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  color: #0D47A1;
  text-align: center;
  margin-bottom: 32px;
}
.Valores__Grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.Valor__Item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 2px solid #BBDEFB;
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.2s ease;
  cursor: default;
}
.Valor__Item:hover {
  background: #1565C0;
  border-color: #1565C0;
}
.Valor__Item:hover .Valor__Name {
  color: #FFFFFF;
}
.Valor__Item:hover .Valor__Dot {
  background: #FFFFFF;
}

.Valor__Dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42A5F5;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.Valor__Name {
  font-size: 14px;
  font-weight: 600;
  color: #0D47A1;
  transition: color 0.2s ease;
}

.ObjetivoGeneral {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .ObjetivoGeneral {
    flex-direction: column;
  }
}
.ObjetivoGeneral__Icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}
.ObjetivoGeneral__Icon svg {
  width: 100%;
  height: 100%;
}
.ObjetivoGeneral__Content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: #BBDEFB;
  margin-bottom: 12px;
}
.ObjetivoGeneral__Content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.ObjetivosEspecificos__Title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.ObjetivosEspecificos__Grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ObjetivosEspecificos__Grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .ObjetivosEspecificos__Grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ObjetivoCard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.35s ease, background 0.35s ease;
}
.ObjetivoCard:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}
.ObjetivoCard__Num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #42A5F5;
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 14px;
}
.ObjetivoCard p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.Servicios__Grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .Servicios__Grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .Servicios__Grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ServicioCard {
  background: #FFFFFF;
  border: 1px solid rgba(13, 71, 161, 0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.ServicioCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1565C0, #42A5F5);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.ServicioCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(13, 71, 161, 0.18);
  border-color: #BBDEFB;
}
.ServicioCard:hover::before {
  transform: scaleX(1);
}
.ServicioCard:hover .ServicioCard__Icon {
  color: #1565C0;
}
.ServicioCard__Icon {
  width: 48px;
  height: 48px;
  color: #42A5F5;
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.ServicioCard__Icon svg {
  width: 100%;
  height: 100%;
}
.ServicioCard h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  color: #0D47A1;
  margin-bottom: 12px;
}
.ServicioCard p {
  font-size: 14px;
  color: #546E7A;
  line-height: 1.7;
}

.LineasPoblacion {
  display: grid;
  gap: 60px;
}
@media (min-width: 1024px) {
  .LineasPoblacion {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.LineasAtencion__List {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.LineaItem {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #BBDEFB;
}
.LineaItem:last-child {
  border-bottom: none;
}
.LineaItem__Dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1565C0;
  margin-top: 6px;
  box-shadow: 0 0 0 4px #E3F2FD;
}
.LineaItem strong {
  display: block;
  font-size: 15px;
  color: #0D47A1;
  margin-bottom: 4px;
}
.LineaItem p {
  font-size: 14px;
  color: #546E7A;
  line-height: 1.6;
}

.Poblacion__Cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .Poblacion__Cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.PoblacionCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 2px solid #BBDEFB;
  border-radius: 12px;
  padding: 24px 16px;
  transition: all 0.35s ease;
}
.PoblacionCard:hover {
  border-color: #1565C0;
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.1);
}
.PoblacionCard__Emoji {
  font-size: 32px;
  margin-bottom: 10px;
}
.PoblacionCard strong {
  font-size: 14px;
  color: #0D47A1;
  margin-bottom: 4px;
}
.PoblacionCard span {
  font-size: 12px;
  color: #546E7A;
}

.Compromiso {
  display: grid;
  gap: 60px;
}
@media (min-width: 1024px) {
  .Compromiso {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}
.Compromiso__Text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 16px;
}
.Compromiso__List {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Compromiso__List li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
}
.Compromiso__List li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #42A5F5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10 L8 13 L15 7' stroke='%2342A5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.CompromisoStats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.CompromisoStat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.35s ease;
}
.CompromisoStat:hover {
  background: rgba(255, 255, 255, 0.16);
}
.CompromisoStat__Num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #42A5F5;
  line-height: 1;
  margin-bottom: 8px;
}
.CompromisoStat__Label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.Programas__Grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .Programas__Grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .Programas__Grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ProgramaCard {
  background: #FFFFFF;
  border: 1px solid rgba(13, 71, 161, 0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s ease;
}
.ProgramaCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(13, 71, 161, 0.18);
  border-color: #BBDEFB;
}
.ProgramaCard__Header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ProgramaCard__Header h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  color: #0D47A1;
}
.ProgramaCard__Badge {
  background: #E3F2FD;
  color: #1565C0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}
.ProgramaCard p {
  font-size: 14px;
  color: #546E7A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ProgramaCard__Meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #E3F2FD;
}
.ProgramaCard__Meta span {
  font-size: 13px;
  color: #1565C0;
  font-weight: 500;
}

.Galeria__Grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 220px;
}
@media (min-width: 768px) {
  .Galeria__Grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}

.GaleriaItem {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #BBDEFB;
}
.GaleriaItem--Grande {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 768px) {
  .GaleriaItem--Grande {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.GaleriaItem--Ancha {
  grid-column: span 2;
}
.GaleriaItem__Placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #BBDEFB 0%, #E3F2FD 100%);
  color: #1565C0;
  transition: transform 0.35s ease;
}
.GaleriaItem:hover .GaleriaItem__Placeholder {
  transform: scale(1.03);
}
.GaleriaItem__Inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.GaleriaItem__Inner svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}
.GaleriaItem__Inner span {
  font-size: 13px;
  color: #1976D2;
  opacity: 0.7;
  text-align: center;
  padding: 0 16px;
}
.GaleriaItem__Caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(13, 71, 161, 0.85), transparent);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.GaleriaItem:hover .GaleriaItem__Caption {
  transform: translateY(0);
}

.Galeria__Note {
  margin-top: 24px;
  font-size: 13px;
  color: #546E7A;
  text-align: center;
}
.Galeria__Note code {
  background: #E3F2FD;
  color: #1565C0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.Aliados__Grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .Aliados__Grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .Aliados__Grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.AliadoCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 1px solid #BBDEFB;
  border-radius: 12px;
  transition: all 0.35s ease;
  text-align: center;
}
.AliadoCard:hover {
  border-color: #1565C0;
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.1);
  transform: translateY(-3px);
}
.AliadoCard:hover .AliadoCard__Logo {
  color: #1565C0;
}
.AliadoCard__Logo {
  width: 100%;
  max-width: 100px;
  color: #546E7A;
  transition: color 0.2s ease;
}
.AliadoCard__Logo svg {
  width: 100%;
}
.AliadoCard__Tipo {
  font-size: 11px;
  font-weight: 600;
  color: #546E7A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.Aliados__Note {
  margin-top: 24px;
  font-size: 13px;
  color: #546E7A;
  text-align: center;
}
.Aliados__Note code {
  background: #E3F2FD;
  color: #1565C0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.Donaciones {
  position: relative;
  background: linear-gradient(135deg, #0D47A1 0%, #0A3875 60%, #1976D2 100%);
  color: #FFFFFF;
}
.Donaciones::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(66, 165, 245, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
}
.Donaciones__Overlay {
  display: none;
}
.Donaciones__Content {
  position: relative;
  z-index: 1;
}
.Donaciones__Options {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .Donaciones__Options {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.Donaciones__Garantia {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.DonacionOption {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}
.DonacionOption:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.DonacionOption--Destacada {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFB300;
  box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.3);
}
.DonacionOption__Badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFB300;
  color: #1A2340;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.DonacionOption__Icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.DonacionOption h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.DonacionOption p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.Garantia__Item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.Garantia__Item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #42A5F5;
}

.Footer {
  background: #1A2340;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}
.Footer__Grid {
  display: grid;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .Footer__Grid {
    grid-template-columns: 2fr 1fr 2fr 2fr;
    gap: 40px;
  }
}
.Footer__Brand h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: #FFFFFF;
  margin: 16px 0 12px;
}
.Footer__Brand p {
  font-size: 14px;
  line-height: 1.7;
}
.Footer__Logo {
  width: 52px;
  height: 52px;
}
.Footer__Nav h4 {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.Footer__Nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Footer__Nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.Footer__Nav a:hover {
  color: #42A5F5;
}
.Footer__Contacto h4 {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.Footer__Contacto ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.Footer__Contacto li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.Footer__Contacto li svg {
  width: 18px;
  height: 18px;
  color: #42A5F5;
  flex-shrink: 0;
  margin-top: 2px;
}
.Footer__Donacion h4 {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.Footer__Donacion p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.Footer__Bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.Footer__Bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 768px) {
  .Footer__Bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.BackToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #1565C0;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s ease;
  pointer-events: none;
}
.BackToTop.IsVisible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.BackToTop:hover {
  background: #0D47A1;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(13, 71, 161, 0.18);
}
.BackToTop svg {
  width: 20px;
  height: 20px;
}

@keyframes FadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ScrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
.RevealItem {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.RevealItem.IsVisible {
  opacity: 1;
  transform: translateY(0);
}
