/* ================================
   RESET Y BASE
================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7B68AE;
  --purple-dark: #5C4F8A;
  --purple-deep: #3D3065;
  --purple-light: #EDE8F7;
  --purple-mid: #C8BEE8;
  --text: #2C2C2C;
  --text-light: #555555;
  --white: #FFFFFF;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(92, 79, 138, 0.12);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   NAV
================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 12px rgba(92, 79, 138, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-icon i {
  color: #fff;
  font-size: 17px;
}

.nav-logo {
  height: 45px;
  width: auto;
}

.nav-brand-name {
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  color: var(--purple-dark);
  font-weight: 700;
  display: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.nav-links a.active::after {
  width: 80%;
  opacity: 1;
}

.nav-links .btn-nav.active {
  background: var(--purple-dark);
}

.nav-links .btn-nav::after {
  display: none;
}

.nav-links .btn-nav {
  background: var(--purple);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 11px;
}

.nav-links .btn-nav:hover {
  background: var(--purple-dark);
  color: #fff;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-dark);
  margin: 5px 0;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--purple-light);
  padding: 16px 20px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--purple-light);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.open {
  display: block;
}

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 320px;
  background: var(--purple);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner_home.webp');
  background-size: cover;
  background-position: 50% 40%;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 79, 138, 0.8) 0%, rgba(123, 104, 174, 0.6) 100%);
  z-index: 1;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hero-bg::before {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
}

.hero-bg::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
}

.hero-placeholder-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
}

.hero-placeholder-img i {
  font-size: 160px;
  color: #fff;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  padding: 60px 24px;
}

.hero-overlay h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 46px;
  color: #fff;
  line-height: 1.15;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.5px;
}

/* ================================
   SECCIONES GENERALES
================================ */
.section {
  padding: 60px 0;
  overflow: hidden;
}

.section-light {
  background: #fff;
}

.section-lavender {
  background: var(--purple-light);
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--purple-deep);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title.script {
  font-family: 'Dancing Script', cursive;
  font-size: 34px;
  font-weight: 700;
}

.section-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 560px;
}

/* Alineación de texto en secciones específicas */
#nosotros .section-body,
#fundadora .section-body,
#enfoque .section-body,
#casas .section-body {
  text-align: left;
}


/* ================================
   BOTONES
================================ */
.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 20px;
}

.btn {
  background: var(--purple-dark);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
}

.btn:hover {
  background: var(--purple);
}

.btn-outline {
  border: 2px solid var(--purple-dark);
  color: var(--purple-dark);
  padding: 10px 26px;
  border-radius: 4px;
}

.btn-outline:hover {
  background: var(--purple-dark);
  color: #fff;
}

/* ================================
   PLACEHOLDERS DE IMAGEN
================================ */
.img-ph {
  width: 100%;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple) 100%);
  box-shadow: var(--shadow);
}

.img-ph i {
  color: rgba(255, 255, 255, 0.55);
}

/* ================================
   ABOUT
================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.about-card {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(123, 104, 174, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123, 104, 174, 0.1);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(123, 104, 174, 0.2);
}

.about-card img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

/* ================================
   FOUNDER
================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.founder-image.img-ph {
  aspect-ratio: 3 / 4;
  max-height: 340px;
}

.founder-image.img-ph i {
  font-size: 55px;
}

/* ================================
   MISION
================================ */
.mission-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.mission-inner .section-body {
  margin: 0 auto;
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(123, 104, 174, 0.35);
}

.mission-icon i {
  color: #fff;
  font-size: 26px;
}

/* ================================
   ENFOQUE
================================ */
.enfoque-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.enfoque-image.img-ph {
  aspect-ratio: 4 / 3;
}

.enfoque-image.img-ph i {
  font-size: 60px;
}

/* ================================
   EQUIPO
================================ */
.team-intro {
  text-align: center;
  margin-bottom: 36px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.team-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: var(--purple-light);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

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

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(92, 79, 138, 0.98) 0%,
    rgba(123, 104, 174, 0.85) 40%,
    rgba(123, 104, 174, 0.3) 100%
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.team-overlay h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 900;
}

