/* Sebas en Pañales — sebastiandavila.info
   Home page styles. Recreated from the Claude Design handoff (Home.dc.html).
   Layout styling lives inline in index.html (kept 1:1 with the design);
   this file holds resets, responsive visibility, hover states and a11y. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }

@keyframes sebFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes sebBadge { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }

/* Skip link (accessibility) */
.skip-link {
  position: absolute; top: -48px; left: 0; background: #8B5E3C; color: #fff;
  padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0; text-decoration: none;
  font-weight: 600; font-size: 14px; transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* Breadcrumb separators (via CSS so the <ol> only contains <li>) */
.seb-crumb { display: inline; }
.seb-crumb + .seb-crumb::before { content: "→"; color: #999; margin: 0 8px; }

/* ---- Responsive visibility (replaces the design's JS breakpoint at 860px) ---- */
@media (max-width: 859px) { .seb-desktop { display: none !important; } }
@media (min-width: 860px) { .seb-mobile { display: none !important; } }

/* Mobile nav menu is toggled open by JS */
#seb-mobile-menu { display: none; }
#seb-mobile-menu.is-open { display: flex; }

/* ---- Hover states (were style-hover="…" in the design) ---- */
.seb-card { transition: transform .25s ease, box-shadow .25s ease; }
.seb-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(42,35,30,0.15); }

.seb-mood-img { transition: transform .4s ease; }
.seb-mood-tile:hover .seb-mood-img { transform: scale(1.03); }

.seb-outline-btn { transition: background .25s ease, color .25s ease; }
.seb-outline-btn:hover { background: #8B5E3C; color: #fff; }

.seb-cta-ghost { transition: background .25s ease; }
.seb-cta-ghost:hover { background: rgba(255,255,255,0.1); }

/* Subtle lift on the primary brown CTAs (polish; not visible at rest) */
.seb-btn-primary { transition: transform .2s ease, box-shadow .2s ease; }
.seb-btn-primary:hover { transform: translateY(-2px); }

/* Focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid #8B5E3C; outline-offset: 2px; border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ---- Package / album buttons (session & package pages) ---- */
.seb-fill-hover { transition: background .2s ease, color .2s ease; }
.seb-fill-hover:hover { background: #8B5E3C; color: #fff; }

.seb-size-btn {
  border: none; padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all .2s ease; white-space: nowrap;
  background: transparent; color: #8B5E3C;
}
.seb-size-btn.is-active { background: #8B5E3C; color: #fff; }

/* ---- FAQ accordion (native <details>) ---- */
details.seb-faq { border: 1px solid rgba(42,35,30,0.1); border-radius: 16px; overflow: hidden; background: #fff; }
details.seb-faq > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 24px; font-family: 'Geist', sans-serif; font-weight: 700;
  font-size: clamp(16px,1.8vw,19px); letter-spacing: -0.01em; color: #2A231E;
}
details.seb-faq > summary::-webkit-details-marker { display: none; }
details.seb-faq > summary::after { content: "+"; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 26px; color: #8B5E3C; line-height: 1; flex: 0 0 auto; }
details.seb-faq[open] > summary::after { content: "\00d7"; }
details.seb-faq > .seb-faq-body { padding: 0 24px 24px; color: #6E5F50; font-size: 15px; line-height: 1.6; }
details.seb-faq > .seb-faq-body ul { margin: 12px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }

/* ---- FAQ category tabs ---- */
.seb-tab {
  padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(42,35,30,0.15);
  background: #fff; color: #5A4A3D; font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: inherit; white-space: nowrap; transition: all .2s ease;
}
.seb-tab.is-active { background: #8B5E3C; color: #fff; border-color: #8B5E3C; }

/* ---- Portafolio gallery ---- */
.pf-filters { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; }
.pf-grid { column-width: clamp(240px, 26vw, 300px); column-gap: 16px; }
.pf-card { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; background: #EFE4D6; }
.pf-card img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .4s ease; }
.pf-card:hover img { transform: scale(1.04); }
.pf-cat { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.55); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.pf-ov { position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease; }
.pf-card:hover .pf-ov, .pf-card:focus-within .pf-ov { opacity: 1; }
.pf-ov-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 14px; background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0)); }
.pf-ov-name { color: #fff; font-weight: 700; font-size: 14px; }
.pf-ov-meta { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 1px; }
.pf-ov-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; white-space: nowrap; }

/* ---- Portafolio lightbox ---- */
.pf-lb { position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.95); display: flex; flex-direction: column; }
.pf-lb-top { flex: 0 0 auto; height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 clamp(14px,3vw,24px); background: rgba(0,0,0,0.4); }
.pf-lb-name { color: #fff; font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pf-lb-meta { color: rgba(255,255,255,0.6); font-size: 13px; }
.pf-lb-count { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; flex: 0 0 auto; }
.pf-lb-close { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.pf-lb-stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 12px; }
.pf-lb-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }
.pf-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); color: #fff; font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; }
.pf-arrow.prev { left: 12px; } .pf-arrow.next { right: 12px; }
.pf-dots { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 16px; flex-wrap: wrap; }
.pf-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; }
.pf-dot.is-active { background: #fff; }
.pf-lb-cta { flex: 0 0 auto; min-height: 64px; display: flex; align-items: center; justify-content: center; padding: 12px 16px; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0)); }
.pf-lb-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: #8B5E3C; color: #fff; text-decoration: none; font-weight: 700; font-size: 15px; padding: 12px 28px; border-radius: 8px; text-align: center; box-shadow: 0 10px 26px rgba(0,0,0,0.4); }

