/* ══════════════════════════════════════
   VARIABLES & RESET
══════════════════════════════════════ */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0F1F38;
  --navy-light: #1A2F48;
  --blue:       #2B5876;
  --accent:     #5BB4E5;
  --gold:       #E4B844;
  --gold-light: #FDD95C;
  --white:      #FFFFFF;
  --off-white:  #F5F8FA;
  --muted:      #8FA8BE;
  --text:       #D4E3F0;
  --shadow:     0 8px 32px rgba(0,0,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; color: var(--white); line-height: 1.15; }
p { line-height: 1.8; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(79,163,209,0.12);
  padding: 9px 0;
}
.topbar-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.topbar-item i { color: var(--gold); font-size: 0.72rem; }
.topbar-item a { color: var(--muted); transition: color 0.2s; }
.topbar-item a:hover { color: var(--accent); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,31,53,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  padding: 0;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200,169,81,0.4);
  flex-shrink: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-text span {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.btn-donar {
  background: linear-gradient(135deg, var(--gold), #A8842A);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.3s !important;
  box-shadow: 0 4px 18px rgba(200,169,81,0.35);
}
.btn-donar::after { display: none !important; }
.btn-donar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,81,0.5) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(228,184,68,0.3); }
  50% { box-shadow: 0 0 40px rgba(228,184,68,0.6); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

[data-animate] { opacity: 0; }
[data-animate].animated {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
[data-animate="fade-right"].animated { animation-name: fadeRight; }
[data-animate="fade-left"].animated { animation-name: fadeLeft; }
[data-animate="scale-in"].animated { animation-name: scaleIn; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(91,180,229,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 75%, rgba(228,184,68,0.12) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, #060D14 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228,184,68,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,184,68,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.08;
}

.hero-particles::before {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
}

.hero-particles::after {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 160px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* Hero left */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(228,184,68,0.12);
  border: 2px solid rgba(228,184,68,0.4);
  color: var(--gold-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 36px;
  position: relative;
}

.hero-eyebrow::after {
  content: '';
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-light);
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.85;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 28px rgba(91,180,229,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(91,180,229,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-ghost {
  border: 2px solid rgba(228,184,68,0.6);
  color: var(--gold-light);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(228,184,68,0.3), transparent);
  transition: left 0.6s;
}

.btn-ghost:hover::before {
  left: 100%;
}

.btn-ghost:hover {
  background: rgba(228,184,68,0.15);
  border-color: var(--gold-light);
  transform: translateY(-4px) scale(1.05);
  color: var(--gold-light);
  box-shadow: 0 12px 36px rgba(228,184,68,0.4);
}

/* Hero right — logo showcase */
.hero-logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-logo-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,81,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(79,163,209,0.15);
}
@keyframes slowRotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-inner {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  border: 3px solid rgba(200,169,81,0.35);
  box-shadow:
    0 0 0 12px rgba(200,169,81,0.06),
    0 24px 64px rgba(0,0,0,0.5);
}
.hero-logo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stats {
  display: flex;
  gap: 28px;
}
.hero-stat {
  text-align: center;
  padding: 16px 20px;
  background: rgba(28,58,88,0.5);
  border: 1px solid rgba(79,163,209,0.15);
  border-radius: 14px;
  flex: 1;
}
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.hero-scroll-indicator:hover {
  color: var(--gold);
  transform: translateX(-50%) translateY(-4px);
}

.hero-scroll-indicator i {
  font-size: 1.2rem;
}

/* ══════════════════════════════════════
   INFO BAR
══════════════════════════════════════ */
.infobar {
  background: linear-gradient(135deg, var(--navy-rich) 0%, var(--navy-deep) 100%);
  border-top: 2px solid rgba(228,184,68,0.2);
  border-bottom: 2px solid rgba(228,184,68,0.2);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.infobar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(228,184,68,0.06), transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(91,180,229,0.06), transparent 60%);
  pointer-events: none;
}

.infobar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  z-index: 1;
}

.infobar-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 32px;
  background: rgba(11,22,32,0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(228,184,68,0.25);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.infobar-item:hover { 
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(228,184,68,0.3);
  background: rgba(11,22,32,0.95);
}

.infobar-icon {
  width: 64px; 
  height: 64px;
  background: linear-gradient(135deg, rgba(228,184,68,0.2), rgba(91,180,229,0.12));
  border: 3px solid rgba(228,184,68,0.5);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: all 0.4s;
  box-shadow: 0 0 25px rgba(228,184,68,0.25);
}

.infobar-item:hover .infobar-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 35px rgba(228,184,68,0.5);
  border-color: var(--gold-light);
}

.infobar-text strong {
  display: block;
  font-size: 1.15rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.infobar-text span, .infobar-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
}

.infobar-text a { 
  color: var(--gold); 
  transition: color 0.3s;
  font-weight: 700;
}

.infobar-text a:hover { 
  color: var(--gold-light);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { 
  padding: 120px 0; 
  position: relative;
  z-index: 5;
  background: var(--navy);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.section-alt { 
  background: linear-gradient(180deg, rgba(21,34,50,0.5) 0%, rgba(11,22,32,0.5) 100%);
}

.section-header { 
  text-align: center; 
  margin-bottom: 80px; 
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(228,184,68,0.12);
  border: 2px solid rgba(228,184,68,0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(228,184,68,0.2);
}

.tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
  animation: glow 2s infinite;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 2;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 2;
  font-weight: 400;
}

.about-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 50%, transparent 100%);
  margin: 40px 0;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(228,184,68,0.3);
}

.about-right { 
  display: flex; 
  flex-direction: column; 
  gap: 24px; 
}

.about-card {
  background: linear-gradient(135deg, rgba(30,49,69,0.7), rgba(21,34,50,0.7));
  border: 2px solid rgba(228,184,68,0.25);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 0 4px 0;
}

.about-card:hover {
  transform: translateX(12px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(228,184,68,0.25);
  background: linear-gradient(135deg, rgba(30,49,69,0.85), rgba(21,34,50,0.85));
}

.about-card:hover::before {
  height: 100%;
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.about-card-head i {
  color: var(--gold-light);
  font-size: 2.4rem;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 10px rgba(228,184,68,0.3));
}

.about-card:hover .about-card-head i {
  transform: scale(1.2) rotate(10deg);
}

.about-card-head h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ══════════════════════════════════════
   IMPACT
══════════════════════════════════════ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.impact-card {
  background: linear-gradient(135deg, rgba(15,31,56,0.9), rgba(10,22,40,0.95));
  border: 1px solid rgba(228,184,68,0.2);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.impact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(228,184,68,0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}

.impact-card:hover {
  transform: translateY(-12px);
  border-color: rgba(228,184,68,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(228,184,68,0.12);
}

.impact-card:hover::before,
.impact-card:hover::after {
  opacity: 1;
}

.impact-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(228,184,68,0.15), rgba(91,180,229,0.1));
  border: 2px solid rgba(228,184,68,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.7rem;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  box-shadow: 0 0 20px rgba(228,184,68,0.2);
}

.impact-card:hover .impact-icon {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(228,184,68,0.4);
  border-color: var(--gold);
}

.impact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.impact-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.service-card {
  background: rgba(13,31,53,0.7);
  border: 1px solid rgba(79,163,209,0.1);
  border-radius: 18px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,81,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(200,169,81,0.08);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.service-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CRAFTEMBASSY / SLIDES
══════════════════════════════════════ */
.slider-wrap {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--blue) 100%);
  border-radius: 24px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,169,81,0.15);
}
.slider-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,169,81,0.06);
  pointer-events: none;
}
.slide { display: none; }
.slide.active { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}
.slide h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 600px;
}
.slide p {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.sdot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ══════════════════════════════════════
   DONATION CTA
══════════════════════════════════════ */
.donation-cta {
  text-align: center;
  padding: 80px 40px;
  background: rgba(28,58,88,0.35);
  border: 1px solid rgba(200,169,81,0.15);
  border-radius: 24px;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.donation-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.donation-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.donation-cta p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 0.97rem;
}
.btn-paypal {
  background: linear-gradient(135deg, #0070BA, #003087);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(0,112,186,0.4);
}
.btn-paypal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,112,186,0.5);
  color: white;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(30,49,69,0.5), rgba(21,34,50,0.5));
  border: 2px solid rgba(228,184,68,0.2);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(228,184,68,0.2);
}

