/* EnCasa Boulder — Global Styles */
/* Folk art redesign: papel picado, Otomi embroidery, Talavera tiles, marigold garlands */
/* Rules: no sticky, no em-dashes, contractions, full-bleed sections, light backgrounds */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --pink:         #f83f98;
  --pink-light:   #fde8f3;
  --pink-dark:    #c8006e;
  --cobalt:       #1B5E9B;
  --cobalt-dark:  #1B3A6B;
  --marigold:     #F5A623;
  --marigold-dark:#c47f00;
  --green:        #2D6A2D;
  --cream:        #FDF5E6;
  --cream-dark:   #F7ECD4;
  --navy:         #0F2040;
  --text:         #1a1a2e;
  --text-muted:   #666;
  --border:       #e5e0d5;
  --radius:       12px;
  --shadow:       0 2px 16px rgba(27,58,107,0.10);
  --shadow-md:    0 6px 28px rgba(27,58,107,0.15);
  --container:    min(92%, 1200px);

  /* Font families */
  --font-folk:    'Dancing Script', cursive;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Layout ──────────────────────────────────────────────────────── */

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Nav ─────────────────────────────────────────────────────────── */

nav {
  background: var(--cream);
  border-bottom: 2px solid var(--marigold);
  padding: 0.85rem 0;
}

.nav-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-logo {
  font-family: var(--font-folk);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  line-height: 1;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--cobalt-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
  font-family: var(--font-body);
}

.nav-links a:hover { color: var(--pink); }

.nav-links .btn-nav {
  background: var(--pink);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  font-weight: 700;
}

.nav-links .btn-nav:hover { background: var(--pink-dark); color: #fff; }

/* ── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.6rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.15s;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border: 2px solid var(--cobalt);
}
.btn-outline:hover { background: var(--pink-light); border-color: var(--pink); color: var(--pink); }

.btn-gold {
  background: var(--marigold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--marigold-dark); }

.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ── Section title folk style ─────────────────────────────────────── */

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
  text-align: center;
  color: var(--cobalt-dark);
}

.folk-title {
  font-family: var(--font-folk);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--cobalt-dark);
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  text-align: center;
}

/* ── HERO ─────────────────────────────────────────────────────────── */

.hero {
  background: var(--cream);
  padding-bottom: 0;
  overflow: hidden;
}

/* Papel picado wrap */
.papel-picado-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--cream);
}

.papel-picado {
  width: 100%;
  height: 100px;
  display: block;
}

/* Three-column layout: otomi left | content | otomi right */
.hero-body {
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: start;
  min-height: 560px;
}

/* Otomi side panels */
.otomi-panel {
  width: 120px;
  min-height: 560px;
  flex-shrink: 0;
}

.otomi-panel svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero center content */
.hero-content {
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-headline {
  font-family: var(--font-folk);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cobalt-dark);
}

/* ── Search bar ───────────────────────────────────────────────────── */

.search-bar {
  display: flex;
  max-width: 580px;
  width: 100%;
  border-radius: 99px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,58,107,0.18);
  background: #fff;
  border: 2px solid var(--marigold);
}

.search-bar select,
.search-bar input {
  flex: 1;
  border: none;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  min-width: 0;
}

.search-bar button {
  background: var(--cobalt);
  color: #fff;
  border: none;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: background 0.15s;
  flex-shrink: 0;
}
.search-bar button:hover { background: var(--cobalt-dark); }

/* ── Trust row ────────────────────────────────────────────────────── */

.trust-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--cobalt-dark);
  font-weight: 500;
  text-align: center;
  max-width: 100px;
}

.trust-icon {
  font-size: 1.5rem;
  color: var(--pink);
  line-height: 1;
}

/* ── Garland dividers ─────────────────────────────────────────────── */

.garland-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--cream);
}

.section-garland {
  background: #fff;
}

.garland-svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ── WORKER CARDS ─────────────────────────────────────────────────── */

.workers-section {
  padding: 3rem 0 3.5rem;
  background: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Talavera tile card: ornate cobalt+white border effect */
.worker-card {
  background: #fff;
  border-radius: var(--radius);
  /* Talavera tile border: layered box-shadow + actual border to mimic ornate tile frame */
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 9px var(--cobalt),
    0 0 0 11px #fff,
    0 0 0 14px rgba(27,94,155,0.25),
    var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  overflow: visible;
}

.worker-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 9px var(--cobalt),
    0 0 0 11px #fff,
    0 0 0 14px rgba(27,94,155,0.35),
    var(--shadow-md);
}

