:root {
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --accent: #E88821;
  --accent-soft: rgba(232, 136, 33, 0.5);
  --accent-tint: rgba(232, 136, 33, 0.08);

  --brand-green: #2E3E36;
  --brand-green-soft: #4A5E54;
  --brand-green-tint: rgba(46, 62, 54, 0.06);

  --bg: #F4F1EA;
  --surface: #FBF9F4;
  --surface-2: #EFEBE2;

  --ink: #1F2A24;
  --ink-2: #4A5550;
  --ink-3: #8C8A80;
  --ink-4: #B8B4A8;

  --line: rgba(46, 62, 54, 0.12);
  --line-soft: rgba(46, 62, 54, 0.06);

  --success: #3B6D11;

  --radius: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hoja de iconos SVG: solo define <symbol>, nunca se pinta. */
.svg-sprite {
  display: none;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

/* ========== TOPBAR ========== */
.topbar {
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.top-brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-nav-link {
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 450;
  transition: color 0.15s;
}

.top-nav-link:hover {
  color: var(--ink);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-login {
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.top-login:hover {
  color: var(--accent);
}

.top-cta {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-cta:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.top-cta svg {
  width: 12px;
  height: 12px;
}

/* ========== HERO ========== */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero-text {
  padding: 20px 0;
}

.hero-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-meta::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 26px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-title-line {
  display: inline-block;
}

.hero-lead {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #D17A19;
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 13px 24px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-3);
}

.hero-trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--success);
}

.hero-trust-icon svg,
.hero-trust-icon img {
  width: 100%;
  height: 100%;
}

/* ========== Hero phone mockup ========== */
.hero-mockup-wrap {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.05;
}

.hero-mockup {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 136, 33, 0.12) 0%, transparent 65%);
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 62%;
  aspect-ratio: 9 / 18.5;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(46, 62, 54, 0.25), 0 0 0 1px rgba(31, 42, 36, 0.5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F4F1EA;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-statusbar {
  height: 32px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 26px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}

.phone-statusbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-statusbar-dot {
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.phone-statusbar-battery {
  width: 16px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  position: relative;
  margin-left: 2px;
}

.phone-statusbar-battery::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--ink);
  border-radius: 1px;
}

.phone-content {
  flex: 1;
  padding: 12px 14px 14px;
  overflow: hidden;
}

.phone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.phone-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.phone-title-action {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}

.phone-day-meta {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-day-meta::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--accent);
}

/* separador del bloque de día cuando no es el primero */
.phone-day-meta.is-next {
  margin-top: 12px;
}

.phone-appt {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-appt.featured {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.phone-appt-time {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  flex-shrink: 0;
  width: 38px;
  letter-spacing: -0.01em;
}

.phone-appt.featured .phone-appt-time {
  color: var(--accent);
}

.phone-appt-info {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

.phone-appt-name {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-appt.featured .phone-appt-name {
  color: #FBF9F4;
}

.phone-appt-type {
  font-size: 9px;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-appt.featured .phone-appt-type {
  color: rgba(244, 241, 234, 0.6);
}

.phone-appt-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.phone-appt-status.pending {
  background: var(--accent);
}

.phone-appt.featured .phone-appt-status {
  background: var(--accent);
}

/* Floating notification card */
.notif-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(46, 62, 54, 0.15);
  width: 48%;
  max-width: 220px;
}

.notif-card.notif-1 {
  bottom: 18%;
  left: -2%;
  transform: rotate(-4deg);
}

.notif-card.notif-2 {
  top: 12%;
  right: -2%;
  transform: rotate(3deg);
}

.notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.notif-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.notif-icon.wa {
  background: #25D366;
}

.notif-icon.mail {
  background: var(--accent);
}

.notif-icon svg {
  width: 12px;
  height: 12px;
}

.notif-app {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
}

.notif-time {
  font-size: 10px;
  color: var(--ink-4);
  margin-left: auto;
}

.notif-title {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.notif-body {
  font-size: 10.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* ========== SECTION base ========== */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 32px;
  scroll-margin-top: 24px;
}

.section-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-meta::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 720px;
}

.section-title em {
  font-style: italic;
}

.section-lead {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 56px;
}

/* ========== FEATURES (benefits) ========== */
.features {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 32px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: var(--ink-4);
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
}

.feature-title em {
  font-style: italic;
  color: var(--accent);
}

.feature-desc {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ========== SHOWCASE rows (alternating) ========== */
.showcase {
  padding: 0;
}

.showcase-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
}

.showcase-row:first-child {
  border-top: none;
}

.showcase-row.reverse .showcase-text {
  order: 2;
}

.showcase-row.reverse .showcase-visual {
  order: 1;
}

.showcase-text {
  max-width: 460px;
}

.showcase-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.showcase-title em {
  font-style: italic;
  color: var(--accent);
}

.showcase-desc {
  font-family: var(--serif);
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 22px;
}

.showcase-list {
  list-style: none;
  margin-bottom: 28px;
}

.showcase-list-item {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
  padding: 10px 0;
  padding-left: 28px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.showcase-list-item:last-child {
  border-bottom: none;
}

.showcase-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.showcase-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s;
}

.showcase-link:hover {
  color: var(--accent);
}

.showcase-link svg {
  width: 12px;
  height: 12px;
}

/* ===== Showcase visuals ===== */
.showcase-visual {
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(46, 62, 54, 0.06);
}

/* Visual 1: WhatsApp reminder bubble */
.visual-reminders {
  aspect-ratio: auto;
  background: #E5DDD5;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.visual-reminders::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #D9D2CA;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.wa-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 320px;
  max-width: 100%;
  flex-shrink: 0;
}

.wa-bubble {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-family: var(--sans);
  width: fit-content;
  max-width: 100%;
}

.wa-bubble-in {
  align-self: flex-start;
  margin-right: 28px;
}

.wa-bubble-out {
  align-self: flex-end;
  background: #D9FDD3;
  margin-left: 80px;
}

.wa-bubble-body {
  padding: 8px 12px 6px;
  position: relative;
}

.wa-bubble-in .wa-bubble-body {
  padding: 12px 14px 6px;
}

.wa-line {
  margin: 0 0 6px 0;
  font-size: 13.5px;
  color: #1F2A24;
  line-height: 1.45;
}

.wa-bubble-in .wa-line {
  margin-bottom: 8px;
}

.wa-bubble-in .wa-line:last-of-type {
  margin-bottom: 12px;
}

.wa-bubble-out .wa-line {
  font-weight: 500;
  margin-bottom: 2px;
}

.wa-mention {
  color: #1FA855;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 10.5px;
  color: rgba(31, 42, 36, 0.45);
  margin-top: 0;
}

.wa-check {
  color: #53BDEB;
  margin-left: 2px;
  letter-spacing: -1px;
}

.wa-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.wa-action {
  background: transparent;
  border: none;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #1FA855;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.wa-action+.wa-action {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wa-action svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Visual 2: web page mini */
.visual-web {
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.web-window {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(46, 62, 54, 0.06);
}

.web-window-bar {
  background: var(--surface-2);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.web-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-4);
}

.web-dot:nth-child(1) {
  background: #E88821;
}

.web-dot:nth-child(2) {
  background: #E5C440;
}

.web-dot:nth-child(3) {
  background: var(--success);
}

.web-url {
  margin-left: 8px;
  font-family: 'Menlo', monospace;
  font-size: 10.5px;
  color: var(--ink-3);
}

.web-url .url-name {
  color: var(--ink);
  font-weight: 500;
}

.web-body {
  flex: 1;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}

.web-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Visual 3: autoagenda */
.visual-booking {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-cal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 18px 14px;
  box-shadow: 0 6px 20px rgba(46, 62, 54, 0.06);
}

.mini-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mini-cal-month {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-transform: capitalize;
}

.mini-cal-nav {
  display: flex;
  gap: 4px;
}

.mini-cal-arrow {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-3);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mini-cal-dow {
  font-size: 8.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  padding: 4px 0;
  font-weight: 500;
}

.mini-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  color: var(--ink);
  border-radius: 4px;
  position: relative;
}

.mini-cal-day.muted {
  color: var(--ink-4);
}

.mini-cal-day.available {
  font-weight: 500;
}

.mini-cal-day.available::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
}

.mini-cal-day.selected {
  background: var(--ink);
  color: var(--bg);
}

.mini-cal-day.selected::after {
  background: var(--accent);
}

.mini-cal-slots {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.mini-cal-slot {
  font-size: 10.5px;
  padding: 4px 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 500;
}

.mini-cal-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Visual 4: Google Calendar sync */
.visual-gcal {
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.gcal-header {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(46, 62, 54, 0.05);
}

.gcal-header-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gcal-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gcal-header-text {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.gcal-header-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}

.gcal-header-status {
  font-size: 11px;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}

.gcal-header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(59, 109, 17, 0.15);
}

.gcal-events {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gcal-event {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(46, 62, 54, 0.04);
}

.gcal-event-bar {
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.gcal-event-bar.alt {
  background: var(--brand-green-soft);
}

.gcal-event-content {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.gcal-event-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.gcal-event-time {
  font-size: 10.5px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.gcal-event-source {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
  background: var(--surface-2);
  padding: 3px 8px;
  border-radius: 99px;
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
}

/* ========== PRICING ========== */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

.price-card.featured {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #FBF9F4;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(46, 62, 54, 0.18);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 136, 33, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.price-tag {
  align-self: flex-start;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.price-tag.recommended {
  background: rgba(232, 136, 33, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 99px;
}

.price-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.price-card.featured .price-name {
  color: #FBF9F4;
}

.price-tagline {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.price-card.featured .price-tagline {
  color: rgba(244, 241, 234, 0.6);
}

.price-amount {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.price-card.featured .price-amount {
  color: var(--accent);
}

.price-period {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.price-card.featured .price-period {
  color: rgba(244, 241, 234, 0.55);
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.price-feature {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}

.price-feature:last-child {
  border-bottom: none;
}

.price-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.price-feature strong {
  color: var(--ink);
  font-weight: 600;
}

.price-card.featured .price-feature {
  color: rgba(244, 241, 234, 0.85);
  border-bottom-color: rgba(244, 241, 234, 0.1);
}

.price-card.featured .price-feature strong {
  color: #FBF9F4;
}

.price-cta {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 11px 18px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
  position: relative;
  z-index: 1;
  display: block;
}

.price-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.price-card.featured .price-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.price-card.featured .price-cta:hover {
  background: #D17A19;
  border-color: #D17A19;
}

.pricing-trial {
  text-align: center;
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 14.5px;
  font-style: italic;
  color: var(--ink-2);
}

.pricing-trial strong {
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
}

/* Custom plan block */
.pricing-custom {
  margin-top: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.pricing-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}

.pricing-custom-info {
  flex: 1;
  min-width: 0;
}

.pricing-custom-meta {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing-custom-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.pricing-custom-title em {
  font-style: italic;
  color: var(--accent);
}

.pricing-custom-desc {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
  max-width: 560px;
}

.pricing-custom-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}

.pricing-custom-cta:hover {
  background: var(--brand-green);
}

.pricing-custom-cta svg {
  width: 13px;
  height: 13px;
}

/* ========== FAQ ========== */
.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-q {
  /* reset de <button> para que herede el aspecto del diseño */
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.2s, color 0.15s;
  margin-top: 2px;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-top: 14px;
  max-width: 720px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-cta {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-cta-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

.faq-cta-text strong {
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
}

/* ========== CONTACT / CTA FINAL ========== */
.contact {
  background: var(--brand-green);
  color: #FBF9F4;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(232, 136, 33, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact .section-meta {
  color: var(--accent);
}

.contact .section-title {
  color: #FBF9F4;
}

.contact .section-title em {
  color: var(--accent);
}

.contact-lead {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.8);
  font-style: italic;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  background: rgba(244, 241, 234, 0.05);
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.15s;
}

.contact-method:hover {
  background: rgba(244, 241, 234, 0.08);
  border-color: rgba(244, 241, 234, 0.2);
}

.contact-method-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent);
  color: white;
}

.contact-method-icon.wa {
  background: #25D366;
}

.contact-method-icon svg {
  width: 18px;
  height: 18px;
}

.contact-method-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.5);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-method-value {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: #FBF9F4;
}

/* Form */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 32px 28px;
  color: var(--ink);
}

.form-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.form-title em {
  font-style: italic;
  color: var(--accent);
}

.form-sub {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.55;
}

.form-privacy {
  margin-top: 6px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
}

.form-privacy:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--ink-4);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.form-checkbox svg {
  width: 10px;
  height: 10px;
  color: white;
  display: none;
}

.form-privacy.checked .form-checkbox {
  background: var(--accent);
  border-color: var(--accent);
}

.form-privacy.checked .form-checkbox svg {
  display: block;
}

.form-privacy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-4);
}

.form-submit {
  width: 100%;
  background: var(--brand-green);
  color: var(--bg);
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s;
}

.form-submit:hover {
  background: #1F2A24;
}

.form-submit svg {
  width: 13px;
  height: 13px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-feedback {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--brand-green);
}

.form-feedback.error {
  color: #C0392B;
}

/* ========== FINAL CTA before footer ========== */
.final-cta {
  text-align: center;
  padding: 96px 32px;
  max-width: 720px;
  margin: 0 auto;
}

/* el botón inline-flex se centra dentro del bloque centrado */
.final-cta .btn-primary {
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.final-cta-title em {
  font-style: italic;
  color: var(--accent);
}

.final-cta-lead {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 32px;
}

.final-cta-stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.store-btn-img {
  display: inline-block;
  transition: transform 0.15s, opacity 0.15s;
  line-height: 0;
}

.store-btn-img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-btn-img img {
  height: 48px;
  width: auto;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: rgba(244, 241, 234, 0.6);
  padding: 56px 32px 36px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: #FBF9F4;
  letter-spacing: -0.01em;
}

.footer-brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 241, 234, 0.5);
  max-width: 280px;
}

.footer-col-title {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  color: rgba(244, 241, 234, 0.7);
  text-decoration: none;
  font-size: 13.5px;
  padding: 5px 0;
  transition: color 0.15s;
}

.footer-link:hover {
  color: #FBF9F4;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(244, 241, 234, 0.4);
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(244, 241, 234, 0.5);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #FBF9F4;
}

/* ========================================== */
/*           RESPONSIVE                        */
/* ========================================== */

@media (max-width: 980px) {

  .topbar {
    padding: 18px 20px;
  }

  .top-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 28px 20px 64px;
  }

  .hero-text {
    order: 2;
    padding: 0;
  }

  .hero-mockup-wrap {
    order: 1;
    justify-self: center;
    max-width: 340px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 64px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-lead {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 20px;
  }

  .showcase-row.reverse .showcase-text {
    order: 1;
  }

  .showcase-row.reverse .showcase-visual {
    order: 2;
  }

  .showcase-title {
    font-size: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 26px;
  }

  .pricing-custom-cta {
    align-self: stretch;
    justify-content: center;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta {
    padding: 64px 20px;
  }

  .final-cta-title {
    font-size: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer {
    padding: 48px 20px 28px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-mockup-wrap {
    max-width: 300px;
  }

  .section-title {
    font-size: 28px;
  }

  .showcase-title {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