.testimonial-quote {
  font-size: 3rem;
  color: rgba(228,184,68,0.25);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(228,184,68,0.2);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(228,184,68,0.2), rgba(91,180,229,0.15));
  border: 2px solid rgba(228,184,68,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ══════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
}

.contact-info > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(228,184,68,0.2), rgba(91,180,229,0.15));
  border: 2px solid rgba(228,184,68,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px rgba(228,184,68,0.2);
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 30px rgba(228,184,68,0.4);
}

.contact-info-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* Contact Form */
.contact-form-wrap {
  background: linear-gradient(135deg, rgba(30,49,69,0.6), rgba(21,34,50,0.6));
  border: 2px solid rgba(228,184,68,0.2);
  border-radius: 24px;
  padding: 56px 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(11,22,32,0.7);
  border: 2px solid rgba(228,184,68,0.2);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(11,22,32,0.9);
  box-shadow: 0 0 0 3px rgba(228,184,68,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(150,179,204,0.5);
}

.contact-form .btn-primary {
  margin-top: 12px;
  width: fit-content;
}

/* ══════════════════════════════════════
   DONATION CTA
══════════════════════════════════════ */
.donation-cta {
  text-align: center;
  padding: 80px 48px;
  background: linear-gradient(135deg, rgba(30,49,69,0.5), rgba(21,34,50,0.5));
  border: 2px solid rgba(228,184,68,0.2);
  border-radius: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.donation-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,184,68,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.donation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(228,184,68,0.2), rgba(91,180,229,0.15));
  border: 3px solid rgba(228,184,68,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold);
  font-size: 2.2rem;
  animation: glow 3s infinite;
}

