/* ==========================================================================
   YIFEL BALESTRINI — Nails y Beauty — sitio público
   Estilo "app dashboard" — tarjetas suaves pastel, accesos rápidos
   circulares, barra de navegación inferior en móvil.
   Mobile-first · Bootstrap 5 como base + estilos propios
   ========================================================================== */

:root {
  --color-azul-oscuro:  #3E5468;
  --color-azul:         #7A8FA4;
  --color-azul-claro:   #C5D1DB;
  --color-taupe:        #A69787;
  --color-birch:        #D9CDBE;
  --color-dorado:       #C9A96B;
  --color-crema:        #F2EDE6;
  --color-texto:        #2E3A45;

  --color-suave: #EDEBE6;   /* fondo tinte para íconos/circulos */

  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans:   'Montserrat', 'Segoe UI', Arial, sans-serif;

  --shadow-soft: 0 10px 28px rgba(46, 58, 69, .09);
  --shadow-card: 0 14px 34px rgba(46, 58, 69, .12);

  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 100px;

  --topbar-h: 68px;
  --tabbar-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-texto);
  background: var(--color-crema);
  padding-top: var(--topbar-h);
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 991.98px) {
  body { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom)); }
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--color-azul-oscuro);
  font-weight: 600;
  margin: 0 0 .6rem;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p, h1, h2, h3, h4, h5 { overflow-wrap: break-word; word-wrap: break-word; }
p { line-height: 1.75; }

a { color: var(--color-azul-oscuro); text-decoration: none; }

.script-line {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  color: var(--color-dorado);
  margin-bottom: .2rem;
  line-height: 1;
  font-weight: 400;
}

section { padding: 3.5rem 0; }
@media (min-width: 992px) { section { padding: 5.5rem 0; } }

.btn, .form-control, .form-select, button { min-height: 44px; }

/* ---------- Barra superior simple ---------- */
.topbar-public {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  height: var(--topbar-h);
  background: #fff;
  box-shadow: 0 2px 14px rgba(46,58,69,.06);
  display: flex;
  align-items: center;
}
.topbar-public .container { display: flex; align-items: center; justify-content: space-between; }
.topbar-brand { display: flex; align-items: center; gap: .6rem; }
.topbar-brand img {
  height: 30px;
  filter: brightness(0) drop-shadow(.4px 0 0 #000) drop-shadow(-.4px 0 0 #000) drop-shadow(0 .4px 0 #000) drop-shadow(0 -.4px 0 #000);
}
.topbar-brand-name { font-family: var(--font-serif); font-weight: 700; color: var(--color-azul-oscuro); font-size: 1.05rem; }

.topbar-links { display: none; align-items: center; gap: .3rem; }
@media (min-width: 992px) {
  .topbar-links { display: flex; }
}
.topbar-links a {
  color: var(--color-azul-oscuro);
  font-weight: 600;
  font-size: .9rem;
  padding: .55rem .9rem;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}
.topbar-links a.active, .topbar-links a:hover { background: var(--color-suave); color: var(--color-dorado); }

/* ---------- Barra de navegación inferior (móvil, estilo app) ---------- */
.bottom-tab-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 -6px 24px rgba(46,58,69,.1);
  padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (min-width: 992px) { .bottom-tab-bar { display: none; } }
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  color: var(--color-azul);
  font-size: .68rem;
  font-weight: 600;
  flex: 1;
  padding: .3rem 0;
}
.tab-item i {
  font-size: 1.25rem;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all .2s ease;
}
.tab-item.active { color: var(--color-azul-oscuro); }
.tab-item.active i { background: var(--color-dorado); color: #fff; }

/* ---------- Botones flotantes de contacto ---------- */
.floating-contacts {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--tabbar-h) + 1rem + env(safe-area-inset-bottom));
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
@media (min-width: 992px) {
  .floating-contacts { bottom: 1.5rem; }
}
.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-btn:hover { transform: scale(1.08); color: #fff; box-shadow: 0 18px 40px rgba(46,58,69,.28); }
.floating-btn.wa { background: var(--color-azul-oscuro); }
.floating-btn.ig { background: linear-gradient(135deg, var(--color-dorado), var(--color-taupe)); }

/* ---------- Botones ---------- */
.cta-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: linear-gradient(135deg, var(--color-azul-oscuro), var(--color-azul));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 1.5rem;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 14px 30px rgba(62,84,104,.28);
  transition: all .22s ease;
}
.cta-primary-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(62,84,104,.38); color: #fff; }

