/* =========================================================
   HERO
   ========================================================= */

.reservas-hero {
  position: relative;

  padding:
    calc(var(--header-height) + 72px)
    0
    65px;

  overflow: hidden;

  background:
    radial-gradient(
      720px 420px at 0% 0%,
      rgba(53, 208, 194, 0.12),
      transparent 65%
    ),
    radial-gradient(
      720px 420px at 100% 15%,
      rgba(34, 49, 84, 0.1),
      transparent 66%
    ),
    #fbfcfe;
}

.reservas-hero-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.94fr)
    minmax(480px, 1.06fr);

  gap: 72px;
  align-items: center;

  min-height: 600px;
}

.reservas-hero-copy {
  display: grid;
  gap: 23px;
}

.back-link {
  display: inline-flex;

  width: fit-content;

  color: var(--muted);

  font-size: 0.8rem;
  font-weight: 700;

  transition: color var(--transition);
}

.back-link:hover {
  color: var(--primary);
}

.reservas-hero-copy h1 {
  max-width: 770px;

  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.reservas-hero-text {
  max-width: 690px;

  color: var(--muted);

  font-size: 1.08rem;
  line-height: 1.86;
}

.reservas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 3px;
}

.reservas-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.reservas-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 11px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: #58657a;
  background: rgba(255, 255, 255, 0.78);

  font-size: 0.75rem;
  font-weight: 700;
}

.reservas-badges span::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;
  background: var(--accent);
}

.reservas-price-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;

  margin-top: 3px;
}

.reservas-price-note span,
.reservas-price-note small {
  color: var(--muted);

  font-size: 0.77rem;
}

.reservas-price-note strong {
  color: var(--primary);

  font-size: 1.15rem;
}

/* =========================================================
   HERO MOCKUP
   ========================================================= */

.agenda-showcase {
  position: relative;

  min-height: 520px;
}

.agenda-glow {
  position: absolute;

  border-radius: 50%;
}

.agenda-glow-one {
  top: 5px;
  right: -40px;

  width: 340px;
  height: 340px;

  background: rgba(53, 208, 194, 0.09);
}

.agenda-glow-two {
  bottom: 5px;
  left: 20px;

  width: 240px;
  height: 240px;

  background: rgba(34, 49, 84, 0.08);
}

.agenda-window {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;

  width: min(100%, 620px);

  overflow: hidden;

  border: 1px solid rgba(23, 33, 58, 0.1);
  border-radius: 27px;

  background: white;
  box-shadow: var(--shadow-lg);

  transform:
    translate(-50%, -50%)
    perspective(1100px)
    rotateY(-3deg)
    rotateX(1deg);
}

.agenda-window-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;

  min-height: 54px;
  padding: 0 17px;

  border-bottom: 1px solid var(--border);

  background: #f8fafc;
}

.agenda-dots {
  display: flex;
  gap: 6px;
}

.agenda-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(23, 33, 58, 0.17);
}

.agenda-address {
  justify-self: center;

  display: grid;
  place-items: center;

  width: 190px;
  height: 27px;

  border-radius: 8px;

  color: var(--muted-light);
  background: #e9edf4;

  font-size: 0.62rem;
  font-weight: 700;
}

.agenda-role {
  padding: 6px 9px;

  border-radius: 999px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.61rem;
  font-weight: 800;
}

.agenda-window-body {
  display: grid;
  gap: 16px;

  padding: 23px;

  background:
    radial-gradient(
      360px 200px at 0% 0%,
      rgba(53, 208, 194, 0.09),
      transparent 70%
    ),
    #f7f9fc;
}

.agenda-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.agenda-heading > div {
  display: grid;
  gap: 2px;
}

