/* =========================================================
   VXLINK AGENDA
   Landing Page - style.css
   ========================================================= */

/* =========================
   RESET
   ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background: #f7f4ef;
  color: #1b1a19;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

/* =========================
   VARIÁVEIS
   ========================= */

:root {
  --bg: #f7f4ef;
  --bg-soft: #efeae3;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.7);

  --text: #1b1a19;
  --text-soft: #6f6b66;
  --text-light: #9c968f;

  --primary: #1f1e1c;
  --primary-hover: #2b2926;

  --accent: #a89a87;
  --accent-dark: #8f806d;
  --accent-soft: #e5ddd3;

  --border: #ded7ce;
  --border-soft: rgba(40, 37, 33, 0.08);

  --success: #4f8a6b;
  --danger: #b46262;

  --shadow-sm:
    0 8px 24px rgba(38, 34, 30, 0.05);

  --shadow-md:
    0 18px 50px rgba(38, 34, 30, 0.08);

  --shadow-lg:
    0 30px 90px rgba(38, 34, 30, 0.12);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1180px;
}

/* =========================
   UTILITÁRIOS
   ========================= */

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-tag.light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: #e8e1d8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.section-content h2,
.faq-intro h2 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-heading h2 span,
.section-content h2 span,
.faq-intro h2 span {
  color: var(--accent-dark);
}

.section-heading p,
.section-content > p,
.faq-intro p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* =========================
   BOTÕES
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 30, 28, 0.15);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 14px 30px rgba(31, 30, 28, 0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.72);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-ghost {
  color: var(--text-soft);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-light-solid {
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.btn-large {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(31,30,28,0.06);
  background: rgba(247,244,239,0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 180px;
  height: auto;
}

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

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu {
  display: none;
}

/* =========================
   HERO
   ========================= */

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(79,138,107,0.12);
}

.hero h1 {
  font-size: clamp(52px, 7.2vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.hero h1 span {
  color: var(--accent-dark);
}

.hero-description {
  max-width: 600px;
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 13px;
}

.trust-item span {
  color: var(--success);
  font-weight: 800;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  background: #ded2c3;
  right: 8%;
  top: 12%;
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  background: #eee5dc;
  left: -80px;
  bottom: 5%;
}

/* =========================
   MOCKUP HERO
   ========================= */

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

.hero-dashboard-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 455px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.8);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.92),
      rgba(248,244,239,0.82)
    );
  backdrop-filter: blur(28px);
  box-shadow: var(--shadow-lg);
  transform:
    perspective(1000px)
    rotateY(-6deg)
    rotateX(3deg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-top > div:first-child {
  display: grid;
  gap: 4px;
}

.dashboard-label {
  color: var(--text-light);
  font-size: 13px;
}

.dashboard-top strong {
  font-size: 24px;
}

.status-online {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(79,138,107,0.08);
}

.status-online span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.summary-item {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.82);
}

.summary-item span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  margin-bottom: 8px;
}

.summary-item strong {
  font-size: 25px;
}

.appointment-list {
  display: grid;
  gap: 11px;
}

.appointment-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
}

.appointment-time {
  font-size: 14px;
  font-weight: 800;
}

.appointment-info {
  min-width: 0;
}

.appointment-info strong,
.appointment-info span {
  display: block;
}

.appointment-info strong {
  font-size: 14px;
}

.appointment-info span {
  margin-top: 3px;
  font-size: 11px;
  color: var(--text-light);
}

.appointment-status {
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(79,138,107,0.08);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.floating-booking {
  left: -10px;
  bottom: 96px;
  padding: 14px 16px;
  border-radius: 18px;
}

.floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(79,138,107,0.12);
  color: var(--success);
  font-weight: 900;
}

.floating-booking div:last-child {
  display: grid;
  gap: 2px;
}

.floating-booking span {
  font-size: 11px;
  color: var(--text-light);
}

.floating-booking strong {
  font-size: 13px;
}

.floating-profile {
  right: -10px;
  top: 94px;
  padding: 13px 14px;
  border-radius: 16px;
}

.mini-url {
  color: var(--text-soft);
  font-size: 11px;
}

/* =========================
   NICHOS
   ========================= */

.niches-section {
  padding: 26px 0 34px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  background: rgba(255,255,255,0.35);
}

.niches-title {
  text-align: center;
  color: var(--text-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.niches-marquee {
  overflow: hidden;
}

.niches-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}

.niches-track span {
  font-size: 16px;
  font-weight: 650;
  color: var(--text-soft);
}

.niches-track i {
  font-style: normal;
  color: var(--accent);
}

/* =========================
   PÁGINA PÚBLICA
   ========================= */

.public-page-section {
  background: #fbfaf8;
}

.feature-check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-soft);
  font-size: 15px;
}

.feature-check-list li span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(79,138,107,0.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 900;
}

.public-page-demo {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(100%, 340px);
  padding: 10px;
  border-radius: 42px;
  background: #191817;
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  overflow: hidden;
  border-radius: 34px;
  background: #f8f5f1;
  min-height: 620px;
}