.btn-hero, .btn-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--color-dorado);
  color: var(--color-azul-oscuro);
  font-weight: 700;
  font-size: .92rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 12px 26px rgba(201,169,107,.32);
  transition: all .22s ease;
  min-height: 50px;
}
.btn-hero:hover, .btn-cta-pill:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,169,107,.45); color: var(--color-azul-oscuro); }

.btn-outline-agendar {
  display: inline-block;
  border: 1.5px solid var(--color-azul-oscuro);
  color: var(--color-azul-oscuro);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: all .2s ease;
}
.btn-outline-agendar:hover { background: var(--color-azul-oscuro); color: #fff; }

.link-ver-todos {
  color: var(--color-azul-oscuro);
  font-weight: 600;
  font-size: .9rem;
  border-bottom: 1px solid var(--color-dorado);
  padding-bottom: .2rem;
  transition: color .2s ease;
}
.link-ver-todos:hover { color: var(--color-dorado); }

/* ---------- Tarjeta genérica suave ---------- */
.soft-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

/* ---------- Tarjeta de bienvenida (home) ---------- */
.welcome-card {
  background: linear-gradient(150deg, #fff 0%, var(--color-crema) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.welcome-card .script-line { margin-bottom: .1rem; }
.welcome-card h1 { margin-bottom: .2rem; }
.welcome-card p { margin: 0; color: var(--color-azul); font-size: .92rem; }
.welcome-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-dorado);
  flex-shrink: 0;
}

/* ---------- Accesos rápidos circulares ---------- */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.quick-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-align: center;
  padding: .3rem;
}
.quick-action-item .qa-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-azul-claro);
  color: var(--color-azul-oscuro);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: all .2s ease;
  box-shadow: var(--shadow-soft);
}
.quick-action-item:hover .qa-icon { background: var(--color-dorado); color: #fff; transform: translateY(-2px); }
.quick-action-item span { font-size: .78rem; font-weight: 600; color: var(--color-azul-oscuro); }

/* ---------- Tarjeta destacada (estilo "próxima cita") ---------- */
.featured-card {
  background: var(--color-suave);
  border: 1px solid var(--color-azul-claro);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.featured-card .featured-img {
  width: 76px; height: 76px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.featured-card .featured-body { flex: 1; min-width: 0; }
.featured-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.featured-card .featured-meta { font-size: .82rem; color: var(--color-azul); display: flex; flex-wrap: wrap; gap: .2rem 1rem; margin-bottom: .5rem; }
.featured-card .featured-meta i { color: var(--color-dorado); margin-right: .3rem; }
.featured-card .featured-persona { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--color-azul-oscuro); }
.featured-card .featured-persona img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* ---------- Tarjeta de promoción ---------- */
.promo-card {
  background: linear-gradient(120deg, var(--color-birch) 0%, var(--color-crema) 100%);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-card);
}
.promo-card .promo-text { flex: 1; }
.promo-card h3 { margin-bottom: .3rem; }
.promo-card p { margin: 0; font-size: .88rem; color: var(--color-texto); }
.promo-card img {
  width: 110px; height: 110px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

/* ---------- Encabezado simple de páginas internas (sin foto) ---------- */
.page-header-soft {
  text-align: center;
  padding: 1rem 0 .5rem;
}
.page-header-soft .page-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--color-dorado);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* ---------- Tarjetas de servicio ---------- */
.servicio-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.servicio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.servicio-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--color-birch);
  overflow: hidden;
}
.servicio-card-img img { width: 100%; height: 100%; object-fit: cover; }
.servicio-card-img .servicio-duracion-chip {
  position: absolute;
  top: .7rem; left: .7rem;
  background: #fff;
  color: var(--color-azul-oscuro);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: .3rem;
  box-shadow: var(--shadow-soft);
}
.servicio-card-body {
  padding: 1.3rem 1.1rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servicio-card-body h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.servicio-precio { font-weight: 700; color: var(--color-dorado); margin-bottom: 1rem; font-size: 1.02rem; }
.servicio-card-body .btn-outline-agendar { margin-top: auto; }

/* ---------- Mini galería / galería completa ---------- */
.galeria-item-wrap { position: relative; }
.mini-galeria-item, .galeria-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  border: none;
  padding: 0;
  width: 100%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.mini-galeria-item img, .galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.mini-galeria-item:hover img, .galeria-item:hover img { transform: scale(1.06); }

.galeria-heart {
  position: absolute;
  top: .55rem; right: .55rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-azul-oscuro);
  font-size: 1rem;
  z-index: 2;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: all .2s ease;
}
.galeria-heart:hover { transform: scale(1.1); }
.galeria-heart.liked { color: #C9546B; }

.galeria-filtros { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip-filtro {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--color-azul-claro);
  color: var(--color-azul-oscuro);
  font-size: .82rem;
  font-weight: 600;
  padding: .5rem 1.05rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .2s ease;
}
.chip-filtro:hover { border-color: var(--color-dorado); }
.chip-filtro.active { background: var(--color-azul-oscuro); border-color: var(--color-azul-oscuro); color: #fff; }

/* ---------- Sobre mí / Quiénes somos ---------- */
.sobre-mi-foto {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.section-valores { background: var(--color-suave); border-radius: var(--radius-xl); }
.valor-icono {
  width: 62px; height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--color-dorado);
  box-shadow: var(--shadow-soft);
}

/* ---------- Avatar mini / status pill (reutilizados en agenda) ---------- */
.avatar-mini { display: flex; align-items: center; gap: .7rem; }
.avatar-mini img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-dorado); }
.avatar-mini .avatar-nombre { font-weight: 700; font-size: .92rem; color: var(--color-azul-oscuro); }
.avatar-mini .avatar-rol { font-size: .74rem; color: var(--color-azul); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--color-dorado);
  color: #fff;
  border: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}