/* ---- Catálogo cotizador ---- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,150px),1fr)); gap: 12px; }
.cat-grid-wide { grid-template-columns: repeat(auto-fit, minmax(min(100%,240px),1fr)); }
.cat-card { position: relative; background: #fff; border: 1px solid rgba(42,35,30,0.12); border-radius: 14px; padding: 18px 16px; cursor: pointer; transition: box-shadow .2s ease; }
.cat-card:hover { box-shadow: 0 8px 20px rgba(42,35,30,0.1); }
.cat-card.is-sel { border: 2px solid #8B5E3C; padding: 17px 15px; }
.cat-card.cat-center { text-align: center; }
.cat-name { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: #2A231E; }
.cat-price { margin-top: 6px; font-family: 'Geist', sans-serif; font-weight: 800; font-size: 16px; color: #8B5E3C; }
.cat-line2 { margin-top: 6px; font-size: 14px; color: #6E5F50; }
.cat-line2 b { font-family: 'Geist', sans-serif; color: #8B5E3C; }
.cat-check { position: absolute; top: 9px; right: 9px; width: 22px; height: 22px; border-radius: 50%; background: #8B5E3C; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.cat-pop { position: absolute; top: -10px; left: 16px; background: #8B5E3C; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 4px 11px; border-radius: 999px; }
.cat-qty-row { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cat-qlabel { font-weight: 700; font-size: 15px; color: #2A231E; }
.cat-step { display: inline-flex; align-items: center; gap: 2px; border: 1px solid rgba(42,35,30,0.16); border-radius: 8px; overflow: hidden; background: #fff; }
.cat-step button { width: 38px; height: 38px; border: none; background: #FAF6EF; color: #8B5E3C; font-size: 19px; cursor: pointer; }
.cat-step span { min-width: 42px; text-align: center; font-weight: 700; font-size: 15px; }
.cat-step-wrap { margin-top: 14px; }
.cat-sub { margin-top: 16px; font-size: 15px; color: #5A4A3D; font-weight: 600; }
.cat-center-t { text-align: center; }
.cat-var { display: inline-flex; gap: 4px; background: #F0E6D9; border-radius: 8px; padding: 3px; margin-top: 14px; }
.cat-var button { border: none; padding: 7px 14px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; background: transparent; color: #8B5E3C; }
.cat-var button.is-active { background: #8B5E3C; color: #fff; }
.cat-det { position: relative; background: #fff; border: 1px solid rgba(42,35,30,0.1); border-radius: 12px; padding: 18px 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cat-det-l { display: flex; align-items: center; gap: 12px; }
.cat-box { width: 24px; height: 24px; border-radius: 6px; border: 2px solid rgba(42,35,30,0.3); background: transparent; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; flex: 0 0 auto; }
.cat-box.is-on { border-color: #8B5E3C; background: #8B5E3C; }
.cat-oline { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(42,35,30,0.08); font-size: 15px; color: #3A2E24; }
.cat-oprice { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 15px; color: #2A231E; white-space: nowrap; }
.cat-ototal { padding: 18px 0 4px; border-bottom: none; }
.cat-ototal span:first-child { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 18px; color: #2A231E; letter-spacing: 0.02em; }
.cat-ototal-n { font-family: 'Geist', sans-serif; font-weight: 900; font-size: 24px; color: #8B5E3C; letter-spacing: -0.02em; white-space: nowrap; }

/* ---- Personaliza wizard ---- */
.pz-pkg { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 22px 20px; border-radius: 12px; cursor: pointer; font-family: inherit; transition: all .2s ease; border: 2px solid #8B5E3C; background: transparent; color: #8B5E3C; }
.pz-pkg.is-sel { background: #8B5E3C; color: #fff; box-shadow: 0 12px 28px rgba(139,94,60,0.32); }
.pz-pkg-name { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.pz-pkg-count { font-size: 14px; font-weight: 600; }
.pz-progress { display: flex; align-items: flex-start; max-width: 640px; margin: clamp(20px,3vw,32px) auto clamp(32px,4vw,48px); }
.pz-step { flex: 1; display: flex; flex-direction: column; align-items: center; }
.pz-step-circle { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Geist', sans-serif; font-weight: 800; font-size: 15px; border: 2px solid rgba(42,35,30,0.2); color: #A89A8C; background: #fff; }
.pz-step-circle.cur { border-color: #8B5E3C; color: #8B5E3C; }
.pz-step-circle.done { background: #8B5E3C; border-color: #8B5E3C; color: #fff; }
.pz-step-name { margin-top: 8px; font-size: 12px; font-weight: 600; color: #A89A8C; text-align: center; }
.pz-step-name.cur { color: #8B5E3C; }
.pz-grid2 { display: grid; grid-template-columns: 1fr; gap: clamp(20px,3vw,36px); align-items: start; }
@media (min-width: 860px) { .pz-grid2 { grid-template-columns: 1fr 260px; } }
.pz-pose-head { text-align: center; margin-bottom: 20px; }
.pz-pose-icon { font-size: 44px; line-height: 1; }
.pz-pose-img { width: clamp(120px, 32vw, 180px); aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; display: block; margin: 0 auto 14px; box-shadow: 0 10px 26px rgba(42,35,30,0.14); }
.pz-pose-head h2 { margin: 12px 0 4px; font-family: 'Geist', sans-serif; font-weight: 800; font-size: clamp(24px,3vw,34px); letter-spacing: -0.02em; color: #2A231E; }
.pz-pose-head p { margin: 0 0 10px; color: #6E5F50; font-size: 15px; }
.pz-pal-badge { display: inline-block; background: #F0E6D9; color: #8B5E3C; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 13px; border-radius: 999px; }
.pz-tip { background: #FBF3E9; border: 1px solid rgba(139,94,60,0.22); border-radius: 12px; padding: 14px 18px; margin-bottom: 24px; display: flex; gap: 10px; align-items: flex-start; }
.pz-tip span { font-size: 16px; flex: 0 0 auto; }
.pz-tip p { margin: 0; color: #5A4A3D; font-size: 14px; line-height: 1.5; }
.pz-colors { display: grid; grid-template-columns: repeat(auto-fill, minmax(52px,1fr)); gap: 14px 8px; justify-items: center; }
.pz-cwrap { display: flex; flex-direction: column; align-items: center; }
.pz-color { width: 44px; height: 44px; border-radius: 50%; cursor: pointer; border: 2px solid rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; transition: transform .15s ease; }
.pz-color:hover { transform: scale(1.08); }
.pz-color.is-sel { box-shadow: 0 0 0 3px #fff, 0 0 0 5px #8B5E3C; }
.pz-color span { color: #fff; font-size: 18px; opacity: 0; text-shadow: 0 1px 3px rgba(0,0,0,0.6); }
.pz-color.is-sel span { opacity: 1; }
.pz-clabel { margin-top: 6px; font-size: 11px; font-weight: 600; color: #6B5E50; }
.pz-clabel.is-sel { color: #8B5E3C; }
.pz-selbox { margin-top: 24px; display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid rgba(42,35,30,0.12); border-radius: 12px; padding: 14px 18px; box-shadow: 0 6px 18px rgba(42,35,30,0.06); }
.pz-seldot { width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto; border: 1px solid rgba(0,0,0,0.1); }
.pz-sel-cap { font-size: 12px; color: #6B5E50; font-weight: 600; }
.pz-sel-name { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 16px; color: #2A231E; }
.pz-clear { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(42,35,30,0.16); background: #FAF6EF; color: #8B5E3C; font-size: 18px; cursor: pointer; flex: 0 0 auto; }
.pz-nav { margin-top: 28px; display: flex; gap: 12px; }
.pz-nav-prev { flex: 0 0 auto; background: transparent; color: #8B5E3C; border: 1.5px solid #8B5E3C; font-weight: 700; font-size: 15px; padding: 15px 24px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.pz-nav-next { flex: 1; background: #8B5E3C; color: #fff; border: none; font-weight: 700; font-size: 16px; padding: 15px 24px; border-radius: 8px; cursor: pointer; font-family: inherit; box-shadow: 0 10px 26px rgba(139,94,60,0.34); }
.pz-nav-next.is-disabled { opacity: .45; pointer-events: none; box-shadow: none; }
.pz-aside { background: #FAF6EF; border: 1px solid rgba(42,35,30,0.08); border-radius: 14px; padding: 22px; }
@media (min-width: 860px) { .pz-aside { position: sticky; top: 90px; } }
.pz-aside-t { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 0.02em; color: #2A231E; text-transform: uppercase; margin-bottom: 16px; }
.pz-sum-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pz-sum-dot { width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto; border: 1px solid rgba(0,0,0,0.08); }
.pz-sum-name { font-weight: 700; font-size: 14px; color: #2A231E; }
.pz-sum-val { font-size: 13px; color: #6B5E50; }
.pz-sum-check { color: #8B5E3C; font-weight: 800; font-size: 15px; }
.pz-final-head { text-align: center; margin-bottom: 32px; }
.pz-final-head h2 { margin: 14px 0 8px; font-family: 'Geist', sans-serif; font-weight: 800; font-size: clamp(26px,3.4vw,40px); letter-spacing: -0.03em; color: #2A231E; }
.pz-final-head p { margin: 0; color: #6E5F50; font-size: 16px; line-height: 1.5; }
.pz-final-card { background: #fff; border: 1px solid rgba(139,94,60,0.3); border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(42,35,30,0.08); }
.pz-final-row { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid rgba(42,35,30,0.07); }
.pz-final-dot { width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto; border: 1px solid rgba(0,0,0,0.08); }
.pz-final-pose { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 16px; color: #2A231E; }
.pz-final-color { font-size: 14px; color: #6E5F50; }
.pz-final-send { margin-top: 24px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #0A2E17; text-decoration: none; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; padding: 18px 20px; border-radius: 8px; box-shadow: 0 12px 30px rgba(37,211,102,0.4); box-sizing: border-box; }
.pz-final-reset { margin-top: 12px; width: 100%; background: transparent; color: #8B5E3C; border: 1.5px solid #8B5E3C; font-weight: 700; font-size: 15px; padding: 15px 20px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.pz-ov { position: fixed; inset: 0; z-index: 500; background: rgba(30,23,18,0.6); display: flex; align-items: center; justify-content: center; padding: 24px; }
.pz-modal { background: #fff; border-radius: 16px; max-width: 400px; width: 100%; padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.pz-modal h3 { margin: 0 0 10px; font-family: 'Geist', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: #2A231E; }
.pz-modal p { margin: 0 0 22px; color: #6E5F50; font-size: 15px; line-height: 1.55; }
.pz-modal-btns { display: flex; gap: 10px; }
.pz-btn-ghost { flex: 1; background: transparent; color: #5A4A3D; border: 1.5px solid rgba(42,35,30,0.2); font-weight: 700; font-size: 15px; padding: 14px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.pz-btn-solid { flex: 1; background: #8B5E3C; color: #fff; border: none; font-weight: 700; font-size: 15px; padding: 14px; border-radius: 8px; cursor: pointer; font-family: inherit; }

/* ============================================================
   PREMIUM POLISH — depth, hover, micro-interactions (global)
   ============================================================ */
/* Cards: smoother lift + deeper hover shadow */
.seb-card { transition: transform 350ms cubic-bezier(0.16,1,0.3,1), box-shadow 350ms cubic-bezier(0.16,1,0.3,1); }
.seb-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.14) !important; }

/* Moodboard tiles: soft shadow that deepens on hover */
.seb-mood-tile { box-shadow: 0 6px 24px rgba(0,0,0,0.10); transition: transform 400ms ease, box-shadow 400ms ease; }
.seb-mood-tile:hover { box-shadow: 0 14px 38px rgba(0,0,0,0.18); }

/* Primary CTA buttons: lift on hover, press on active */
.seb-btn-primary, .seb-agendar { transition: transform 250ms ease, box-shadow 250ms ease; }
.seb-btn-primary:hover, .seb-agendar:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,94,60,0.35) !important; }
.seb-btn-primary:active, .seb-agendar:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(139,94,60,0.2) !important; }

/* Form fields: terracotta focus ring */
input, textarea, select { transition: border-color 200ms ease, box-shadow 200ms ease; }
input:focus, textarea:focus, select:focus { border-color: #8B5E3C !important; box-shadow: 0 0 0 3px rgba(139,94,60,0.15) !important; }

/* Nav links: underline grows left→right on hover */
.seb-nav-link { position: relative; }
.seb-nav-link::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: #8B5E3C; transition: width 250ms ease; }
.seb-nav-link:hover::after { width: 100%; }

/* Logo: subtle fade on hover (affordance) */
.seb-logo { transition: opacity 200ms ease; }
.seb-logo:hover { opacity: 0.82; }

/* "Agendar Ahora": gentle pulse once user scrolls (added by JS) */
@keyframes sebPulse { 0%,100% { box-shadow: 0 6px 18px rgba(139,94,60,0.28), 0 0 0 0 rgba(139,94,60,0.45); } 50% { box-shadow: 0 6px 18px rgba(139,94,60,0.28), 0 0 0 9px rgba(139,94,60,0); } }
.seb-agendar.is-pulsing { animation: sebPulse 3s ease 2; }

/* WhatsApp FAB: bounce in on load (mobile) */
@keyframes sebFabIn { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: no-preference) {
  a[aria-label="WhatsApp"] { animation: sebFabIn 500ms cubic-bezier(0.34,1.56,0.64,1) 2s both; }
}
@media (prefers-reduced-motion: reduce) {
  .seb-card, .seb-mood-tile, .seb-btn-primary, .seb-agendar { transition-duration: 150ms; }
  .seb-agendar.is-pulsing { animation: none; }
}