.profile-banner {
  height: 180px;
  background:
    linear-gradient(
      135deg,
      rgba(31,30,28,0.08),
      rgba(168,154,135,0.2)
    ),
    #ddd4c9;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  margin: -45px auto 0;
  border-radius: 50%;
  border: 5px solid #f8f5f1;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}

.profile-content {
  padding: 18px 24px 28px;
  text-align: center;
}

.profile-category {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}

.profile-content h3 {
  font-size: 25px;
}

.profile-content p {
  margin: 10px 0 20px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.demo-booking-button,
.demo-link-button {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  margin-top: 10px;
  border: 1px solid var(--border);
}

.demo-booking-button {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}

.demo-link-button {
  background: rgba(255,255,255,0.8);
  color: var(--text);
}

.demo-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--text-soft);
}

/* =========================
   COMO FUNCIONA
   ========================= */

.how-section {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--text-light);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 34px;
  font-weight: 800;
}

.step-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   DASHBOARD / GESTÃO
   ========================= */

.management-section {
  background: #fbfaf8;
}

.management-window {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 480px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.window-sidebar {
  padding: 20px 14px;
  background: #24221f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.sidebar-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #24221f;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
}

.sidebar-item {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
}

.sidebar-item.active {
  background: rgba(255,255,255,0.95);
}

.window-content {
  padding: 24px;
  background: #f8f6f2;
}

.window-heading {
  margin-bottom: 20px;
}

.window-heading span,
.window-heading strong {
  display: block;
}

.window-heading span {
  color: var(--text-light);
  font-size: 11px;
}

.window-heading strong {
  margin-top: 4px;
  font-size: 20px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-card {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-soft);
}

.metric-card span {
  display: block;
  color: var(--text-light);
  font-size: 10px;
}

.metric-card strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.metric-card small {
  display: block;
  margin-top: 2px;
  color: var(--text-light);
  font-size: 9px;
}

.fake-chart {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border-soft);
}

.chart-header {
  color: var(--text-soft);
  font-size: 11px;
  margin-bottom: 18px;
}

.chart-bars {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.chart-bars span {
  flex: 1;
  height: var(--height);
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(
      180deg,
      var(--accent),
      var(--accent-soft)
    );
}

.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.mini-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.65);
}