.worker-card.featured {
  outline-color: var(--pink);
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 9px var(--pink),
    0 0 0 11px #fff,
    0 0 0 14px rgba(248,63,152,0.25),
    var(--shadow);
}

/* Inner content of Talavera card */
.talavera-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 3px solid var(--pink);
  box-shadow: 0 0 0 3px var(--marigold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cobalt-dark);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cobalt-dark);
  margin-bottom: 0.1rem;
}

.card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: var(--pink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  font-family: var(--font-body);
}

.tag-hood {
  background: var(--cobalt);
  color: #fff;
}

.card-rate {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cobalt-dark);
}

.stars {
  color: var(--marigold);
  font-size: 0.88rem;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  border-radius: 99px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.15s;
  font-family: var(--font-body);
}
.wa-btn:hover { background: #128c7e; }

.cobalt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cobalt);
  color: #fff;
  border-radius: 99px;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.15s;
  font-family: var(--font-body);
}
.cobalt-btn:hover { background: var(--cobalt-dark); }

.see-more-link {
  text-align: center;
  margin-top: 2rem;
}

.see-more-link a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.see-more-link a:hover { color: var(--pink); }

/* ── CONSEJOS SECTION ─────────────────────────────────────────────── */

.consejos-section {
  background: var(--marigold);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Sarape stripe edges */
.sarape-left,
.sarape-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  background-image: repeating-linear-gradient(
    180deg,
    var(--pink)       0px,
    var(--pink)        8px,
    var(--cobalt)      8px,
    var(--cobalt)     16px,
    var(--green)      16px,
    var(--green)      24px,
    var(--cream)      24px,
    var(--cream)      32px,
    #cc3300           32px,
    #cc3300           40px,
    var(--marigold-dark) 40px,
    var(--marigold-dark) 48px
  );
  pointer-events: none;
}

.sarape-left  { left: 0; }
.sarape-right { right: 0; }

.consejos-section .container {
  position: relative;
  z-index: 1;
}

.consejos-section .section-title {
  color: var(--cobalt-dark);
  margin-bottom: 1.5rem;
}

.consejos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.consejo-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 4px 16px rgba(27,58,107,0.12);
}

.consejo-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.consejo-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cobalt-dark);
  line-height: 1.3;
}

.consejo-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.consejo-link {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: auto;
}
.consejo-link:hover { color: var(--pink-dark); }

/* ── FOUNDER SECTION ──────────────────────────────────────────────── */

.founder-section {
  background: var(--cream);
  padding: 4rem 0;
}

.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Otomi-inspired triple ring */
.founder-photo-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  background: var(--pink);
  box-shadow:
    0 0 0 5px var(--marigold),
    0 0 0 10px var(--cobalt),
    0 0 0 15px var(--cream),
    0 0 0 18px var(--marigold);
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border: 3px solid #fff;
}

.founder-otomi-bird {
  width: 80px;
  height: 60px;
  opacity: 0.85;
}

.founder-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.25rem;
}

.founder-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.founder-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  max-width: 560px;
  font-size: 0.97rem;
}

.founder-text .btn {
  margin-top: 0.5rem;
}

/* ── ABOUT band (kept for sobre.html compatibility) ───────────────── */

.about-band {
  background: var(--pink);
  color: #fff;
  padding: 3.5rem 0;
}

.about-band-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
  background: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.about-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.about-text p { opacity: 0.92; max-width: 560px; line-height: 1.7; font-size: 0.95rem; }
.about-text a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── JOBS SECTION ─────────────────────────────────────────────────── */

.jobs-section {
  padding: 3.5rem 0;
  background: var(--cream);
}

.job-card {
  background: #fff;
  border: 2px solid var(--border);
  border-left: 5px solid var(--cobalt);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.job-title { font-weight: 700; font-size: 1rem; color: var(--cobalt-dark); margin-bottom: 0.2rem; }
.job-meta  { font-size: 0.85rem; color: var(--text-muted); }
.job-budget { font-weight: 700; color: var(--pink-dark); white-space: nowrap; }

/* ── FOOTER ───────────────────────────────────────────────────────── */

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--marigold) 50%, var(--cobalt) 100%);
}

.footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}

.footer-logo {
  font-family: var(--font-folk);
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 0.75rem;
}

.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 0.5rem; }
footer a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.15s;
}
footer a:hover { color: var(--pink); }

.footer-links-group a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-links-group a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  width: var(--container);
  margin-inline: auto;
}

/* ── Forms ────────────────────────────────────────────────────────── */

.form-page {
  padding: 3rem 0 4rem;
  background: var(--cream);
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.form-card h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--cobalt-dark); }
.form-card .subtitle { color: var(--text-muted); margin-bottom: 1.75rem; font-size: 0.92rem; }

.form-group { margin-bottom: 1.25rem; }

label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--cobalt-dark); }
label .hint { font-weight: 400; color: var(--text-muted); font-size: 0.82rem; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  font-family: var(--font-body);
}

input:focus, select:focus, textarea:focus { border-color: var(--cobalt); }
textarea { resize: vertical; min-height: 100px; }

.checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input { width: auto; }

.rate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 8px;
  padding: 1.25rem;
  color: #166534;
  font-weight: 600;
  display: none;
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Sobre page ───────────────────────────────────────────────────── */

.sobre-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, #fef3c7 100%);
  padding: 4rem 0 3rem;
}

.sobre-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sobre-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--pink);
  flex-shrink: 0;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.sobre-text h1 { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; color: var(--cobalt-dark); }
.sobre-text .tagline { color: var(--pink); font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }

.sobre-body { background: var(--cream); padding: 3rem 0 4rem; }

.sobre-content {
  width: var(--container);
  margin-inline: auto;
  max-width: 760px;
}

.sobre-content h2 { font-size: 1.3rem; font-weight: 800; margin: 2rem 0 0.75rem; color: var(--cobalt-dark); }
.sobre-content p { line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }

.fact-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.fact-chip {
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Lang toggle ──────────────────────────────────────────────────── */

.lang-toggle { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; }
.lang-btn {
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  color: var(--text-muted);
  transition: all 0.15s;
}
.lang-btn.active { background: var(--pink); color: #fff; border-color: var(--pink); }

/* ── Loading / empty states ───────────────────────────────────────── */

.loading { text-align: center; padding: 3rem; color: var(--text-muted); }
.empty   { text-align: center; padding: 3rem; color: var(--text-muted); }

/* ── Trabajadoras page ────────────────────────────────────────────── */

.trabajadoras-hero {
  background: var(--cream);
  padding: 3rem 0 2rem;
  border-bottom: 3px solid var(--marigold);
}

/* ── Consejos article pages ───────────────────────────────────────── */

.article-hero {
  background: var(--cream);
  padding: 3rem 0 2rem;
  border-bottom: 2px solid var(--marigold);
}

.article-body {
  background: #fff;
  padding: 3rem 0 4rem;
}

.article-content {
  width: var(--container);
  margin-inline: auto;
  max-width: 760px;
}

.article-content h2 {
  font-family: var(--font-folk);
  font-size: 1.6rem;
  color: var(--cobalt-dark);
  margin: 2rem 0 0.75rem;
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cobalt-dark);
  margin: 1.5rem 0 0.5rem;
}

.article-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.article-content ul,
.article-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  line-height: 1.8;
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .hero-body {
    grid-template-columns: 60px 1fr 60px;
  }
  .otomi-panel {
    width: 60px;
    min-height: 400px;
  }
  .hero-content {
    padding: 2rem 1rem 2rem;
  }
  .founder-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo-col { margin: 0 auto; }
  .founder-text p { margin-inline: auto; }
}

@media (max-width: 600px) {
  .nav-inner { gap: 0.75rem; }
  .nav-links  { gap: 0.75rem; }
  .nav-links a { font-size: 0.82rem; }

  .hero-body {
    grid-template-columns: 40px 1fr 40px;
  }
  .otomi-panel {
    width: 40px;
    min-height: 320px;
  }
  .hero-headline { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .trust-row { gap: 1rem; }
  .trust-item { max-width: 80px; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: unset; }

  .about-band-inner { flex-direction: column; text-align: center; }
  .sobre-inner { flex-direction: column; align-items: center; text-align: center; }
  .rate-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem 1.25rem; }
}
