:root {
  --earth: #6f3f22;
  --earth-2: #8b5a35;
  --terracotta: #b65f32;
  --sand: #f3dfb8;
  --sand-2: #fff7e8;
  --clay: #d49a62;
  --stone: #7c7468;
  --green: #5d7f4f;
  --ink: #2b2118;
  --muted: #75685d;
  --white: #ffffff;
  --line: #ead8bd;
  --shadow: 0 18px 45px rgba(73, 45, 23, .12);
  --shadow-lg: 0 28px 80px rgba(73, 45, 23, .18);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--sand-2);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1160px, 92%);
  margin: auto
}

.section {
  padding: 84px 0
}

.section-soft {
  background: linear-gradient(180deg, #fff7e8 0%, #f3dfb8 100%)
}

.text-center {
  text-align: center
}

.muted {
  color: var(--muted)
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 760px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 232, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 216, 189, .9);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--earth);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--earth), var(--terracotta));
  display: grid;
  place-items: center;
  color: var(--sand);
  box-shadow: 0 12px 28px rgba(111, 63, 34, .24);
  font-size: 1.25rem;
}

.brand span:last-child {
  letter-spacing: -.02em
}

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

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--earth);
  font-weight: 800;
  font-size: .94rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: #fff;
  color: var(--terracotta);
  box-shadow: 0 8px 20px rgba(111, 63, 34, .08);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--earth);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
  font-size: .96rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--earth), var(--terracotta));
  color: white;
  box-shadow: 0 14px 32px rgba(111, 63, 34, .25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(111, 63, 34, .32)
}

.btn-secondary {
  background: white;
  color: var(--earth);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--earth);
  font-size: .88rem;
  font-weight: 900;
}

.eyebrow i {
  color: var(--terracotta)
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 900
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 900
}

h3 {
  font-size: 1.35rem
}

.gradient-text {
  background: linear-gradient(135deg, var(--earth), var(--terracotta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 82px;
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 154, 98, .35), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(93, 127, 79, .18), transparent 26%),
    linear-gradient(180deg, #fff7e8 0%, #f7e7cb 100%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(111, 63, 34, .08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-copy {
  display: grid;
  gap: 24px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.path-card {
  position: absolute;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(234, 216, 189, .95);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  padding: 28px;
}

.path-card.main {
  inset: 40px 20px auto 40px;
  min-height: 310px;
}

.path-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.path-step {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf1;
}

.path-step i {
  color: var(--terracotta)
}

.symbol-card {
  width: 180px;
  right: 0;
  top: 0;
  text-align: center;
}

.symbol {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  color: var(--sand);
  background: linear-gradient(135deg, var(--earth), var(--terracotta));
  border-radius: 22px;
  font-size: 1.8rem;
}

.symbol-card.two {
  left: 0;
  bottom: 34px;
  right: auto;
}

.symbol-card.three {
  right: 18px;
  bottom: 0;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

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

.card {
  background: white;
  border: 1px solid rgba(234, 216, 189, .9);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .25s;
  background: linear-gradient(135deg, rgba(182, 95, 50, .08), transparent 45%);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.card:hover:before {
  opacity: 1
}

.card>* {
  position: relative
}

.icon-pill {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff3dd;
  color: var(--terracotta);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.pillar-card {
  text-align: center
}

.pillar-card .icon-pill {
  margin: 0 auto 18px
}

.activity-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f3dfb8, #d49a62);
}

.activity-card ul,
.info-card ul {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 9px;
  color: var(--muted);
}

.activity-card li:before,
.info-card li:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.page-hero {
  padding: 74px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(212, 154, 98, .28), transparent 25%),
    linear-gradient(135deg, #fff7e8, #f3dfb8);
}

.about-band {
  background: linear-gradient(135deg, var(--earth), #3c2415);
  color: white;
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.about-band p {
  color: #f4e2c4
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3dd;
  color: var(--earth);
  font-weight: 900;
  font-size: .86rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-year {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--earth), var(--terracotta));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.resource-grid .card h3 {
  margin-bottom: 10px
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  background: #fffaf1;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(182, 95, 50, .12)
}

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

.footer {
  background: var(--ink);
  color: white;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer a,
.footer p {
  color: #f0dfc6
}

.footer h4 {
  margin-bottom: 12px;
  color: white
}

.footer .brand {
  color: white
}

.floating-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  border: none;
  border-radius: 999px;
  padding: 13px 17px;
  background: linear-gradient(135deg, var(--earth), var(--terracotta));
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(111, 63, 34, .34);
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: .25s;
}

.floating-top:hover {
  transform: scale(1.04) translateY(-2px)
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0)
}

@media(max-width:900px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff7e8;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .nav-links.show {
    display: flex
  }

  .nav-links a {
    padding: 14px 24px
  }

  .menu-btn {
    display: block
  }

  .hero-grid,
  .grid-2,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 410px
  }

  .path-card.main {
    left: 0;
    right: 0
  }

  .symbol-card {
    display: none
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr
  }

  .section {
    padding: 66px 0
  }
}

@media(max-width:560px) {
  h1 {
    font-size: 2.45rem
  }

  h2 {
    font-size: 2rem
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 62px 0
  }

  .hero-visual {
    min-height: auto
  }

  .path-card {
    position: static;
    margin-top: 20px
  }

  .path-card.main {
    min-height: auto
  }

  .about-band {
    padding: 28px
  }

  .section {
    padding: 54px 0
  }

  .floating-top span {
    display: none
  }

  .footer-grid {
    gap: 22px
  }
}
.brand-mark {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.brand-mark img {
  width: 42px;
  height: auto;
  display: block;
}
.footer-social {
  display: flex;
  flex-direction: column; /* uno debajo del otro */
  gap: 10px;
  margin-top: 10px;
}

.footer-social a img {
  width: 32px;   /* tamaño pequeño */
  height: 32px;
  object-fit: contain;
  transition: 0.3s;
  opacity: 0.8;
}

.footer-social a img:hover {
  transform: scale(1.1);
  opacity: 1;
}