.agenda-heading span {
  color: var(--muted-light);

  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.agenda-heading h2 {
  color: var(--primary);

  font-size: 1.08rem;
}

.agenda-heading button {
  min-height: 32px;
  padding: 0 11px;

  border: none;
  border-radius: 9px;

  color: white;
  background: var(--primary);

  font-size: 0.61rem;
  font-weight: 750;
}

.agenda-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.agenda-summary article {
  display: grid;
  gap: 3px;

  padding: 11px;

  border: 1px solid var(--border);
  border-radius: 13px;

  background: white;
}

.agenda-summary span {
  color: var(--muted-light);

  font-size: 0.57rem;
  font-weight: 700;
}

.agenda-summary strong {
  color: var(--primary);

  font-size: 1rem;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 11px;
}

.agenda-hours {
  display: grid;
  align-content: space-between;

  padding: 7px 0;
}

.agenda-hours span {
  color: var(--muted-light);

  font-size: 0.55rem;
  font-weight: 650;
}

.agenda-bookings {
  display: grid;
  gap: 9px;
}

.booking-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;

  min-height: 59px;
  padding: 10px 12px;

  border: 1px solid var(--border);
  border-radius: 13px;

  background: white;
}

.booking-card > div {
  display: grid;
}

.booking-time {
  color: var(--primary);

  font-size: 0.64rem;
  font-weight: 800;
}

.booking-card strong {
  color: var(--primary);

  font-size: 0.69rem;
}

.booking-card small {
  color: var(--muted);

  font-size: 0.57rem;
}

.booking-status {
  padding: 5px 8px;

  border-radius: 999px;

  font-size: 0.53rem;
  font-weight: 800;
}

.booking-confirmed .booking-status {
  color: #168b67;
  background: rgba(24, 161, 119, 0.1);
}

.booking-pending .booking-status {
  color: #9a6b10;
  background: rgba(222, 165, 50, 0.12);
}

.agenda-floating-card {
  position: absolute;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 13px 15px;

  border: 1px solid rgba(23, 33, 58, 0.08);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);

  backdrop-filter: blur(16px);
}

.agenda-client-card {
  top: 33px;
  left: -18px;
}

.agenda-block-card {
  right: -6px;
  bottom: 38px;
}

.agenda-floating-icon {
  display: grid;
  place-items: center;

  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  border-radius: 11px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.75rem;
  font-weight: 900;
}

.agenda-floating-card > div {
  display: grid;
}

.agenda-floating-card strong {
  color: var(--primary);

  font-size: 0.7rem;
}

.agenda-floating-card small {
  color: var(--muted);

  font-size: 0.59rem;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.reservas-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 42px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reservas-trust-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-items: center;

  padding: 18px 20px;
}

.reservas-trust-strip article:not(:last-child) {
  border-right: 1px solid var(--border);
}

.reservas-trust-strip article > span {
  grid-row: 1 / 3;

  color: var(--accent-dark);

  font-size: 0.7rem;
  font-weight: 800;
}

.reservas-trust-strip strong {
  color: var(--primary);

  font-size: 0.79rem;
}

.reservas-trust-strip small {
  color: var(--muted);

  font-size: 0.68rem;
}

/* =========================================================
   PROBLEMAS
   ========================================================= */

.reservas-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.reservas-problem-grid article {
  padding: 28px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: white;
  box-shadow: var(--shadow-xs);
}

.reservas-problem-grid article > span {
  display: block;

  margin-bottom: 34px;

  color: var(--accent-dark);

  font-size: 0.72rem;
  font-weight: 800;
}

.reservas-problem-grid h3 {
  margin-bottom: 10px;

  font-size: 1.04rem;
}

.reservas-problem-grid p {
  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.72;
}

/* =========================================================
   PROPUESTA DE VALOR
   ========================================================= */

.reservas-value-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.75fr)
    minmax(0, 1.25fr);

  gap: 80px;
  align-items: center;
}

.reservas-value-copy {
  display: grid;
  gap: 19px;
}

.reservas-value-copy h2,
.reservas-implementation-copy h2,
.reservas-extras-layout h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.reservas-value-copy p,
.reservas-implementation-copy > p,
.reservas-extras-layout > div > p {
  color: var(--muted);

  font-size: 1rem;
  line-height: 1.82;
}

.reservas-value-copy .text-link {
  margin-top: 4px;
}

.reservas-value-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.reservas-value-cards article {
  position: relative;

  min-height: 235px;
  padding: 26px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.85);
}

.value-card-index {
  position: absolute;
  top: 21px;
  right: 22px;

  color: #c6ccd7;

  font-size: 0.68rem;
  font-weight: 800;
}

.value-card-icon {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;
  margin-bottom: 27px;

  border-radius: 14px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.8rem;
  font-weight: 900;
}

