/* =============================================================================
   VICTORIA APP - LANDING PAGE v3
   Diseño profesional con fondos atractivos y colores vibrantes
   ============================================================================= */

/* =============================================================================
   BASE & RESET
   ============================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1d4ed8;
}

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

/* =============================================================================
   HEADER / NAVBAR
   ============================================================================= */
.ds-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ds-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ds-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ds-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ds-logo img {
  height: 42px;
  width: auto;
}

.ds-logo-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

.ds-logo-text {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
}

.ds-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ds-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.ds-nav-links a {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.ds-nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.ds-nav-links a:hover,
.ds-nav-links a.active {
  color: #1e293b;
}

.ds-nav-links a:hover::after,
.ds-nav-links a.active::after {
  width: 100%;
}

.ds-nav-cta {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

.ds-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.45);
}

.ds-nav-cta::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.ds-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ds-nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .ds-nav-toggle {
    display: flex;
  }

  .ds-nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .ds-nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */
.ds-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 74px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
}

.ds-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ds-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.ds-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.92) 0%,
    rgba(37, 99, 235, 0.85) 100%
  );
  z-index: 1;
}

.ds-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.ds-hero-content {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.ds-hero-badge i {
  color: #fbbf24;
}

.ds-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.ds-hero-title span {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.ds-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.ds-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.ds-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
  color: #fff;
}

.ds-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ds-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff;
}

.ds-hero-btn-live {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.7),
      0 0 0 10px rgba(220, 38, 38, 0.1);
  }
}

.ds-hero-social {
  display: flex;
  gap: 12px;
}

.ds-hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.ds-hero-social a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
}

.ds-hero-social a.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.ds-hero-social a.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
}

.ds-hero-social a.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.ds-hero-social a.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

/* Hero Logo */
.ds-hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.8s ease-out 0.2s both;
}

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

.ds-hero-logo-container {
  position: relative;
  width: 340px;
  height: 340px;
}

.ds-hero-logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.ds-hero-logo-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* Hero Waves */
.ds-hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 3;
  overflow: hidden;
}

.ds-hero-waves svg {
  width: 100%;
  height: 100%;
}

.ds-hero-waves .wave1 use {
  fill: rgba(255, 255, 255, 0.3);
  animation: wave 20s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.ds-hero-waves .wave2 use {
  fill: rgba(255, 255, 255, 0.5);
  animation: wave 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) -5s infinite;
}

.ds-hero-waves .wave3 use {
  fill: #fff;
}

@keyframes wave {
  0% {
    transform: translateX(-90px);
  }
  100% {
    transform: translateX(85px);
  }
}

@media (max-width: 991px) {
  .ds-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }

  .ds-hero-content {
    order: 2;
  }

  .ds-hero-logo {
    order: 1;
  }

  .ds-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .ds-hero-actions {
    justify-content: center;
  }

  .ds-hero-social {
    justify-content: center;
  }

  .ds-hero-logo-container {
    width: 220px;
    height: 220px;
  }
}

/* =============================================================================
   SECTION BASE STYLES
   ============================================================================= */
.ds-section {
  padding: 100px 0;
  background: #fff;
}

.ds-section-alt {
  background: #f8fafc;
}

/* Colored section variants */
.ds-section-amber {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
}

.ds-section-emerald {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
}

