﻿:root {
  --bg: #edf3fb;
  --bg-soft: #f7fbff;
  --surface: rgba(255, 255, 255, 0.7);
  --text: #0b1a2b;
  --muted: #506176;
  --stroke: rgba(115, 139, 169, 0.22);
  --primary: #0aa2c0;
  --primary-strong: #0973df;
  --accent: #1ac8a1;
  --shadow-soft: 0 14px 38px rgba(13, 41, 72, 0.1);
  --shadow-hard: 0 24px 60px rgba(10, 38, 79, 0.18);
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(10, 162, 192, 0.2) 0%, transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(26, 200, 161, 0.18) 0%, transparent 32%),
    radial-gradient(circle at 82% 84%, rgba(9, 115, 223, 0.14) 0%, transparent 28%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 55%, #edf6ff 100%);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.36;
  pointer-events: none;
}

body::before {
  background: #32b3d8;
  top: -130px;
  right: -120px;
}

body::after {
  background: #38d1aa;
  bottom: -180px;
  left: -120px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(241, 248, 255, 0.72);
  border-bottom: 1px solid rgba(122, 150, 180, 0.2);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary-strong), var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 650;
}

.nav a {
  color: #2f4258;
  border: 1px solid transparent;
  padding: 0.42rem 0.62rem;
  border-radius: 10px;
  transition: 0.22s ease;
}

.nav a:hover {
  color: #063d73;
  border-color: rgba(10, 162, 192, 0.25);
  background: rgba(255, 255, 255, 0.7);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hero {
  padding: 6rem 0 3rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.2rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 620px;
  height: 420px;
  border-radius: 60% 40% 0 0;
  background: linear-gradient(145deg, rgba(9, 115, 223, 0.22), rgba(10, 162, 192, 0.24));
  pointer-events: none;
  z-index: -1;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin: 0.95rem 0 0.6rem;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
}

.offer-badge {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(100deg, #0aa2c0, #0973df);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  background: linear-gradient(90deg, rgba(10, 162, 192, 0.18), rgba(26, 200, 161, 0.18));
  color: #095a72;
  border: 1px solid rgba(10, 162, 192, 0.26);
  padding: 0.36rem 0.76rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
}

.center { text-align: center; }

.section { padding: 4.25rem 0; }

.muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.24));
  border-top: 1px solid rgba(120, 146, 178, 0.16);
  border-bottom: 1px solid rgba(120, 146, 178, 0.16);
}

.section-title {
  margin: 0 0 1.45rem;
  font-size: clamp(1.45rem, 2.25vw, 2.05rem);
}

.section-intro {
  margin: 0 0 1rem;
  color: #4a647b;
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: center;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hard);
  border-color: rgba(10, 162, 192, 0.3);
}

.option-card {
  text-align: center;
  padding: 1.2rem 1.5rem 2rem;
}

.app-preview {
  height: 170px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.app-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(3, 28, 54, 0.52), rgba(9, 92, 143, 0.3));
}

.option-card h2 {
  margin: 0;
  font-size: 1.85rem;
}

.option-card .sub {
  color: #0a7098;
  font-weight: 750;
}

.hero-visual {
  min-height: 340px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 190px;
  height: 340px;
  border-radius: 30px;
  border: 8px solid #0d1f37;
  box-shadow: var(--shadow-hard);
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: #0b1729;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(8, 30, 58, 0.4), rgba(7, 78, 126, 0.16));
}

.phone-back {
  transform: rotate(-14deg) translateX(-60px);
  opacity: 0.9;
}

.phone-front {
  transform: rotate(10deg) translateX(72px);
}

.stats-card {
  position: absolute;
  left: 44px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 0.25rem;
  max-width: 200px;
  padding: 0.82rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 162, 192, 0.34);
  box-shadow: var(--shadow-soft);
}

.stats-card strong {
  color: #0b3f69;
  font-size: 1.1rem;
}

.stats-card span {
  color: #38536d;
  font-size: 0.84rem;
  line-height: 1.3;
}

.step-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.55rem;
  background: linear-gradient(100deg, #0aa2c0, #0973df);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 1.45rem;
}

.center-cta {
  justify-content: center;
}

