/* ============================================
   CAMINEMOS JUNTOS - REDESIGN
   Paleta de colores basada en #eaa33a
   ============================================ */

/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
  /* Colores principales */
  --primary-color: #eaa33a;
  --primary-dark: #d18b1f;
  --primary-light: #f4c57d;
  --secondary-color: #2c3e50;
  --secondary-dark: #1a252f;
  --accent-color: #e67e22;

  /* Colores de fondo */
  --bg-light: #fef5e7;
  --bg-white: #ffffff;
  --bg-cream: #fdf8f0;

  /* Colores de texto */
  --text-dark: #1a252f;
  --text-gray: #5a6c7d;
  --text-light: #8b9aa8;

  /* Colores de estado */
  --success-color: #27ae60;
  --info-color: #3498db;
  --warning-color: #f39c12;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(234, 163, 58, 0.08);
  --shadow-md: 0 4px 16px rgba(234, 163, 58, 0.12);
  --shadow-lg: 0 8px 32px rgba(234, 163, 58, 0.16);
  --shadow-xl: 0 16px 48px rgba(234, 163, 58, 0.2);

  /* Tipografía */
  --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "Merriweather", Georgia, serif;

  /* Espaciado */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  z-index: 1000;
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.navbar-brand:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.logo {
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  font-weight: 500;
  color: var(--text-gray);
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
  background-color: var(--bg-light);
}

.nav-link.active::after {
  width: 60%;
}