.team-desc-container {
  display: none; /* Already in Modal, hidden in card */
}

.team-description {
  display: none;
}

.btn-ver-mas {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-ver-mas:hover {
  background: #fff;
  color: var(--purple-dark);
}

/* ================================
   CASAS REFUGIO
================================ */
.casas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.casas-image.img-ph {
  aspect-ratio: 4 / 3;
}

.casas-image.img-ph i {
  font-size: 60px;
}

/* Podcast Section */
.podcast-intro {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(123, 104, 174, 0.1);
}

.podcast-intro .section-title {
  margin-bottom: 24px;
}

.podcast-intro .section-body {
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}

.podcast-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-podcast {
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--purple-mid);
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 4px 12px rgba(92, 79, 138, 0.08);
}

.btn-podcast:hover {
  background: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(123, 104, 174, 0.15);
}

.btn-podcast.spotify:hover { color: #1DB954; border-color: #1DB954; }
.btn-podcast.youtube:hover { color: #FF0000; border-color: #FF0000; }
.btn-podcast.facebook:hover { color: #1877F2; border-color: #1877F2; }


/* ================================
   APOYAR
================================ */
.apoyar-inner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.apoyar-inner .section-body {
  margin: 0 auto;
}

.apoyar-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.apoyar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.apoyar-card-btn {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.apoyar-card-btn:hover {
  transform: translateY(-10px);
}

.apoyar-card-btn:hover .apoyar-card {
  background: var(--purple-light);
  border-color: var(--purple-mid);
  box-shadow: 0 15px 35px rgba(123, 104, 174, 0.2);
}

.apoyar-card-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.apoyar-card-icon i {
  font-size: 20px;
  color: var(--purple);
}

.apoyar-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 6px;
}

.apoyar-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================
   UBICACIÓN
 ================================ */
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.ubicacion-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ubicacion-address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 18px;
  color: var(--purple-deep);
  line-height: 1.5;
}

.ubicacion-address i {
  color: var(--purple);
  font-size: 24px;
  margin-top: 4px;
}

.ubicacion-socials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ubicacion-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.ubicacion-social-link:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-5px);
}

/* ================================
   DIVIDER
 ================================ */
.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--purple-mid), transparent);
}

/* ================================
   FOOTER
================================ */
footer {
  background: var(--purple-deep);
  color: #fff;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon i {
  font-size: 15px;
}

.footer-logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col ul li i {
  font-size: 12px;
  color: var(--purple-mid);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--purple);
  color: #fff;
}

.social-links a i {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .fa-heart {
  color: var(--purple-mid);
}

/* ================================
   MODAL EQUIPO
 ================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 48, 101, 0.45);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: var(--purple);
  color: #fff;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr;
}

.modal-image-container {
  height: 450px;
  background: var(--purple-light);
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-body {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
}

@media (min-width: 768px) {
  .modal-body {
    flex-direction: row;
  }
  
  .modal-image-container {
    flex: 0 0 40%;
    height: auto;
  }
  
  .modal-text-container {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.modal-text-container {
  padding: 40px;
}

.modal-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.modal-text-container h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--purple-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}

.modal-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.no-scroll {
  overflow: hidden;
}

/* ================================
   HELP CTA BANNER
================================ */
.section-help-cta {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-help-cta::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--purple-mid);
  opacity: 0.1;
  border-radius: 50%;
}

.help-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
}

.help-cta-steps-container {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.help-cta-step {
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(92, 79, 138, 0.08);
  border: 1px solid var(--purple-mid);
  max-width: 400px;
  text-align: left;
}

.help-cta-step .step-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.help-cta-step i {
  color: var(--purple);
  font-size: 16px;
}

.help-cta-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.help-cta-text p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.btn-help {
  background: var(--purple);
  color: #fff;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 104, 174, 0.3);
}

.btn-help:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(123, 104, 174, 0.4);
}

