@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

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

:root {
  --orange: #E8951A;
  --orange-light: #F5A623;
  --orange-dark: #C47A0F;
  --orange-pale: #FDF3E3;
  --green: #2A7A4B;
  --green-dark: #1D5534;
  --charcoal: #1C1C1E;
  --dark: #2D2D2D;
  --mid: #666;
  --muted: #999;
  --light: #F7F6F3;
  --white: #FFFFFF;
  --border: #E8E5DF;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 38px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}

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

.btn-donar {
  background: var(--orange);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.btn-donar:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: #1A1208;
  color: white;
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}



.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.footer-right a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.footer-right a:hover { text-decoration: underline; }

.footer-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

.footer-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-icons a:hover { background: rgba(255,255,255,0.25); }

.footer-icons svg { width: 18px; height: 18px; fill: white; }

/* SHARED */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; line-height: 1.1; color: var(--charcoal); letter-spacing: -0.5px; }
h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--charcoal); line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; color: var(--charcoal); }

.lead { font-size: 1.15rem; color: var(--mid); line-height: 1.7; max-width: 600px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 13px 27px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--charcoal); color: white; }

/* MOBILE NAV */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 1rem 2rem 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .section { padding: 3.5rem 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
  .footer-icons { justify-content: flex-start; }
}