.btn-donate {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.carousel {
  width: 100%;
  height: 100vh;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(234, 163, 58, 0.85) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.hero-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  font-weight: 700;
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(234, 163, 58, 0.4);
  transition: var(--transition-base);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(234, 163, 58, 0.5);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 700;
  padding: 1.125rem 2.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  opacity: 0.9;
  transition: var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(234, 163, 58, 0.9);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

.carousel-indicators {
  bottom: 3rem;
  margin-bottom: 0;
  gap: 0.75rem;
  display: flex;
  justify-content: center;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: var(--transition-base);
  margin: 0;
}

.carousel-indicators [data-bs-target].active {
  width: 40px;
  border-radius: 6px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(234, 163, 58, 0.5);
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

/* ============================================
   SECTIONS GENERALES
   ============================================ */
section {
  padding: 5rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-label-light {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
  background: var(--bg-cream);
  padding: 6rem 0;
}

/* About Image Styles */
.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: var(--radius-xl);
  top: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.15;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image-decoration {
  top: -25px;
  left: -25px;
  opacity: 0.2;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-base);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.02);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.about-image-badge i {
  font-size: 1.5rem;
}

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

/* About Content Styles */
.about-content {
  padding: 0 1rem;
}

.about-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.highlight-item i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  text-align: center;
  border: 1px solid rgba(234, 163, 58, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon-wrapper {
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   ABUELOS SECTION
   ============================================ */
.section-abuelos {
  background: white;
  padding: 6rem 0;
}

.section-informacion-institucional {
  background: var(--bg-cream);
  padding: 6rem 0;
}

.section-informacion-institucional .section-label {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 1rem;
}

.info-content {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.info-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin: 0;
  text-align: justify;
}

.section-informacion-institucional img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
  width: 100%;
  height: auto;
}

.section-informacion-institucional img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.section-trabajo-social {
  background: var(--bg-cream);
  padding: 6rem 0;
}

.section-trabajo-social .section-label {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 1rem;
}

.section-trabajo-social .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-trabajo-social .section-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 0;
}

.section-trabajo-social img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
}

.section-trabajo-social img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.custom-spinner {
  color: var(--primary-color);
}

.custom-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 4px;
  color: var(--primary-color);
}

.custom-spinner p {
  color: var(--text-gray);
  font-weight: 500;
  margin-top: 1rem;
}

/* ============================================
   GALERÍA SECTION - CAROUSEL
   ============================================ */
.section-galeria {
  background: white;
  padding: 6rem 0;
}

.gallery-carousel-wrapper {
  position: relative;
  padding: 0 60px;
  margin: 0 auto;
  max-width: 1400px;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gallery-item {
  position: relative;
  flex: 0 0 25%;
  min-width: 25%;
  padding: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.gallery-item:hover img {
  box-shadow: var(--shadow-lg);
}

/* Video items en galería */
.gallery-item-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-wrapper {
  height: 100%;
}

.video-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition-base);
  display: block;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-wrapper:hover .video-play-button {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
  color: white;
  font-size: 2.5rem;
  margin-left: 4px;
}

.gallery-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.gallery-carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.gallery-carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-carousel-prev {
  left: 0;
}

.gallery-carousel-next {
  right: 0;
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.gallery-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-carousel-dot:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

.gallery-carousel-dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

/* Lightbox */
#galeria-lightbox .modal-content {
  background: rgba(0, 0, 0, 0.95);
  border: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav i {
  font-size: 1.2rem;
  color: white;
}

/* ============================================
   DONATION SECTION
   ============================================ */
.section-donation {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.donation-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    var(--primary-color) 35px,
    var(--primary-color) 70px
  );
}

.donation-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.donation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.donation-card-featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.donation-card-featured::before {
  height: 6px;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.donation-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.75rem;
  transition: var(--transition-base);
}

.donation-card:hover .donation-card-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.donation-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.donation-card-text {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-donation {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-donation:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
  background: var(--bg-cream);
  padding: 6rem 0;
}

.contact-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(234, 163, 58, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  padding: 0.875rem 1.25rem;
  border: 2px solid #e8ecef;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-base);
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(234, 163, 58, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   TESTIMONIOS SECTION
   ============================================ */
.section-testimonios {
  background: white;
  padding: 6rem 0;
}

.rating-stars {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 1.5rem;
}

.rating-stars .star {
  color: #ddd;
  cursor: pointer;
  transition: var(--transition-fast);
}

.rating-stars .star.active {
  color: var(--primary-color);
}

.rating-stars .star:hover {
  transform: scale(1.2);
}

/* ============================================
   ACCOUNT CARDS - DONACIONES
   ============================================ */
.account-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  border: 1px solid #e8ecef;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.account-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(234, 163, 58, 0.15);
  transform: translateY(-2px);
}

.account-card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.account-title-wrapper {
  flex: 1;
  min-width: 0;
}

.account-title {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.account-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
}

.account-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.account-number-section {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8ecef;
}

.account-number-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-number-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e8ecef;
}

.account-number {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  word-break: break-all;
  line-height: 1.4;
}

.btn-copy {
  padding: 0.4rem 0.75rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.btn-copy:hover {
  background: var(--accent-color);
  transform: scale(1.05);
}

.btn-copy.btn-success {
  background: #28a745;
}

.account-details {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.account-detail-item {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.account-detail-item strong {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-weight: 600;
}

/* QR Image dentro de la card */
.account-qr-section {
  margin: 1rem 0;
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: var(--radius-sm);
}

.account-qr-image {
  max-width: 180px;
  width: 100%;
  height: auto;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  background: white;
  padding: 0.5rem;
  display: block;
  margin: 0 auto;
}

.account-qr-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(234, 163, 58, 0.3);
}

.account-qr-section .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.account-qr-section .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Botón de confirmación WhatsApp en cards de cuenta */
.account-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e8ecef;
}

.account-card .btn-success {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  width: 100%;
}

.account-card .btn-success:hover {
  background: linear-gradient(135deg, #128c7e, #0d6e5f);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  color: white;
}

.account-card .btn-success:active {
  transform: translateY(0);
}

/* Paso 3 - Confirmación */
#paso-3 .card {
  border: 2px solid #28a745;
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.2);
}

.success-icon {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#resumen-donacion {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

#resumen-donacion strong {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .account-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .account-card-header {
    padding: 1rem 1.25rem;
  }
  
  .account-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .account-title {
    font-size: 1rem;
  }
  
  .account-subtitle {
    font-size: 0.8rem;
  }
  
  .account-card-body {
    padding: 1.25rem;
  }
  
  .account-number {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
  
  .account-number-display {
    flex-wrap: wrap;
  }
  
  .btn-copy {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ============================================
   VOLUNTARIOS SECTION
   ============================================ */
.section-voluntarios {
  background: var(--bg-cream);
  padding: 6rem 0;
}

.volunteer-type-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.volunteer-type-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.volunteer-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.volunteer-type-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.volunteer-type-card p {
  color: var(--text-gray);
  margin: 0;
}

.volunteer-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color);
}

.volunteer-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-light);
}

.volunteer-form-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.volunteer-form-header h4 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

/* Nueva sección de voluntarios con imágenes y categorías */
.section-voluntarios-new {
  background: var(--bg-cream);
  padding: 6rem 0;
}

.volunteer-categories-vertical {
  max-width: 1100px;
  margin: 0 auto;
}

.volunteer-category-row {
  margin-bottom: 3rem;
}

.volunteer-category-row:last-child {
  margin-bottom: 0;
}

.volunteer-category-card-horizontal {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: 2px solid transparent;
  position: relative;
  min-height: 400px;
}

.volunteer-category-card-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

/* Alternancia: imagen a la derecha */
.volunteer-category-reverse {
  flex-direction: row-reverse;
}

.volunteer-category-featured-horizontal {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.volunteer-category-featured-horizontal:hover {
  border-color: var(--accent-color);
}

.featured-badge-volunteer-horizontal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volunteer-category-image-horizontal {
  position: relative;
  width: 45%;
  min-height: 400px;
  overflow: hidden;
  flex-shrink: 0;
}

.volunteer-category-image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.volunteer-category-card-horizontal:hover .volunteer-category-image-horizontal img {
  transform: scale(1.08);
}

.volunteer-category-overlay-horizontal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(234, 163, 58, 0.15) 0%, rgba(44, 62, 80, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: var(--transition-base);
}

.volunteer-category-card-horizontal:hover .volunteer-category-overlay-horizontal {
  opacity: 1;
  background: linear-gradient(135deg, rgba(234, 163, 58, 0.25) 0%, rgba(44, 62, 80, 0.85) 100%);
}

.volunteer-category-icon-horizontal {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.volunteer-category-card-horizontal:hover .volunteer-category-icon-horizontal {
  transform: scale(1.15) rotate(-8deg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.volunteer-category-content-horizontal {
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.volunteer-category-title-horizontal {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 1rem;
}

.volunteer-category-title-horizontal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.volunteer-category-description-horizontal {
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.volunteer-category-features-horizontal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.volunteer-category-features-horizontal li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.95rem;
}

.volunteer-category-features-horizontal i {
  color: white;
  background: var(--primary-color);
  font-size: 0.7rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(234, 163, 58, 0.3);
}

/* Estilos antiguos de cards verticales - mantener para compatibilidad */
.volunteer-category-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}

.volunteer-category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.volunteer-category-featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.volunteer-category-featured:hover {
  border-color: var(--accent-color);
}

.volunteer-category-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.volunteer-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.volunteer-category-card:hover .volunteer-category-image img {
  transform: scale(1.1);
}

.volunteer-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(234, 163, 58, 0.1) 0%, rgba(44, 62, 80, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0.9;
  transition: var(--transition-base);
}

.volunteer-category-card:hover .volunteer-category-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(234, 163, 58, 0.2) 0%, rgba(44, 62, 80, 0.9) 100%);
}

.volunteer-category-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2.25rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.volunteer-category-card:hover .volunteer-category-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.volunteer-category-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.volunteer-category-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.volunteer-category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.volunteer-category-description {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.volunteer-category-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.volunteer-category-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.volunteer-category-features li:last-child {
  margin-bottom: 0;
}

.volunteer-category-features i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 20px;
  height: 20px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.volunteer-form-card-new {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-form-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.volunteer-form-header-new {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
}

.volunteer-form-header-new i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.volunteer-form-header-new h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.volunteer-form-header-new p {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin: 0;
}

/* ============================================
   PATROCINADORES SECTION
   ============================================ */
.section-patrocinadores {
  background: white;
  padding: 6rem 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

/* ============================================
   MODALS
   ============================================ */
.modal-content {
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  border-bottom: 2px solid var(--primary-color);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 700;
  color: var(--text-dark);
}

.modal-body {
  padding: 2rem;
}

.btn-close {
  background-size: 1.25rem;
}

.btn-close:focus {
  box-shadow: 0 0 0 4px rgba(234, 163, 58, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-logo {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.developer-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-base);
}

.developer-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  color: white;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ============================================
   GLOBAL SPINNER
   ============================================ */
.global-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 37, 47, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.global-spinner.active {
  display: flex;
}

.spinner-content {
  text-align: center;
}

.spinner-content p {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border-radius: var(--radius-md);
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 500;
}

.alert-info {
  background: rgba(52, 152, 219, 0.1);
  color: #2980b9;
  border-left: 4px solid #3498db;
}

/* ============================================
   DONACIÓN - PASO 3 - CONFIRMACIÓN
   ============================================ */
.success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-content-wrapper {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  section {
    padding: 4rem 0;
  }

  .section-about,
  .section-abuelos,
  .section-donation,
  .section-contact,
  .section-testimonios,
  .section-voluntarios,
  .section-patrocinadores,
  .section-galeria {
    padding: 4rem 0;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }

  .volunteer-category-image {
    height: 240px;
  }

  .volunteer-category-title {
    font-size: 1.5rem;
  }

  .volunteer-form-card-new {
    padding: 2.5rem 2rem;
  }

  .volunteer-form-header-new h4 {
    font-size: 1.75rem;
  }

  .volunteer-category-card-horizontal,
  .volunteer-category-reverse {
    flex-direction: column;
  }

  .volunteer-category-image-horizontal {
    width: 100%;
    min-height: 300px;
  }

  .volunteer-category-content-horizontal {
    padding: 2.5rem 2rem;
  }

  .volunteer-category-title-horizontal {
    font-size: 1.75rem;
  }

  .volunteer-category-features-horizontal {
    grid-template-columns: 1fr;
  }

  .featured-badge-volunteer-horizontal {
    top: 1.25rem;
    right: 1.25rem;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .btn-donate {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-content-wrapper {
    padding: 5rem 0 2rem;
  }

  .contact-card,
  .volunteer-form-card {
    padding: 2rem 1.5rem;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.75rem;
  }

  .volunteer-category-row {
    margin-bottom: 2rem;
  }

  .volunteer-category-image-horizontal {
    min-height: 250px;
  }

  .volunteer-category-content-horizontal {
    padding: 2rem 1.5rem;
  }

  .volunteer-category-title-horizontal {
    font-size: 1.5rem;
  }

  .volunteer-category-description-horizontal {
    font-size: 1rem;
  }

  .volunteer-category-icon-horizontal {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .featured-badge-volunteer-horizontal {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }

  /* About Section Responsive */
  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .about-image-decoration {
    top: -15px;
    left: -15px;
  }

  .about-image-badge {
    bottom: 15px;
    right: 15px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .about-content {
    padding: 0;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-cta .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .feature-card,
  .donation-card,
  .volunteer-type-card {
    padding: 2rem 1.5rem;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .volunteer-category-image-horizontal {
    min-height: 220px;
  }

  .volunteer-category-content-horizontal {
    padding: 1.75rem 1.25rem;
  }

  .volunteer-category-title-horizontal {
    font-size: 1.35rem;
  }

  .volunteer-category-description-horizontal {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .volunteer-category-icon-horizontal {
    width: 70px;
    height: 70px;
    font-size: 1.85rem;
  }

  .volunteer-category-features-horizontal li {
    font-size: 0.9rem;
  }

  /* About Section Small Screens */
  .about-image-decoration {
    top: -10px;
    left: -10px;
  }

  .about-image-badge {
    bottom: 10px;
    right: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .about-image-badge i {
    font-size: 1.25rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .highlight-item {
    font-size: 0.95rem;
  }

  .about-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}