.ds-section-primary {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

.ds-section-violet {
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 50%, #ddd6fe 100%);
}

.ds-section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ds-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ds-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #1e3a8a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Badge colors per section */
.ds-section-amber .ds-section-badge {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.ds-section-emerald .ds-section-badge {
  background: linear-gradient(135deg, #059669, #10b981);
}

.ds-section-primary .ds-section-badge {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}

.ds-section-violet .ds-section-badge {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.ds-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ds-section-title span {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Colored title spans */
.ds-section-amber .ds-section-title span {
  background: linear-gradient(135deg, #b45309, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-section-emerald .ds-section-title span {
  background: linear-gradient(135deg, #047857, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-section-primary .ds-section-title span {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-section-violet .ds-section-title span {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-section-description {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.ds-about-content h3 {
  font-size: 14px;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ds-about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ds-about-content p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 28px;
  line-height: 1.8;
}

.ds-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.ds-about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
  color: #fff;
}

.ds-about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ds-about-card {
  padding: 28px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ds-about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.ds-about-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 16px;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.ds-about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.ds-about-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .ds-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

/* =============================================================================
   EVENTS / SCHEDULE SECTION
   ============================================================================= */
.ds-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ds-event-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}

.ds-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.15);
  border-color: #f59e0b;
}

.ds-event-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 24px;
  font-size: 2.25rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.ds-event-day {
  font-size: 12px;
  font-weight: 800;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ds-event-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.ds-event-times {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.ds-event-time {
  padding: 6px 14px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
}

.ds-event-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.ds-event-cta {
  margin-top: 20px;
}

.ds-event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}

.ds-event-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
  color: #fff;
}

@media (max-width: 991px) {
  .ds-events-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* =============================================================================
   GRUPOS PEQUEÑOS SECTION
   ============================================================================= */
.ds-grupos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ds-grupos-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  min-height: 420px;
  border: 3px solid #10b981;
}

.ds-grupos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ds-grupo-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.ds-grupo-item:hover {
  transform: translateX(8px);
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.ds-grupo-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 14px;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.ds-grupo-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.ds-grupo-info p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 2px;
}

.ds-grupo-info .ds-grupo-leaders {
  font-size: 13px;
  color: #94a3b8;
}

@media (max-width: 991px) {
  .ds-grupos-content {
    grid-template-columns: 1fr;
  }

  .ds-grupos-map {
    min-height: 320px;
  }
}

/* =============================================================================
   GALLERY SECTION
   ============================================================================= */
.ds-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ds-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ds-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ds-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ds-gallery-item:hover img {
  transform: scale(1.15);
}

.ds-gallery-item:hover::after {
  opacity: 1;
}

.ds-gallery-item i {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.ds-gallery-item:hover i {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .ds-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================================================
   CONTACT SECTION
   ============================================================================= */
.ds-contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.ds-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ds-contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.ds-contact-item:hover {
  transform: translateX(8px);
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.ds-contact-item-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 14px;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ds-contact-item-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.ds-contact-item-content p,
.ds-contact-item-content a {
  font-size: 15px;
  color: #64748b;
}

.ds-contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ds-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ds-contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-contact-form-group.full {
  grid-column: span 2;
}

.ds-contact-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.ds-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.ds-contact-form-submit {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .ds-contact-grid {
    grid-template-columns: 1fr;
  }

  .ds-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .ds-contact-form-group.full {
    grid-column: span 1;
  }
}

/* =============================================================================
   DONACIONES SECTION
   ============================================================================= */
.ds-donaciones-content {
  max-width: 800px;
  margin: 0 auto;
}

.ds-donaciones-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ds-donaciones-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ds-donaciones-step:hover {
  transform: translateX(8px);
  border-color: #8b5cf6;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.ds-donaciones-step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.ds-donaciones-step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.ds-donaciones-step-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.ds-donaciones-step-content em {
  color: #7c3aed;
  font-style: normal;
  font-weight: 600;
}

.ds-donaciones-cta {
  text-align: center;
}

.ds-donaciones-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.ds-donaciones-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(139, 92, 246, 0.5);
  color: #fff;
}

/* =============================================================================
   MAP SECTION
   ============================================================================= */
.ds-map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid #3b82f6;
}

.ds-map-wrapper p {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1e40af;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-bottom: 1px solid #bfdbfe;
}

.ds-map-wrapper p i {
  color: #2563eb;
  margin-right: 8px;
}

.ds-map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.ds-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding-top: 80px;
}

.ds-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ds-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ds-footer-brand img {
  height: 52px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.ds-footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  line-height: 1.7;
}

.ds-footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.ds-footer-contact strong {
  color: #fff;
}

.ds-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.ds-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.ds-footer-social a:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.ds-footer-links h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.ds-footer-links ul {
  list-style: none;
}

.ds-footer-links li {
  margin-bottom: 12px;
}

.ds-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: all 0.3s ease;
}

.ds-footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.ds-footer-newsletter h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ds-footer-newsletter p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.ds-footer-newsletter-form {
  display: flex;
  gap: 12px;
}

.ds-footer-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
}

.ds-footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ds-footer-newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.ds-footer-newsletter-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-footer-newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.ds-footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.ds-footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.ds-footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.ds-footer-dev:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.ds-footer-dev span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.ds-dlsoft-logo {
  height: 16px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.ds-footer-dev:hover .ds-dlsoft-logo {
  opacity: 1;
}

@media (max-width: 991px) {
  .ds-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .ds-footer-social {
    justify-content: center;
  }

  .ds-footer-newsletter-form {
    flex-direction: column;
  }
}

/* =============================================================================
   WHATSAPP STICKY BUTTON
   ============================================================================= */
.ds-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
  transition: all 0.3s ease;
}

.ds-whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.55);
  color: #fff;
}

.ds-whatsapp-float i {
  font-size: 1.35rem;
}

/* =============================================================================
   SCROLL TO TOP
   ============================================================================= */
.ds-scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ds-scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.ds-scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
  color: #fff;
}

/* =============================================================================
   MODAL
   ============================================================================= */
.ds-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ds-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.ds-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  width: 90%;
  max-width: 480px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ds-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.ds-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.ds-modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.ds-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
}

.ds-modal-close:hover {
  background: #dc2626;
  color: #fff;
}

.ds-modal-body {
  padding: 32px;
  text-align: center;
}

.ds-modal-body img {
  max-width: 160px;
  margin-bottom: 20px;
}

.ds-modal-body p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
}

.ds-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.ds-modal-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.ds-modal-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 50%;
  color: #64748b;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.ds-modal-social a:hover {
  transform: scale(1.15);
}

.ds-modal-social a.facebook:hover {
  background: #1877f2;
  color: #fff;
}

.ds-modal-social a.instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.ds-modal-social a.youtube:hover {
  background: #ff0000;
  color: #fff;
}

.ds-modal-social a.whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.ds-modal-footer {
  padding: 20px 32px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

/* =============================================================================
   APP DOWNLOAD CTA
   ============================================================================= */
.ds-app-cta {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 60px 0;
  text-align: center;
}

.ds-app-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ds-app-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ds-app-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: #dc2626;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.ds-app-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  color: #b91c1c;
}

/* =============================================================================
   FORM INPUTS
   ============================================================================= */
.ds-input {
  width: 100%;
  padding: 14px 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-size: 15px;
  color: #0f172a;
  transition: all 0.3s ease;
}

.ds-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.ds-input::placeholder {
  color: #94a3b8;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-btn-primary {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.ds-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(30, 58, 138, 0.4);
}
