:root{
  /* Brand */
  --arena:  #D9CBB3;
  --green:  #63B22F;
  --orange: #F49719;

  /* Clean / conservative background */
  --bg:     #FFF7ED;  /* crema muy ligera */
  --panel:  #FFFFFF;
  --ink:    #111827;
  --muted:  #374151;

  --line:   rgba(17,24,39,.12);
  --line2:  rgba(17,24,39,.08);

  --shadow: 0 10px 24px rgba(17,24,39,.10);

  --r12: 12px;
  --r16: 14px;
  --r20: 16px;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  font-family: "Myriad Pro","Myriad","Myriad Web Pro","Segoe UI",Roboto,Arial,sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

/* Header (sobrio + acento naranja arriba) */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line2);
  border-top: 6px solid var(--orange);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; }
.brand__logo{
  height: 54px;
  width: auto;
  display:block;
  object-fit:contain;
  image-rendering:-webkit-optimize-contrast;
  transform: translateZ(0);
}
@media (max-width: 600px){
  .brand__logo{ height: 42px; }
}

/* Sections */
.section{ padding: 34px 0; }

.section__head{
  margin-bottom: 14px;
}

.h1{
  margin: 8px 0 6px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h2{
  margin: 6px 0 8px;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.muted{ color: var(--muted); }
.center{ text-align:center; }
.mt-16{ margin-top:16px; }
.mt-20{ margin-top:20px; }

/* Pills (discretas, sin relleno fuerte) */
.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.pill--arena{ border-color: rgba(217,203,179,.9); }
.pill--green{ border-color: rgba(99,178,47,.55); }
.pill--orange{ border-color: rgba(244,151,25,.55); }

/* Cards (blancas, técnicas) */
.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r20);
  box-shadow: var(--shadow);
  padding: 18px;
}

/* Card “principal” (arena suave para mantener material sin ensuciar) */
.card--feature{
  background: rgba(217,203,179,.40);
  border-color: rgba(17,24,39,.10);
  padding: 22px;
}

/* CTA card (muy sutil) */
.card--cta{
  background: rgba(99,178,47,.06);
  border-color: rgba(99,178,47,.25);
}

/* Layout */
.two-col{
  display:grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 18px;
  align-items: center;
}
.two-col--reverse{
  grid-template-columns: 1.35fr 1.05fr;
}
@media (max-width: 900px){
  .two-col, .two-col--reverse{ grid-template-columns: 1fr; }
}

.stack{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .06s ease, filter .15s ease, background .15s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn:hover{ filter: brightness(0.99); }

.btn--primary{
  background: var(--green);
  color: #fff;
  border-color: #4C9121;
}

.btn--secondary{
  background: #fff;
  color: var(--green);
  border-color: #4C9121;
}
.btn--secondary:hover{
  background: rgba(99,178,47,.08);
  filter:none;
}

.btn--ghost{
  background: #fff;
  color: var(--ink);
  border-color: rgba(17,24,39,.20);
}
.btn--ghost:hover{
  background: rgba(17,24,39,.03);
  filter:none;
}

/* Checks */
.checks{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 10px;
}
.checks li{
  position: relative;
  padding-left: 30px;
  color: #111827;
  font-weight: 600;
}
.checks li::before{
  content: "✓";
  position:absolute;
  left:0;
  top:0;
  width: 22px;
  height: 22px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  background: rgba(99,178,47,.10);
  border: 1px solid rgba(99,178,47,.35);
  color: #2F5E12;
  font-weight: 900;
  font-size: 12px;
}

/* Image slots (elegantes, discretos) */
.img-slot{
  width: 100%;
  border-radius: var(--r16);
  border: 1px dashed rgba(17,24,39,.22);
  background: #F7F4EE;
  position: relative;
  overflow: hidden;
}
.img-slot::after{
  content: "ESPACIO PARA IMAGEN";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#6B7280;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 12px;
  text-transform: uppercase;
}
.img-slot--hero{ aspect-ratio: 16/11; }
.img-slot--wide{ aspect-ratio: 16/10; }
.img-slot--square{ aspect-ratio: 1/1; }
.img-slot--banner{ aspect-ratio: 21/6; }
@media (max-width: 900px){
  .img-slot--banner{ aspect-ratio: 16/8; }
}

/* Mini stats */
.mini-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 900px){
  .mini-stats{ grid-template-columns: 1fr; }
}
.mini{
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.70);
}
.mini__k{
  display:block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .02em;
}
.mini__v{
  display:block;
  font-size: 14px;
  font-weight: 900;
  color: #111827;
  margin-top: 2px;
}

/* Tiles (tipos de arena) */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
}
.tile{
  border-radius: var(--r16);
  border: 1px solid rgba(17,24,39,.12);
  padding: 14px;
  background: rgba(255,255,255,.75);
  color: #111827;
}
.tile .muted{ color:#374151; }

.ol{
  margin: 10px 0 0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
}
.ol strong{ display:block; margin-bottom: 4px; }

/* Tabs */
.tabsWrap{ margin-top: 6px; }
.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17,24,39,.14);
}

.tab{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(17,24,39,.14);
  font-weight: 900;
  cursor:pointer;
  color:#111827;
}

.tab.is-active{
  background: var(--green);
  border-color: #4C9121;
  color:#ffffff;
  box-shadow: 0 10px 22px rgba(17,24,39,.12);
}

.tabpanels{ padding-top: 14px; }
.tabpanel{ display:none; }
.tabpanel.is-active{ display:block; }

/* CTA row */
.ctaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(17,24,39,.10);
  padding: 22px 0 30px;
  background: rgba(255,255,255,.65);
  margin-top: 10px;
}
.footer__inner{
  display:flex;
  justify-content:center;
  text-align:center;
  color: #111827;
}
