/* ═══════════════════════════════════════════════════════════════════
   BUTTONS.CSS — Studio Lanorma

   Estilos de los botones de acción de la home:
   - .hero-more      → botón gris en desktop bajo el texto del hero
   - .btn-mobile     → botón gris en móvil (reemplaza hero-more)
   - .btn-mobile-light → variante clara del botón móvil (para texto dark)

   SOLO SE USAN EN: index.html (home)
   ═══════════════════════════════════════════════════════════════════ */


/* ── BOTÓN "SABER MÁS" (DESKTOP) ───────────────────────────────────
   Se muestra en desktop bajo la descripción del proyecto hero.
   En móvil se oculta y se muestra .btn-mobile en su lugar.
   ─────────────────────────────────────────────────────────────────── */

.hero-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 40px;
  margin-top: 16px;
  padding: 0 24px;
  border-radius: 4px;
  background: #D2D2D2;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  color: #0F0F0F;
  line-height: 1;
  cursor: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-more:hover {
  background: #D2D2D2;
  box-shadow: inset 0 0 0 1px #D2D2D2;
  color: #0F0F0F;
}


/* ── BOTÓN MÓVIL (VARIANTE GRIS) ────────────────────────────────────
   Solo visible en pantallas ≤768px.
   Aparece bajo el hero text en lugar de .hero-more.
   display: none → activado por @media en pages/home.css
   ─────────────────────────────────────────────────────────────────── */

.btn-mobile {
  display: none;
  font-family: 'Suisse Intl', sans-serif;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 40px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 400;
  color: #0F0F0F;
  background: #D2D2D2;
  border: none;
  border-radius: 4px;
  box-shadow: none;
  line-height: 1;
  cursor: none;
  text-decoration: none;
  vertical-align: middle;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-mobile:hover {
  background: #D2D2D2;
  box-shadow: inset 0 0 0 1px #D2D2D2;
  color: #0F0F0F;
}


/* ── BOTÓN MÓVIL CLARO (PARA TEXTO EN MODO OSCURO) ─────────────────
   Variante clara del botón, usada cuando el fondo es oscuro.
   display: none → activado por @media en pages/home.css
   ─────────────────────────────────────────────────────────────────── */

.btn-mobile-light {
  display: none;
  font-family: 'Suisse Intl', sans-serif;
  font-size: var(--fs);
  font-weight: 500;
  color: #0f0f0f;
  background: #FFFFFF;
  border: none;
  border-radius: 0;
  padding: 2px 8px 3px;
  line-height: var(--fs);
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
}