.mini-feature > span {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.mini-feature strong {
  display: block;
  font-size: 14px;
}

.mini-feature p {
  margin-top: 3px;
  color: var(--text-light);
  font-size: 11px;
}

/* =========================
   RECURSOS
   ========================= */

.resources-section {
  background: var(--bg);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.resource-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resource-card.large-card {
  grid-column: span 2;
}

.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.resource-card h3 {
  font-size: 20px;
}

.resource-card p {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   APP / PWA
   ========================= */

.app-section {
  background: #fbfaf8;
}

.app-card {
  min-height: 500px;
  padding: 60px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(168,154,135,0.24),
      transparent 35%
    ),
    #22201e;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.app-content {
  max-width: 580px;
}

.app-content h2 {
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.app-content h2 span {
  color: #c4b8aa;
}

.app-content p {
  margin: 22px 0 28px;
  max-width: 520px;
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.7;
}

.app-phone {
  justify-self: center;
  width: 260px;
  height: 420px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(
      160deg,
      #302d29,
      #151413
    );
  box-shadow: 0 35px 80px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(5deg);
}

.app-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: #f5f0ea;
  color: #24211f;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.app-phone strong {
  font-size: 18px;
}

.app-phone span {
  margin-top: 5px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

/* =========================
   ANTES / DEPOIS
   ========================= */

.comparison-section {
  background: var(--bg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comparison-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
}

.comparison-card.after {
  background: #272521;
  color: #fff;
  border-color: #272521;
  box-shadow: var(--shadow-lg);
}

.comparison-label {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--text-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.comparison-card.after .comparison-label {
  color: rgba(255,255,255,0.5);
}

.comparison-card ul {
  display: grid;
  gap: 16px;
}

.comparison-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.comparison-card.before li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
}

.comparison-card.after li {
  color: rgba(255,255,255,0.76);
}

.comparison-card.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9ac4aa;
  font-weight: 800;
}

/* =========================
   PLANOS
   ========================= */

.pricing-section {
  background: #fbfaf8;
}

.pricing-grid {
  width: min(100%, 850px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: rgba(168,154,135,0.6);
  box-shadow: var(--shadow-lg);
}

.featured-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.plan-name {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-top: 18px;
  line-height: 1;
}

.price span {
  margin-top: 9px;
  font-size: 16px;
}

.price strong {
  font-size: 62px;
  letter-spacing: -0.05em;
}

.price small {
  align-self: flex-end;
  margin: 0 0 8px 5px;
  color: var(--text-light);
  font-size: 12px;
}

.pricing-card > p {
  margin-top: 15px;
  color: var(--text-soft);
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0;
}

.pricing-card li {
  color: var(--text-soft);
  font-size: 14px;
}

.pricing-note {
  text-align: center;
  margin-top: 22px;
  color: var(--text-light);
  font-size: 12px;
}

/* =========================
   FAQ
   ========================= */

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: flex-start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-weight: 700;
}

.faq-plus {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

/* =========================
   CTA FINAL
   ========================= */

.final-cta-section {
  padding-top: 60px;
  background: var(--bg);
}

.final-cta {
  padding: 55px 58px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(168,154,135,0.22),
      transparent 35%
    ),
    #24221f;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.final-label {
  color: #c9beb2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.final-cta h2 {
  max-width: 680px;
  margin-top: 10px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.final-cta p {
  margin-top: 16px;
  color: rgba(255,255,255,0.58);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  padding: 70px 0 26px;
  background: #f3efe9;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-logo {
  width: 170px;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

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

.footer-column strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-column a,
.footer-cookie-button {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.footer-column a:hover,
.footer-cookie-button:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-light);
  font-size: 11px;
}

/* =========================
   COOKIES
   ========================= */

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 500;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-content {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(31,29,27,0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.cookie-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.63);
  font-size: 12px;
  line-height: 1.55;
}

.cookie-content a {
  display: inline-block;
  margin-top: 6px;
  color: #d8cec2;
  font-size: 11px;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
}

.cookie-modal.open {
  display: block;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,16,15,0.48);
  backdrop-filter: blur(6px);
}

.cookie-modal-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92%, 560px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
  padding: 26px;
}

.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.cookie-modal-header span {
  color: var(--text-light);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cookie-modal-header h2 {
  margin-top: 5px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 24px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}

.cookie-option strong {
  display: block;
  font-size: 14px;
}

.cookie-option p {
  max-width: 360px;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.always-active {
  flex-shrink: 0;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
}

/* switch */

.switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d8d4cf;
  transition: 0.25s ease;
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  transition: 0.25s ease;
}

.switch input:checked + .switch-slider {
  background: var(--primary);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(20px);
}

/* =========================
   REVEAL
   ========================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s cubic-bezier(.2,.8,.2,1),
    transform 0.75s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ANIMAÇÕES
   ========================= */

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-booking {
  animation: floatSoft 4.6s ease-in-out infinite;
}

.floating-profile {
  animation: floatSoft 5.2s ease-in-out infinite reverse;
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-dashboard-card {
    transform: none;
  }

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

  .resource-card.large-card {
    grid-column: span 1;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .desktop-login {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.32s ease;
  }

  .mobile-menu.open {
    max-height: 460px;
    border-top-color: var(--border-soft);
  }

  .mobile-menu nav {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu nav > a:not(.mobile-cta) {
    padding: 11px 4px;
    color: var(--text-soft);
    font-size: 14px;
  }

  .mobile-cta {
    margin-top: 8px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-dashboard-card {
    width: min(100%, 560px);
  }

  .split-grid {
    gap: 50px;
  }

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

  .faq-intro {
    position: static;
  }

  .faq-grid {
    gap: 40px;
  }

  .app-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-content {
    margin: 0 auto;
  }

  .app-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 138px;
  }

  .header-actions > .btn-primary {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 11px 16px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-dashboard-card {
    padding: 18px;
    border-radius: 24px;
  }

  .dashboard-summary {
    gap: 8px;
  }

  .summary-item {
    padding: 14px;
  }

  .appointment-card {
    grid-template-columns: 52px 1fr;
  }

  .appointment-status {
    display: none;
  }

  .floating-booking {
    left: 2px;
    bottom: 20px;
  }

  .floating-profile {
    right: 2px;
    top: 16px;
  }

  .section-heading h2,
  .section-content h2,
  .faq-intro h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .steps-grid,
  .resources-grid,
  .comparison-grid,
  .pricing-grid,
  .metric-grid,
  .mini-features {
    grid-template-columns: 1fr;
  }

  .public-page-demo {
    margin-top: 10px;
  }

  .management-window {
    grid-template-columns: 52px 1fr;
  }

  .window-sidebar {
    padding: 16px 8px;
  }

  .window-content {
    padding: 16px;
  }

  .chart-bars {
    height: 130px;
  }

  .app-card {
    padding: 38px 22px;
    border-radius: 26px;
  }

  .app-phone {
    width: 220px;
    height: 360px;
  }

  .comparison-card,
  .pricing-card {
    padding: 24px;
  }

  .final-cta {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 72px 0;
  }

  .hero-badge {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 47px;
  }

  .hero-trust {
    display: grid;
  }

  .hero-dashboard-card {
    min-height: 420px;
  }

  .dashboard-top strong {
    font-size: 20px;
  }

  .summary-item strong {
    font-size: 20px;
  }

  .appointment-info span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .floating-card {
    transform: scale(0.92);
  }

  .floating-booking {
    transform-origin: left bottom;
  }

  .floating-profile {
    transform-origin: right top;
  }

  .phone-shell {
    width: 100%;
    max-width: 330px;
  }

  .phone-screen {
    min-height: 580px;
  }

  .price strong {
    font-size: 54px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-modal-panel {
    width: calc(100% - 20px);
    padding: 20px;
    border-radius: 22px;
  }

  .cookie-option {
    align-items: flex-start;
  }
}

/* =========================
   ACESSIBILIDADE / MOVIMENTO
   ========================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
