/* Paleta específica de cada plantilla */
:root {
  --bg: #f4f4f4;
  --surface: #ffffff;
  --text: #1f2429;
  --muted: #6f7378;
  --accent: #f3aa00;
  --accent-soft: #fff2cc;
  --border: #e6dfca;
  --highlight: #40474f;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; }
.container { width: min(1120px, 100%); margin: 0 auto; padding: 0 1.5rem; }
.site-header { background: rgba(255,255,255,.9); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: 1rem; }
.brand-mark { width: 3rem; height: 3rem; display: grid; place-items: center; background: var(--accent); color: #fff; border-radius: 1rem; font-weight: 800; }
.brand-eyebrow, .eyebrow { font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); margin: 0 0 .75rem 0; }
.brand-title { font-size: 1rem; margin: 0; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.menu-toggle { display: none; border: none; background: var(--accent); color: #fff; padding: .75rem 1rem; border-radius: 999px; cursor: pointer; }
.hero { padding: 5rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center; }
.hero-copy h2 { margin: 0 0 1rem; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.02; }
.hero-copy p { max-width: 40rem; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 1rem 1.6rem; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.btn-secondary { border: 1px solid var(--accent); color: var(--accent); background: rgba(255,255,255,.95); }
.hero-panel { display: grid; place-items: center; }
.hero-panel-card { width: 100%; background: var(--surface); padding: 2rem; border-radius: 32px; box-shadow: 0 24px 50px rgba(0,0,0,.08); border: 1px solid var(--border); }
.panel-label { margin: 0 0 1rem; color: var(--accent); font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; }
.panel-text { margin: 1rem 0 0; color: var(--muted); line-height: 1.75; }
.section { padding: 4rem 0; }
.section-header { max-width: 42rem; margin-bottom: 2.5rem; }
.section-header h2 { margin: 0; font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.05; }
.section-header p { margin: 1rem 0 0; color: var(--muted); line-height: 1.7; }
.cards-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 2rem; box-shadow: 0 18px 36px rgba(0,0,0,.06); }
.card h3 { margin-top: 0; }
.card p { line-height: 1.85; color: var(--muted); }
.highlight-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 2rem; }
.highlight { background: var(--accent-soft); padding: 1.75rem; border-radius: 24px; border: 1px solid var(--border); }
.highlight strong { display: block; font-size: 1.8rem; margin-bottom: .5rem; }
.section-cta { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; background: var(--accent-soft); border: 1px solid var(--border); border-radius: 32px; padding: 2rem; }
.section-cta h3 { margin: 0; font-size: 2rem; }
.section-cta p { margin: .75rem 0 0; color: var(--muted); max-width: 34rem; }
.form-card { background: var(--surface); border-radius: 28px; padding: 2rem; border: 1px solid var(--border); box-shadow: 0 18px 40px rgba(0,0,0,.05); }
.form-grid { display: grid; gap: 1rem; }
.form-grid label { display: grid; gap: .5rem; font-weight: 600; color: var(--text); }
.form-grid input, .form-grid textarea, .form-grid select { width: 100%; border: 1px solid var(--border); border-radius: 16px; padding: 1rem; background: #fff; color: var(--text); font: inherit; }
.form-grid textarea { resize: vertical; min-height: 140px; }
.footer-inner { padding: 2rem 0; text-align: center; color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid, .cards-grid, .highlight-grid { grid-template-columns: 1fr; }
  .site-nav { position: absolute; inset: auto 1.5rem 0 auto; top: 5rem; right: 1.5rem; flex-direction: column; background: rgba(255,255,255,.98); border-radius: 20px; padding: 1rem; box-shadow: 0 18px 40px rgba(0,0,0,.1); display: none; }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .hero { padding-top: 3rem; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .hero-panel-card { padding: 1.5rem; }
}