/* ---------- CTA final ---------- */
.cta-final { background: var(--color-azul-oscuro); color: #fff; text-align: center; border-radius: var(--radius-xl); }
.cta-final h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-final .script-line { color: var(--color-dorado); }

/* ---------- Footer ---------- */
.footer-public { background: var(--color-texto); color: rgba(255,255,255,.85); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.footer-logo { filter: brightness(0) invert(1); opacity: .95; }
.footer-heading { color: #fff; font-family: var(--font-serif); font-weight: 600; margin-bottom: .6rem; }
.footer-public a { color: rgba(255,255,255,.85); }
.footer-social a {
  color: #fff; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--color-dorado); color: var(--color-azul-oscuro); }
.btn-whatsapp-footer {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff !important;
  font-weight: 700; font-size: .85rem;
  padding: .65rem 1.3rem; border-radius: var(--radius-pill);
}
.footer-divider { border-color: rgba(255,255,255,.15); margin: 2.5rem 0 1.25rem; }
.footer-copy { color: rgba(255,255,255,.55); }
.footer-copy a { color: rgba(255,255,255,.7); text-decoration: underline; transition: color .2s ease; }
.footer-copy a:hover { color: var(--color-dorado); }

/* ---------- Modal de invitación ---------- */
.modal-invitacion {
  background: #fff;
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: var(--shadow-card);
}
.modal-invitacion-deco { font-size: 1.4rem; color: var(--color-dorado); margin-bottom: .8rem; }
.modal-invitacion-texto {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-azul-oscuro);
  line-height: 1.5;
  font-style: italic;
  max-width: 380px;
  margin: 0 auto;
}
.btn-agendar-modal {
  display: inline-block;
  background: var(--color-azul-oscuro);
  color: #fff !important;
  font-weight: 700;
  padding: .8rem 2.1rem;
  border-radius: var(--radius-pill);
  margin-top: 1.4rem;
  transition: background .2s ease;
}
.btn-agendar-modal:hover { background: var(--color-dorado); color: var(--color-azul-oscuro) !important; }
.link-mas-tarde { color: var(--color-azul); font-size: .85rem; text-decoration: underline; }
.btn-close-invitacion {
  position: absolute; top: .75rem; right: .9rem;
  background: none; border: none;
  font-size: 1.6rem; line-height: 1;
  color: var(--color-azul);
  cursor: pointer;
  z-index: 2;
}

/* ---------- Lightbox de galería ---------- */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(46,58,69,.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; }

/* ---------- Agenda pública ---------- */
.agenda-label { font-family: var(--font-serif); font-weight: 600; color: var(--color-azul-oscuro); font-size: 1.02rem; }
.form-select:focus, .form-control:focus { border-color: var(--color-dorado); box-shadow: 0 0 0 .2rem rgba(201,169,107,.2); }
.form-select, .form-control { border-radius: var(--radius-md); }

.agenda-dias { display: flex; gap: .6rem; overflow-x: auto; padding-bottom: .3rem; }
.dia-pill {
  flex-shrink: 0;
  min-width: 60px;
  background: var(--color-suave);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: .6rem .4rem;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  cursor: pointer;
  transition: all .2s ease;
}
.dia-pill .dia-dow { font-size: .66rem; text-transform: uppercase; color: var(--color-azul); letter-spacing: .04em; }
.dia-pill .dia-num { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: var(--color-azul-oscuro); }
.dia-pill .dia-lleno { font-size: .58rem; color: var(--color-taupe); }
.dia-pill:hover:not(:disabled) { border-color: var(--color-dorado); }
.dia-pill.active { background: var(--color-azul-oscuro); }
.dia-pill.active .dia-dow { color: rgba(255,255,255,.75); }
.dia-pill.active .dia-num { color: #fff; }
.dia-pill.sin-cupos, .dia-pill:disabled { opacity: .45; cursor: not-allowed; }

.agenda-horarios { display: flex; flex-wrap: wrap; gap: .6rem; min-height: 44px; }
.hora-pill {
  background: var(--color-suave);
  border: 1px solid transparent;
  color: var(--color-azul-oscuro);
  border-radius: var(--radius-pill);
  padding: .55rem 1.1rem;
  font-weight: 600;
  font-size: .86rem;
  cursor: pointer;
  transition: all .2s ease;
  min-height: 44px;
}
.hora-pill:hover { background: var(--color-dorado); color: #fff; }

.agenda-resumen {
  background: var(--color-suave);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .6rem;
  color: var(--color-azul-oscuro);
  font-weight: 600;
}
.agenda-resumen i { color: var(--color-dorado); font-size: 1.2rem; }
.btn-cambiar { margin-left: auto; background: none; border: none; color: var(--color-azul); font-size: .85rem; text-decoration: underline; cursor: pointer; }

.agenda-inspo-row { display: flex; gap: .5rem; margin: 1rem 0 1.2rem; }
.agenda-inspo-row img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: var(--shadow-soft); margin-left: -14px; }
.agenda-inspo-row img:first-child { margin-left: 0; }
.agenda-inspo-row .inspo-mas {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-suave); color: var(--color-azul-oscuro);
  font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin-left: -14px; border: 2px solid #fff; box-shadow: var(--shadow-soft);
}

.agenda-fecha-box {
  background: var(--color-suave);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  color: var(--color-azul-oscuro);
  margin-bottom: 1.2rem;
}
.agenda-fecha-box .fecha-label { font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-azul); margin-bottom: .2rem; }
.agenda-fecha-box .fecha-valor { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; }

.agenda-disclaimer { font-size: .76rem; color: var(--color-azul); text-align: center; margin-top: .9rem; }
.confirmacion-icono { font-size: 3.2rem; color: var(--color-dorado); margin-bottom: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  section { padding: 2.75rem 0; }
  .quick-actions-grid { gap: .5rem; }
  .promo-card { flex-direction: column; text-align: center; }
  .welcome-card { flex-direction: row; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}
