:root {
  --green: #2f5d3a;
  --green-dark: #244a2e;
  --blush: #d46a55;
  --cream: #fff8f0;
  --ink: #2b2b2b;
  --muted: #7a7a7a;
  --gold: #c9a227;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .4em; }
p { color: #4d4d4d; }

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

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }

.btn-light { background: #fff; color: var(--green); }
.btn-light:hover { background: var(--cream); }

.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-ghost { border-color: var(--green); color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: #fff; }

.btn-block { width: 100%; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,252,246,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee4d6;
}
.nav { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; }
.brand-name { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.brand-name em { font-style: normal; color: var(--blush); }

.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--blush); }
.nav-cta { margin-left: 18px; padding: 10px 20px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--green); margin: 5px 0; border-radius: 3px; transition: .2s; }

/* HERO */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1600&q=80") center/cover;
  transform: scale(1.02);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,45,30,.65), rgba(30,45,30,.35)), radial-gradient(circle at 20% 20%, rgba(212,106,85,.25), transparent 50%); }
.hero-content { position: relative; padding: 110px 0 60px; max-width: 640px; }
.hero-tag {
  display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4);
  padding: 6px 16px; border-radius: 999px; font-size: .85rem; margin-bottom: 22px; backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); letter-spacing: -1px; margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.1rem; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-info {
  position: relative;
  display: flex; gap: 16px; flex-wrap: wrap;
  padding: 22px 0 40px;
  border-top: 1px solid rgba(255,255,255,.25);
  margin-top: 10px;
}
.hero-info > div { padding-right: 28px; }
.hero-info strong { display: block; font-size: 1.5rem; }
.hero-info span { font-size: .9rem; color: rgba(255,255,255,.85); }

/* SECTIONS */
.section { padding: 76px 0; }
.section.alt { background: var(--cream); }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head p { color: var(--muted); }

.grid { display: grid; gap: 26px; }

/* CATALOG */
.cards { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.16); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { color: var(--green); font-size: 1.2rem; }
.card-body .btn-ghost { margin-top: auto; padding: 9px 16px; font-size: .9rem; }

/* BAND */
.band { background: linear-gradient(120deg, var(--blush), #b04d3c); color: #fff; padding: 60px 0; text-align: center; }
.band p { color: rgba(255,255,255,.9); margin-bottom: 20px; font-size: 1.05rem; }
.band .btn { margin-top: 6px; }

/* NOSOTROS split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.ticks { list-style: none; margin: 20px 0 26px; }
.ticks li { padding-left: 30px; position: relative; margin-bottom: 10px; color: #4d4d4d; }
.ticks li::before { content: "✔"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* SEDES */
.sedes { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.sede { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border-top: 4px solid var(--green); }
.sede h3 { color: var(--green); font-size: 1.1rem; margin-bottom: 10px; }
.sede a { color: var(--blush); font-weight: 600; }
.sede .muted { color: var(--muted); font-size: .88rem; margin-top: 8px; }

/* LEGAL */
.legal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.legal-card { background: #fff; border: 1px solid #eee4d6; border-radius: var(--radius); padding: 26px; text-align: center; }
.legal-card h3 { color: var(--blush); font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.legal-card p { color: var(--ink); font-weight: 600; }

/* CONTACT */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; margin: 22px 0; }
.ci { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.ci-ico { font-size: 1.3rem; }
.ci a { color: var(--green); font-weight: 600; }
.ci a:hover { color: var(--blush); }

.social { display: flex; gap: 12px; margin: 22px 0; }
.soc {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green); color: #fff; font-weight: 700; font-size: .85rem;
  transition: transform .2s, background .2s;
}
.soc:hover { transform: translateY(-3px); background: var(--blush); }

.pay { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.pay span { font-weight: 600; color: var(--ink); }

.contact-form {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--green); margin-bottom: 18px; }
.contact-form label { display: block; font-size: .9rem; font-weight: 600; color: #555; margin-bottom: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid #ddd; border-radius: 10px; font: inherit; color: var(--ink);
  background: var(--cream);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--green); border-color: transparent;
}
.form-msg { margin-top: 14px; font-weight: 600; display: none; }
.form-msg.ok { display: block; color: var(--green); }
.form-msg.err { display: block; color:#b02f2f; }

/* FOOTER */
.site-footer { background: var(--green-dark); color: #dfe9e0; padding: 40px 0 32px; text-align: center; }
.site-footer .brand { justify-content: center; color: #fff; }
.site-footer p { color: #cdd8cf; font-size: .9rem; margin-top: 14px; }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); font-size: .8rem; font-weight: 700; }
.footer-social a:hover { background: var(--blush); color: #fff; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav { flex-wrap: wrap; }
  .nav-cta { display: none; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: 0;
    background: #fff; position: absolute; left: 0; right: 0; top: 100%;
    box-shadow: var(--shadow);
  }
  .nav-links a { padding: 15px 8%; border-top: 1px solid #f0e8dc; }
  .nav-links.open { display: flex; }
  .split, .two-col { grid-template-columns: 1fr; }
  .hero-content { padding: 80px 0 40px; }
}