.reservas-value-cards h3 {
  margin-bottom: 9px;

  font-size: 1rem;
}

.reservas-value-cards p {
  color: var(--muted);

  font-size: 0.85rem;
  line-height: 1.7;
}

/* =========================================================
   FLUJO
   ========================================================= */

.reservas-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.reservas-flow-grid > article {
  display: grid;
  gap: 15px;

  padding: 26px;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: white;
  box-shadow: var(--shadow-xs);
}

.reservas-flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reservas-flow-top > span {
  display: grid;
  place-items: center;

  width: 43px;
  height: 43px;

  border-radius: 14px;

  color: white;
  background: var(--primary);

  font-size: 0.7rem;
  font-weight: 800;
}

.reservas-flow-top small {
  padding: 6px 9px;

  border-radius: 999px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.62rem;
  font-weight: 800;
}

.reservas-flow-grid h3 {
  font-size: 1.04rem;
}

.reservas-flow-grid > article > p {
  min-height: 92px;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.7;
}

.reservas-flow-preview {
  min-height: 155px;
  padding: 17px;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: var(--background-soft);
}

.service-preview {
  display: grid;
  gap: 9px;
  align-content: center;
}

.service-preview article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: center;

  padding: 10px;

  border: 1px solid var(--border);
  border-radius: 11px;

  background: white;
}

.service-preview-icon {
  width: 30px;
  height: 30px;

  border-radius: 9px;

  background: var(--accent-soft);
}

.service-preview article > div {
  display: grid;
}

.service-preview strong {
  color: var(--primary);

  font-size: 0.63rem;
}

.service-preview small {
  color: var(--muted);

  font-size: 0.54rem;
}

.calendar-preview {
  display: grid;
  gap: 12px;
}

.calendar-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-preview-head span {
  width: 19px;
  height: 19px;

  border-radius: 7px;

  background: #e1e6ee;
}

.calendar-preview-head strong {
  font-size: 0.65rem;
}

.calendar-preview-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-preview-grid span {
  aspect-ratio: 1;

  border-radius: 6px;

  background: #e2e7ef;
}

.calendar-preview-grid .available {
  background: rgba(53, 208, 194, 0.24);
}

.calendar-preview-grid .selected {
  background: var(--accent-dark);
}

.time-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-content: center;
}

.time-preview span {
  padding: 8px;

  border: 1px solid var(--border);
  border-radius: 9px;

  color: var(--muted);
  background: white;

  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
}

.time-preview .selected {
  color: white;
  border-color: var(--primary);
  background: var(--primary);
}

.confirmation-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.confirmation-check {
  display: grid;
  place-items: center;

  width: 43px;
  height: 43px;

  border-radius: 14px;

  color: white;
  background: #18a177;

  font-size: 0.82rem;
  font-weight: 900;
}

.confirmation-preview > div {
  display: grid;
}

.confirmation-preview strong {
  color: var(--primary);

  font-size: 0.68rem;
}

.confirmation-preview small {
  color: var(--muted);

  font-size: 0.57rem;
}

/* =========================================================
   FUNCIONES
   ========================================================= */

.reservas-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reservas-features-grid article {
  min-height: 240px;
  padding: 26px;

  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.055);

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.reservas-features-grid article:hover {
  border-color: rgba(255, 255, 255, 0.23);

  background: rgba(255, 255, 255, 0.085);

  transform: translateY(-4px);
}

.reservas-feature-number {
  display: block;

  margin-bottom: 45px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 0.68rem;
  font-weight: 800;
}

.reservas-features-grid h3 {
  margin-bottom: 9px;

  color: white;

  font-size: 1rem;
}

.reservas-features-grid p {
  color: rgba(255, 255, 255, 0.65);

  font-size: 0.84rem;
  line-height: 1.7;
}

/* =========================================================
   ROLES
   ========================================================= */

.reservas-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  max-width: 900px;
  margin-inline: auto;
}

.reservas-role-grid > article {
  display: grid;
  gap: 24px;

  padding: 31px;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: white;
  box-shadow: var(--shadow-xs);
}

.reservas-role-grid .reservas-role-featured {
  border-color: rgba(53, 208, 194, 0.4);

  background:
    radial-gradient(
      320px 180px at 0% 0%,
      rgba(53, 208, 194, 0.12),
      transparent 70%
    ),
    white;

  box-shadow: var(--shadow-sm);
}

