/*
Theme Name:  Yachay
Theme URI:   https://yachaytheme.com
Description: Tema premium para comunidades privadas, academias y membresías. Minimalista, rápido y moderno.
Version:     3.7.81
Author:      Yachay
Text Domain: yachay
License:     GPL v2 or later
*/

/* === TOKENS BASE
     El cliente puede cambiar estos valores desde
     ⚡ Yachay → Colores en el panel de WordPress
=== */
:root {
  /* Color de acento — botones, iconos activos, highlights */
  --ya-accent:         #E8842A;
  --ya-accent-dark:    #C46D1A;

  /* Fondo principal de la landing — blanco suave con tinte teal */
  --ya-bg:             #DFE4DE;

  /* Superficies y tarjetas */
  --ya-bg-surface:     #D5DAD4;
  --ya-bg-surface2:    #CCD2CB;
  --ya-bg-border:      rgba(0,0,0,0.08);

  /* Texto */
  --ya-text:           #1D1D1F;
  --ya-text-muted:     rgba(29,29,31,0.55);

  /* Texto dentro de los botones CTA */
  --ya-btn-text:       #FFFFFF;

  /* Layout */
  --ya-radius:         14px;
  --ya-radius-sm:      8px;
  --ya-radius-xl:      22px;
  --ya-max-width:      480px;

  /* Tipografía */
  --ya-font:           -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', sans-serif;
}

/* === RESET LIMPIO === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ya-font);
  background: var(--ya-bg);
  color: var(--ya-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