/* ================================
   METODO LIST
================================ */
.metodo-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.metodo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  text-align: justify;
}


.metodo-list li i {
  color: var(--purple);
  margin-top: 3px;
}

.metodo-text {
  flex: 1;
}

.metodo-desc {
  display: inline;
}


/* ================================
   DONATIVOS SECTION
================================ */
.donativos-info {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.donativos-info .section-tag,
.donativos-info .section-title {
  text-align: center;
}

.donativos-info .section-body {
  margin: 0 auto;
  text-align: center;
}

.donativos-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.method-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--purple-mid);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-card i {
  font-size: 30px;
  color: var(--purple);
  margin-bottom: 15px;
}

.method-card h4 {
  color: var(--purple-deep);
  margin-bottom: 10px;
  font-size: 18px;
}

.method-card p {
  font-size: 14px;
  color: var(--text-light);
}

.donativos-extra {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-weight: 700;
  color: var(--purple-dark);
}

.donativos-extra i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .help-cta-content {
      padding: 0 10px;
  }
  
  .btn-help {
      font-size: 14px;
      padding: 14px 24px;
      width: 100%;
  }

  .donativos-extra {
      flex-direction: column;
      gap: 15px;
      align-items: center;
  }
}

@media (max-width: 991px) {
  .modal-body {
    grid-template-columns: 0.8fr 1.2fr;
  }
  
  .modal-image-container {
    height: 100%;
  }
}

/* ================================
   RESPONSIVE TABLET
 ================================ */
@media (min-width: 640px) {
  .hero-overlay h1 {
    font-size: 58px;
  }

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

  .founder-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .enfoque-grid {
    grid-template-columns: 1.5fr 1fr;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

/* ================================
   RESPONSIVE DESKTOP
================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 90px 0;
  }

  .nav-brand-name {
    display: block;
  }

  .nav-links {
    display: flex !important;
  }

  .hero {
    min-height: 480px;
  }

  .hero-overlay {
    min-height: 480px;
    padding: 80px 24px;
  }

  .hero-overlay h1 {
    font-size: 76px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-title.script {
    font-size: 42px;
  }

  .section-body {
    font-size: 15px;
  }

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

/* ================================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 639px) {
  .section {
    padding: 40px 0;
  }

  .hero {
    min-height: 260px;
  }

  .hero-overlay {
    min-height: 260px;
    padding: 40px 20px;
  }

  .hero-overlay h1 {
    font-size: 36px;
  }

  .hero-badges {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .nav-brand-name {
    display: block;
    font-size: 15px;
  }

  .section-title {
    font-size: 21px;
  }

  .section-title.script {
    font-size: 28px;
  }

  .section-body {
    font-size: 13px;
    text-align: left;
  }

  .metodo-list li {
    text-align: left;
  }

  .metodo-desc {
    display: block;
    margin-top: 2px;
  }



  .apoyar-cards {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Team Grid adjustments for mobile (2 columns) */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card {
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 16px;
  }
  
  .team-card img {
    object-position: center 15%;
  }

  /* Make overlay static on mobile since hover isn't reliable */
  .team-card .team-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 12px;
    background: linear-gradient(to top, rgba(61, 48, 101, 0.9) 0%, rgba(123, 104, 174, 0.35) 100%);
  }

  .team-overlay h4 {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .btn-ver-mas {
    padding: 5px 12px;
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  /* Modal adjustments for mobile */
  .modal {
    padding: 10px;
  }

  .modal-content {
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
  }

  .modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-image-container {
    height: 500px;
    flex-shrink: 0;
  }
  
  .modal-image-container img {
    object-position: center 15%;
  }

  .modal-text-container {
    padding: 24px 20px;
  }

  .modal-text-container h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .modal-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
}

/* ================================
   ANIMACIONES DE REVELADO (SCROLL REVEAL)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