.option-actions {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card-trust {
  margin: 0.8rem 0 0;
  color: #4e6f8c;
  font-size: 0.85rem;
  font-weight: 620;
}

.trust-row {
  margin: 0.85rem 0 0;
  color: #496782;
  font-size: 0.9rem;
  font-weight: 620;
}

.trust-row.light {
  color: #d8edff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.16rem;
  border-radius: 12px;
  font-weight: 760;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #ffffff;
  background: linear-gradient(100deg, #0aa2c0 0%, #0973df 100%);
  box-shadow: 0 12px 26px rgba(10, 139, 198, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(10, 139, 198, 0.45);
  filter: saturate(1.08);
}

.btn-ghost {
  border-color: rgba(10, 162, 192, 0.24);
  color: #0a5f8d;
  background: rgba(255, 255, 255, 0.88);
}

.mock-area {
  min-height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(10, 162, 192, 0.28);
  display: grid;
  place-items: center;
  font-weight: 760;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.mock-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(6, 35, 66, 0.78), rgba(9, 92, 143, 0.44));
}

.mock-area p {
  position: relative;
  z-index: 1;
}

.demo-video {
  padding: 0.6rem;
  border-radius: 18px;
}

.demo-video-player {
  width: 100%;
  max-height: 520px;
  border-radius: 14px;
  display: block;
  background: #0c1420;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #163753;
}

.faq-item p {
  margin: 0.6rem 0 0.2rem;
  color: var(--muted);
}

.agenda-preview,
.agenda-shot,
.agenda-screen {
  background-image:
    url("assets/img/agendabp.png"),
    url("assets/img/agendabp.jpg"),
    url("assets/img/agendabp.jpeg"),
    url("assets/img/agenda.png"),
    url("assets/img/agenda.jpg"),
    url("assets/img/agenda.jpeg"),
    url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?auto=format&fit=crop&w=1400&q=80");
}

.agenda-preview {
  background-position: center 28%;
}

.agenda-shot {
  background-position: center 32%;
}

.agenda-screen {
  background-size: 210%;
  background-position: 50% 18%;
}

.hotel-preview,
.hotel-shot,
.hotel-screen {
  background-image:
    url("assets/img/reservabp.png"),
    url("assets/img/reservabp.jpg"),
    url("assets/img/reservabp.jpeg"),
    url("assets/img/reserva.png"),
    url("assets/img/reserva.jpg"),
    url("assets/img/reserva.jpeg"),
    url("assets/img/hotel.png"),
    url("assets/img/hotel.jpg"),
    url("assets/img/hotel.jpeg"),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1400&q=80");
}

.hotel-preview {
  background-position: center 40%;
}

.hotel-shot {
  background-position: center 42%;
}

.hotel-screen {
  background-size: 205%;
  background-position: 52% 22%;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured {
  border: 2px solid rgba(10, 162, 192, 0.55);
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(10, 121, 177, 0.3);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 760;
  color: #f8fcff;
  background: linear-gradient(100deg, #0aa2c0, #0973df);
}

.price {
  margin: 0.85rem 0;
  font-size: 2rem;
  font-weight: 820;
}

.offer-line {
  margin: 0.2rem 0 0.3rem;
  color: #355671;
  font-weight: 700;
}

.offer-line span {
  text-decoration: line-through;
  color: #6f859a;
}

.plan-note {
  margin: 0 0 0.6rem;
  color: #2e5878;
  font-weight: 700;
  font-size: 0.92rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 650;
}

ul {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.single-plan {
  max-width: 430px;
  margin: 0 auto;
  text-align: left;
}

.cta-block {
  background:
    linear-gradient(140deg, rgba(6, 71, 133, 0.96), rgba(10, 162, 192, 0.95)),
    radial-gradient(circle at 15% 10%, rgba(190, 242, 255, 0.35) 0, transparent 45%);
  color: #ffffff;
}

.urgency-box {
  border-top: 1px solid rgba(183, 105, 52, 0.24);
  border-bottom: 1px solid rgba(183, 105, 52, 0.24);
  background: linear-gradient(180deg, rgba(255, 235, 220, 0.55), rgba(255, 250, 246, 0.38));
}

.footer {
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(120, 146, 178, 0.2);
}

.footer-content {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6e84;
  font-size: 0.94rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #25d366, #1cae53);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(19, 138, 65, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.wa-float:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .grid-2,
  .feature-grid.three,
  .feature-grid.four,
  .option-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured { transform: none; }
}

@media (max-width: 740px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 0.9rem 4%;
    background: rgba(250, 254, 255, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(120, 146, 178, 0.24);
  }

  .nav.open { display: flex; }

  .hero { padding-top: 5rem; }
  .app-preview { height: 140px; }
  .hero-visual { min-height: 260px; }

  .phone {
    width: 132px;
    height: 240px;
    border-width: 6px;
    border-radius: 22px;
  }

  .agenda-screen,
  .hotel-screen {
    background-size: 220%;
    background-position: center 20%;
  }

  .phone-back { transform: rotate(-12deg) translateX(-40px); }
  .phone-front { transform: rotate(8deg) translateX(48px); }

  .stats-card {
    left: 10px;
    bottom: 0;
    max-width: 160px;
  }

  .wa-float {
    min-width: 112px;
    height: 44px;
    right: 12px;
    bottom: 12px;
    font-size: 0.92rem;
  }
}