.reservas-role-header {
  display: flex;
  align-items: center;
  gap: 13px;
}

.reservas-role-letter {
  display: grid;
  place-items: center;

  width: 47px;
  height: 47px;

  border-radius: 15px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.85rem;
  font-weight: 900;
}

.reservas-role-header > div {
  display: grid;
  gap: 1px;
}

.reservas-role-header small {
  color: var(--muted-light);

  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reservas-role-header h3 {
  font-size: 1.15rem;
}

/* =========================================================
   PLANES
   ========================================================= */

.reservas-pricing-section {
  background:
    radial-gradient(
      650px 330px at 100% 0%,
      rgba(53, 208, 194, 0.08),
      transparent 65%
    ),
    white;
}

.reservas-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reservas-plan-card {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 23px;

  padding: 31px;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: white;
  box-shadow: var(--shadow-sm);
}

.reservas-plan-featured {
  border-color: rgba(53, 208, 194, 0.55);

  background:
    radial-gradient(
      330px 190px at 0% 0%,
      rgba(53, 208, 194, 0.13),
      transparent 70%
    ),
    white;

  box-shadow: var(--shadow-md);
}

.reservas-recommended {
  position: absolute;
  top: -13px;
  left: 50%;

  padding: 7px 12px;

  border-radius: 999px;

  color: white;
  background: var(--accent-dark);

  font-size: 0.67rem;
  font-weight: 800;

  transform: translateX(-50%);
}

.reservas-plan-header {
  display: grid;
  gap: 10px;
}

.reservas-plan-label {
  color: var(--accent-dark);

  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reservas-plan-header h3 {
  font-size: 1.39rem;
  letter-spacing: -0.03em;
}

.reservas-plan-header p {
  min-height: 82px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.68;
}

.reservas-plan-price {
  display: grid;
  gap: 3px;

  padding-top: 21px;

  border-top: 1px solid var(--border);
}

.reservas-plan-price span {
  color: var(--muted-light);

  font-size: 0.69rem;
  font-weight: 650;
}

.reservas-plan-price strong {
  color: var(--primary);

  font-size: clamp(1.85rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.reservas-plan-price small {
  color: var(--muted-light);

  font-size: 0.67rem;
}

.reservas-plan-monthly {
  display: flex;
  align-items: baseline;
  gap: 5px;

  padding: 12px 14px;

  border-radius: 13px;

  background: var(--background-soft);
}

.reservas-plan-monthly strong {
  color: var(--primary);

  font-size: 1rem;
}

.reservas-plan-monthly span {
  color: var(--muted);

  font-size: 0.74rem;
}

.reservas-plan-card .btn {
  margin-top: auto;
}

.reservas-custom-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;

  margin-top: 25px;
  padding: 30px;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: var(--background-soft);
}

.reservas-custom-box > div:first-child {
  display: grid;
  gap: 8px;
}

.reservas-custom-box > div:first-child > span {
  color: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reservas-custom-box h3 {
  font-size: 1.14rem;
}

.reservas-custom-box p {
  max-width: 650px;

  color: var(--muted);

  font-size: 0.85rem;
  line-height: 1.67;
}

.reservas-custom-price {
  display: grid;
  gap: 2px;

  min-width: 180px;
}

.reservas-custom-price small {
  color: var(--muted-light);

  font-size: 0.63rem;
}

.reservas-custom-price strong {
  color: var(--primary);

  font-size: 1.27rem;
}

.reservas-custom-price span {
  color: var(--muted);

  font-size: 0.67rem;
}

.reservas-pricing-disclaimer {
  max-width: 800px;
  margin: 23px auto 0;

  color: var(--muted-light);

  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
}

/* =========================================================
   IMPLEMENTACIÓN
   ========================================================= */

.reservas-implementation-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.75fr)
    minmax(0, 1.25fr);

  gap: 85px;
  align-items: start;
}

.reservas-implementation-copy {
  display: grid;
  gap: 19px;
}

.reservas-implementation-time {
  display: grid;
  gap: 4px;

  margin-top: 12px;
  padding: 20px;

  border: 1px solid rgba(53, 208, 194, 0.25);
  border-radius: 17px;

  background: rgba(53, 208, 194, 0.07);
}

.reservas-implementation-time span {
  color: var(--accent-dark);

  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reservas-implementation-time strong {
  color: var(--primary);

  font-size: 1.1rem;
}

.reservas-implementation-time small {
  color: var(--muted);

  font-size: 0.7rem;
  line-height: 1.55;
}

.reservas-implementation-steps {
  display: grid;
}

.reservas-implementation-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 21px;

  padding: 25px 0;

  border-bottom: 1px solid var(--border);
}

.reservas-implementation-steps article:first-child {
  padding-top: 0;
}

.reservas-implementation-steps article > span {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  border-radius: 14px;

  color: white;
  background: var(--primary);

  font-size: 0.72rem;
  font-weight: 800;
}

.reservas-implementation-steps article > div {
  display: grid;
  gap: 7px;
}

.reservas-implementation-steps h3 {
  font-size: 1rem;
}

.reservas-implementation-steps p {
  color: var(--muted);

  font-size: 0.88rem;
  line-height: 1.7;
}

/* =========================================================
   ADICIONALES
   ========================================================= */

.reservas-extras-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.78fr)
    minmax(0, 1.22fr);

  gap: 70px;
  align-items: center;
}