.donation-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.donation-cta p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.donation-note {
  font-size: 0.88rem !important;
  color: var(--gold) !important;
  font-style: italic;
  margin: 24px auto 0 !important;
}

.btn-paypal {
  background: linear-gradient(135deg, #0070BA, #003087);
  color: white;
  padding: 18px 44px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 28px rgba(0,112,186,0.4);
  border: none;
  cursor: pointer;
}

.btn-paypal:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,112,186,0.55);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(200,169,81,0.1);
  padding: 72px 0 32px;
}
.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200,169,81,0.3);
  background: #000;
}
.footer-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--white);
}
.footer-brand-name span {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 22px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  background: rgba(28,58,88,0.6);
  border: 1px solid rgba(79,163,209,0.2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  transition: all 0.3s;
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,81,0.15);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: var(--muted);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 11px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: var(--muted); font-size: 0.87rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(79,163,209,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(200,169,81,0.4);
  z-index: 300;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ══════════════════════════════════════
   RESPONSIVE — COMPLETO Y MEJORADO
══════════════════════════════════════ */

/* ─── TABLET GRANDE / LAPTOP PEQUEÑO: 1024px ─── */
@media (max-width: 1024px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 32px 120px;
  }
  .hero-logo-showcase {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .hero-logo-ring {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
  }
  .hero-logo-inner { width: 180px; height: 180px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-scroll-indicator { bottom: 36px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Impact */
  .impact-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info h3 { font-size: 2rem; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Infobar */
  .infobar-inner { gap: 20px; }

  /* Sections */
  .section { padding: 80px 0; }
  .section-inner { padding: 0 32px; }
  .section-header { margin-bottom: 56px; }
}

/* ─── TABLET MEDIANA / MÓVIL GRANDE: 768px ─── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar { padding: 8px 0; }
  .topbar-inner {
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    flex-wrap: wrap;
  }
  .topbar-item { font-size: 0.72rem; gap: 5px; }
  .topbar-item:nth-child(2) { display: none; } /* Ocultar dirección en móvil */

  /* Header */
  .header-inner { padding: 0 16px; height: 68px; }
  .logo-text strong { font-size: 1.1rem; }
  .logo-text span { font-size: 0.6rem; }
  .logo-img-wrap { width: 46px; height: 46px; }

  /* Nav Hamburger */
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 24px 20px;
    gap: 6px;
    border-bottom: 1px solid rgba(200,169,81,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 199;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav.open a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .nav.open a:hover {
    background: rgba(228,184,68,0.08);
    color: var(--gold);
  }
  .nav.open .btn-donar {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
  }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 20px 100px;
    gap: 40px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-eyebrow { font-size: 0.65rem; padding: 8px 18px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
    gap: 12px;
  }
  .btn-primary, .btn-ghost {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  /* Hero logo showcase centrado */
  .hero-logo-showcase {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-logo-ring { width: 200px; height: 200px; }
  .hero-logo-inner { width: 160px; height: 160px; }
  .hero-stats {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .hero-stat {
    padding: 12px 14px;
    flex: 1;
    min-width: 0;
  }
  .hero-stat strong { font-size: 1.4rem; }
  .hero-stat span { font-size: 0.65rem; }
  .hero-scroll-indicator { display: none; }

  /* Infobar */
  .infobar { padding: 40px 0; }
  .infobar-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
  .infobar-item {
    padding: 24px 20px;
    gap: 16px;
  }
  .infobar-icon { width: 52px; height: 52px; font-size: 1.3rem; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-inner { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .section-desc { font-size: 0.97rem; }
  .tag { font-size: 0.66rem; padding: 8px 18px; }

  /* About */
  .about-grid { gap: 36px; }
  .about-left p { font-size: 0.97rem; }
  .about-card { padding: 28px 24px; }
  .about-card-head h5 { font-size: 1.2rem; }
  .about-card:hover { transform: translateX(6px); }

  /* Impact */
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .impact-card { padding: 28px 20px; }
  .impact-number { font-size: 2.4rem; }
  .impact-icon { width: 56px; height: 56px; font-size: 1.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  /* Slider / CraftEmbassy */
  .slider-wrap {
    padding: 36px 24px;
    border-radius: 16px;
  }
  .slider-controls { margin-top: 24px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 28px 24px; }

  /* Contact */
  .contact-grid { gap: 36px; }
  .contact-info h3 { font-size: 1.8rem; }
  .contact-info > p { font-size: 0.97rem; margin-bottom: 32px; }
  .contact-info-items { gap: 20px; }
  .contact-info-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .contact-form-wrap { padding: 28px 20px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { gap: 20px; }

  /* Donation CTA */
  .donation-cta { padding: 48px 24px; border-radius: 20px; }
  .donation-cta h3 { font-size: 1.8rem; }
  .donation-cta p { font-size: 0.93rem; }
  .btn-paypal { padding: 14px 28px; font-size: 0.95rem; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-inner { padding: 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Scroll to top */
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ─── MÓVIL MEDIANO: 480px ─── */
@media (max-width: 480px) {
  /* Topbar */
  .topbar-inner {
    gap: 8px;
  }
  .topbar-item:nth-child(1),
  .topbar-item:nth-child(4) { display: none; } /* Solo teléfono visible */

  /* Header */
  .logo-text { display: none; } /* Solo logo en pantallas muy pequeñas */
  .logo-img-wrap { width: 42px; height: 42px; }

  /* Hero */
  .hero-inner { padding: 72px 16px 88px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 8px;
  }
  .hero-stat { flex: none; width: 100%; }

  /* Infobar */
  .infobar-inner { padding: 0 16px; }
  .infobar-item { gap: 14px; padding: 20px 16px; }

  /* Sections */
  .section-inner { padding: 0 16px; }
  .section { padding: 52px 0; }

  /* Impact */
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .impact-card { padding: 24px 20px; }

  /* About cards */
  .about-card { padding: 24px 20px; }

  /* Contact */
  .contact-form-wrap { padding: 24px 16px; }
  .contact-info-item { gap: 14px; }

  /* Donation */
  .donation-cta { padding: 36px 16px; }
  .donation-cta h3 { font-size: 1.6rem; }
  .btn-paypal { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { padding: 0 16px; }
  .socials { flex-wrap: wrap; }

  /* Slider */
  .slider-wrap { padding: 28px 16px; }
}

/* ─── MÓVIL PEQUEÑO: 360px ─── */
@media (max-width: 360px) {
  .hero-inner { padding: 64px 12px 80px; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .section-inner { padding: 0 12px; }
  .infobar-inner { padding: 0 12px; }
  .footer-inner { padding: 0 12px; }
  .contact-form-wrap { padding: 20px 12px; }
  .hero-logo-ring { width: 170px; height: 170px; }
  .hero-logo-inner { width: 138px; height: 138px; }
}

/* ─── ALTURA REDUCIDA / LANDSCAPE MÓVIL ─── */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero-inner { padding: 60px 20px 60px; gap: 24px; }
  .nav.open {
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .hero-logo-ring { width: 140px; height: 140px; }
  .hero-logo-inner { width: 110px; height: 110px; }
}