.reservas-extras-layout > div:first-child {
  display: grid;
  gap: 18px;
}

.reservas-extra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reservas-extra-tags span {
  padding: 11px 14px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--primary);
  background: white;

  font-size: 0.8rem;
  font-weight: 700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .reservas-hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .reservas-hero-copy {
    max-width: 830px;
  }

  .agenda-showcase {
    min-height: 510px;
  }

  .reservas-problem-grid,
  .reservas-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservas-value-layout,
  .reservas-implementation-layout,
  .reservas-extras-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .reservas-value-copy,
  .reservas-implementation-copy {
    max-width: 780px;
  }

  .reservas-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservas-flow-grid > article > p {
    min-height: 70px;
  }

  .reservas-pricing-grid {
    grid-template-columns: 1fr;
  }

  .reservas-plan-header p {
    min-height: auto;
  }

  .reservas-custom-box {
    grid-template-columns: 1fr auto;
  }

  .reservas-custom-box > .btn {
    grid-column: 1 / -1;

    width: fit-content;
  }
}

@media (max-width: 900px) {
  .reservas-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservas-trust-strip article:nth-child(2) {
    border-right: none;
  }

  .reservas-trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .reservas-role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .reservas-hero {
    padding-top:
      calc(var(--header-height) + 48px);

    padding-bottom: 45px;
  }

  .reservas-hero-layout {
    min-height: auto;
  }

  .reservas-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .reservas-hero-actions {
    display: grid;
  }

  .reservas-hero-actions .btn {
    width: 100%;
  }

  .agenda-showcase {
    min-height: 390px;
  }

  .agenda-window {
    width: 100%;

    transform:
      translate(-50%, -50%)
      perspective(1000px)
      rotateY(-1deg);
  }

  .agenda-window-top {
    grid-template-columns: auto 1fr;
  }

  .agenda-role {
    display: none;
  }

  .agenda-address {
    width: 150px;
  }

  .agenda-window-body {
    padding: 14px;
  }

  .agenda-heading button {
    display: none;
  }

  .booking-card {
    grid-template-columns: 38px 1fr;
  }

  .booking-status {
    display: none;
  }

  .agenda-floating-card {
    display: none;
  }

  .reservas-trust-strip,
  .reservas-problem-grid,
  .reservas-value-cards,
  .reservas-flow-grid,
  .reservas-features-grid {
    grid-template-columns: 1fr;
  }

  .reservas-trust-strip article {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .reservas-trust-strip article:last-child {
    border-bottom: none;
  }

  .reservas-flow-grid > article > p {
    min-height: auto;
  }

  .reservas-plan-card {
    padding: 27px 23px;
  }

  .reservas-custom-box {
    grid-template-columns: 1fr;
    gap: 23px;

    padding: 25px;
  }

  .reservas-custom-box > .btn {
    grid-column: auto;

    width: 100%;
  }

  .reservas-custom-price {
    min-width: 0;
  }
}