/* ============================================================
   Agenda Pet Online — Site de Marketing
   Bootstrap 5.3 + customizações
   ============================================================ */

:root {
  /* Paleta extraída do logo oficial */
  --apo-primary:       #009EC5;   /* ciano Agenda Pet Online */
  --apo-primary-dark:  #007BA8;
  --apo-primary-vivid: #00BCEF;   /* ciano vivo (contornos do logo) */
  --apo-primary-light: #E0F7FF;
  --apo-accent:        #F5C200;   /* amarelo dourado do logo */
  --apo-accent-dark:   #D4A800;
  --apo-accent-light:  #FFF8D6;
  --apo-dark:          #1A3A6A;   /* azul-marinho dos contornos */
  --apo-slate:         #2D5080;
  --apo-muted:         #5B7A99;
  --apo-light:         #F0FAFF;
  --apo-border:        #D0EBF5;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 24px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 40px rgba(0,0,0,.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--apo-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.125rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.375rem); }
h3 { font-size: 1.125rem; }
p  { margin-bottom: 0; }

/* ── UTILITIES ──────────────────────────────────────────── */
.section-badge {
  display: inline-block;
  padding: .375rem 1rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.badge-blue   { background: var(--apo-primary-light); color: var(--apo-primary); }
.badge-orange { background: var(--apo-accent-light);  color: #8a6c00; }
.badge-dark   { background: rgba(245,194,0,.18); color: var(--apo-accent); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--apo-muted);
  max-width: 580px;
  margin-inline: auto;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary-apo {
  background: var(--apo-accent);       /* amarelo: CTA principal = mais destaque */
  color: var(--apo-dark);
  border: 2px solid var(--apo-accent);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-apo:hover {
  background: var(--apo-accent-dark);
  border-color: var(--apo-accent-dark);
  color: var(--apo-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,194,0,.35);
}

.btn-outline-apo {
  background: transparent;
  color: var(--apo-primary);
  border: 2px solid var(--apo-primary);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}
.btn-outline-apo:hover {
  background: var(--apo-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ── BRAND HEADER ───────────────────────────────────────── */
.brand-header {
  background: #fff;
  padding: 1.25rem 0 1rem;
  border-bottom: 3px solid var(--apo-primary-light);
  text-align: center;
}
.brand-header-logo {
  width: 540px;
  height: 370px;
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
  transition: transform .3s ease;
}
.brand-header-logo:hover { transform: scale(1.02); }

@media (max-width: 767px) {
  .brand-header-logo { width: 100%; height: auto; max-height: 240px; }
}
@media (max-width: 480px) {
  .brand-header-logo { max-height: 180px; }
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar-apo {
  background: #1A3A6A;
  padding: .875rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
/* garante que o collapse do Bootstrap expanda com flex correto */
.navbar-apo .navbar-collapse {
  justify-content: flex-end;
}
.navbar-apo.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.navbar-brand-apo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
/* Logo pequeno na navbar — aparece após scroll */
.navbar-brand-apo img {
  height: 40px;
  width: auto;
}
/* No topo da página, oculta o logo da navbar (já está no brand-header) */
.navbar-scroll-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.navbar-apo.scrolled .navbar-scroll-logo {
  opacity: 1;
  pointer-events: auto;
}
/* Mobile: sempre mostra o logo na navbar */
@media (max-width: 991px) {
  .navbar-scroll-logo { opacity: 1 !important; pointer-events: auto !important; }
}
.nav-link-apo {
  color: rgba(255,255,255,.7) !important;
  font-weight: 500;
  padding: .5rem 1rem !important;
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.nav-link-apo:hover { color: #fff !important; }
.nav-cta {
  background: var(--apo-accent);
  color: var(--apo-dark) !important;  /* amarelo exige texto escuro */
  border-radius: var(--radius-sm);
  padding: .5rem 1.25rem !important;
  font-weight: 700;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--apo-accent-dark) !important;
  color: var(--apo-dark) !important;
}
.nav-access {
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--radius-sm);
  padding: .5rem 1.25rem !important;
  font-weight: 600;
  transition: var(--transition);
}
.nav-access:hover {
  border-color: #fff !important;
  color: #fff !important;
  background: rgba(255,255,255,.08);
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.25);
  padding: .375rem .625rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  min-height: 80vh;
  background: linear-gradient(140deg, #F0FAFF 0%, #D6F2FC 40%, #FFF8D6 100%);
  display: flex;
  align-items: center;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,188,239,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,194,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-status-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--apo-border);
  border-radius: 100px;
  padding: .375rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--apo-slate);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.status-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin: 1.5rem 0 2rem;
}
.hero-check-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  color: var(--apo-slate);
  font-weight: 500;
}
.hero-check-item i { color: var(--apo-primary); }

/* ── APP MOCKUP ─────────────────────────────────────────── */
.mockup-wrap {
  perspective: 1200px;
}
.app-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition);
}
.app-mockup:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  box-shadow: var(--shadow-xl), 0 30px 60px rgba(0,158,197,.18);
}

/* browser bar */
.m-bar {
  background: #1A3A6A;  /* azul-marinho do logo */
  padding: .625rem 1rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.m-dots { display: flex; gap: .35rem; }
.m-dot  { width: 10px; height: 10px; border-radius: 50%; }
.m-dot.r { background: #ef4444; }
.m-dot.y { background: #f59e0b; }
.m-dot.g { background: #22c55e; }
.m-url {
  flex: 1;
  background: #2D5080;  /* slate do logo */
  border-radius: 4px;
  padding: .2rem .75rem;
  font-size: .7rem;
  color: #B3E8F8;        /* ciano claro */
  font-family: 'Courier New', monospace;
}

/* app body */
.m-body { display: flex; height: 290px; }

/* sidebar */
.m-sidebar {
  width: 130px;
  background: #007BA8; /* ciano escuro do logo */
  padding: .875rem .75rem;
  flex-shrink: 0;
}
.m-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.m-brand-icon { width: 26px; height: 26px; background: rgba(255,255,255,.9); border-radius: 5px; }
.m-brand-text { width: 56px; height: 7px; background: rgba(255,255,255,.55); border-radius: 3px; }
.m-nav-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .5rem;
  border-radius: 6px;
  margin-bottom: .25rem;
}
.m-nav-item.active { background: rgba(255,255,255,.2); }
.m-nav-icon { width: 13px; height: 13px; background: rgba(255,255,255,.6); border-radius: 3px; flex-shrink: 0; }
.m-nav-text { height: 7px; background: rgba(255,255,255,.45); border-radius: 3px; flex: 1; }
.m-nav-item.active .m-nav-text { background: rgba(255,255,255,.9); }

/* main content */
.m-content { flex: 1; background: #f8fafc; padding: .875rem; overflow: hidden; }
.m-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.m-page-title { width: 90px; height: 9px; background: var(--apo-dark); border-radius: 3px; opacity: .6; }
.m-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--apo-primary-dark), var(--apo-primary-vivid)); }

.m-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: .75rem; }
.m-kpi {
  background: #fff;
  border-radius: 7px;
  padding: .625rem .5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.m-kpi-label { width: 38px; height: 5px; background: #cbd5e1; border-radius: 3px; margin-bottom: .375rem; }
.m-kpi-value { height: 10px; border-radius: 3px; }
.m-kpi:nth-child(1) .m-kpi-value { background: var(--apo-primary);  width: 28px; }
.m-kpi:nth-child(2) .m-kpi-value { background: #22c55e;              width: 22px; }
.m-kpi:nth-child(3) .m-kpi-value { background: var(--apo-accent);    width: 32px; }

.m-kanban { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.m-col { background: #e2e8f0; border-radius: 6px; padding: .5rem; }
.m-col-hdr { width: 48px; height: 6px; background: #64748b; border-radius: 3px; margin-bottom: .5rem; }
.m-card {
  background: #fff;
  border-radius: 5px;
  padding: .35rem .5rem;
  margin-bottom: .35rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.m-card-name { width: 52px; height: 5px; background: #334155; border-radius: 3px; opacity: .7; margin-bottom: .25rem; }
.m-card-tag  { height: 4px; width: 28px; border-radius: 2px; opacity: .5; }
.m-col:nth-child(1) .m-card:nth-child(2) .m-card-tag { background: var(--apo-primary); }
.m-col:nth-child(1) .m-card:nth-child(3) .m-card-tag { background: var(--apo-accent);  }
.m-col:nth-child(2) .m-card:nth-child(2) .m-card-tag { background: #22c55e; }
.m-col:nth-child(3) .m-card:nth-child(2) .m-card-tag { background: var(--apo-accent);  }
.m-col:nth-child(3) .m-card:nth-child(3) .m-card-tag { background: var(--apo-primary); }

/* ── SERVICES ───────────────────────────────────────────── */
.services-section {
  padding: 6rem 0;
  background: #fff;
}
.svc-card {
  background: #fff;
  border: 1.5px solid var(--apo-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.svc-card:hover {
  border-color: var(--apo-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.svc-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.875rem;
  background: var(--apo-primary-light);
  color: var(--apo-primary);
  transition: var(--transition);
}
.svc-card:hover .svc-icon {
  background: var(--apo-primary);
  color: #fff;
}
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p  { font-size: .875rem; color: var(--apo-muted); }

.subdomain-pill {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  background: linear-gradient(135deg, var(--apo-dark), var(--apo-slate));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  font-size: .9rem;
  margin-top: 3rem;
}
.subdomain-pill code {
  background: rgba(245,194,0,.2);
  border-radius: 5px;
  padding: .2rem .625rem;
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  color: var(--apo-accent);  /* amarelo do logo */
}

/* ── FEATURES ───────────────────────────────────────────── */
.features-section {
  padding: 6rem 0;
  background: var(--apo-light);
}
.feat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid var(--apo-primary);
}
/* Card central (Financeiro) usa amarelo para variar a paleta */
.features-section .col-lg-4:nth-child(2) .feat-card { border-top-color: var(--apo-accent); }
.features-section .col-lg-4:nth-child(2) .feat-icon {
  background: var(--apo-accent-light);
  color: var(--apo-accent-dark);
}
.features-section .col-lg-4:nth-child(2) .feat-list li i { color: var(--apo-accent-dark); }
.feat-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}
.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--apo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--apo-primary);
  margin-bottom: 1.25rem;
}
.feat-card h3  { margin-bottom: .875rem; }
.feat-list     { list-style: none; padding: 0; margin: 0; }
.feat-list li  {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .3rem 0;
  font-size: .875rem;
  color: var(--apo-muted);
  border-bottom: 1px solid var(--apo-border);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li i { color: var(--apo-primary); margin-top: 2px; flex-shrink: 0; }

/* ── HEALTH ─────────────────────────────────────────────── */
.badge-health { background: #e6f9f0; color: #1a7a4a; }

.health-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--apo-light) 0%, #f0fff8 100%);
}
.health-card {
  background: #fff;
  border: 1.5px solid var(--apo-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid var(--apo-primary);
}
.health-card--accent {
  border-top-color: #22c55e;
}
.health-card--accent .health-icon {
  background: #e6f9f0;
  color: #1a7a4a;
}
.health-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.health-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--apo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--apo-primary);
  margin-bottom: 1.25rem;
}
.health-card h3 { margin-bottom: .75rem; font-size: 1.05rem; }
.health-card p  { font-size: .9rem; color: var(--apo-muted); line-height: 1.7; margin: 0; }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.how-section {
  padding: 6rem 0;
  background: #fff;
}
.step-card { text-align: center; padding: 1.5rem; }
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--apo-primary);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 8px var(--apo-primary-light);
  position: relative;
  z-index: 1;
}
/* Passo 2 usa amarelo para alternar a paleta */
.steps-row .col-md-4:nth-child(2) .step-num {
  background: var(--apo-accent);
  color: var(--apo-dark);
  box-shadow: 0 0 0 8px var(--apo-accent-light);
}
.step-card h3 { margin-bottom: .5rem; }
.step-card p  { font-size: .9rem; color: var(--apo-muted); }

/* dashed connector between steps on desktop */
.steps-row {
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 46px;
  left: calc(16.666% + 30px);
  width: calc(66.666% - 60px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--apo-border) 0, var(--apo-border) 8px, transparent 8px, transparent 16px);
  display: none;
}
@media (min-width: 768px) {
  .steps-row::before { display: block; }
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--apo-accent-light) 0%, #fff 60%);
}
.price-card {
  max-width: 520px;
  margin: 2.5rem auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-xl);
  border-top: 5px solid var(--apo-accent);
  text-align: center;
}
.price-amount {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--apo-dark);
  line-height: 1;
  letter-spacing: -.03em;
}
.price-amount sup {
  font-size: 1.75rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--apo-muted);
}
.price-amount span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--apo-muted);
}
.price-label {
  font-size: .875rem;
  color: var(--apo-muted);
  margin-top: .25rem;
  margin-bottom: 1.75rem;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 0;
  font-size: .95rem;
  color: var(--apo-slate);
  border-bottom: 1px solid var(--apo-border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--apo-primary); font-size: 1rem; flex-shrink: 0; }
.price-note {
  font-size: .8rem;
  color: var(--apo-muted);
  margin-top: 1rem;
}

/* badge de preço no hero */
.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--apo-accent);
  color: var(--apo-dark);
  border-radius: 100px;
  padding: .375rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(245,194,0,.35);
}
.hero-price-badge i { font-size: 1rem; }

/* ── DEMO ───────────────────────────────────────────────── */
.demo-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f2a5a 0%, #1A3A6A 100%);
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,188,239,.2) 0%, transparent 70%);
  pointer-events: none;
}
.demo-section::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,194,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.demo-section > .container { position: relative; z-index: 1; }
.demo-section h2   { color: #fff; }
.demo-section .lead { color: rgba(255,255,255,.75); }
.demo-info-grid {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .125rem;
}
.demo-info {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-bottom: .5rem;
}
.demo-info i { color: var(--apo-accent); font-size: 1.1rem; flex-shrink: 0; }

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--apo-accent);   /* amarelo — CTA de conversão */
  color: var(--apo-dark);
  border-radius: var(--radius-md);
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,194,0,.3);
}
.btn-demo i { font-size: 1.375rem; }
.btn-demo:hover {
  background: var(--apo-accent-dark);
  color: var(--apo-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,194,0,.45);
}

.calendar-placeholder {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.calendar-placeholder i      { font-size: 3.5rem; color: rgba(255,255,255,.25); margin-bottom: 1rem; display: block; }
.calendar-placeholder p      { color: rgba(255,255,255,.5); font-size: .875rem; margin: 0; }
.calendar-placeholder .lead  { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: .375rem; }
.calendar-iframe-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.calendar-iframe-wrap iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 560px;
}

/* ── PORTAL DO TUTOR ────────────────────────────────────── */
.portal-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f2a5a 0%, var(--apo-dark) 100%);
  position: relative;
  overflow: hidden;
}
.portal-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,188,239,.15) 0%, transparent 70%);
  pointer-events: none;
}
.badge-portal { background: rgba(0,188,239,.2); color: #7de8ff; }
.portal-section h2 { color: #fff; }
.portal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portal-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.portal-list li:last-child { border-bottom: none; }
.portal-list li i { color: var(--apo-accent); font-size: 1.1rem; flex-shrink: 0; }

.portal-cards { display: flex; flex-direction: column; gap: 1rem; }
.portal-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.portal-card:hover { background: rgba(255,255,255,.12); }
.portal-card--accent { border-color: rgba(0,188,239,.4); background: rgba(0,188,239,.08); }
.portal-card--soon   { opacity: .6; }
.portal-card-icon {
  font-size: 1.75rem;
  color: var(--apo-primary-vivid);
  flex-shrink: 0;
  margin-top: 2px;
}
.portal-card--accent .portal-card-icon { color: #7de8ff; }
.portal-card--soon   .portal-card-icon { color: rgba(255,255,255,.5); }
.portal-card strong { display: block; color: #fff; margin-bottom: .25rem; }
.portal-card p { font-size: .875rem; color: rgba(255,255,255,.6); margin: 0; }

/* ── FOTOS ───────────────────────────────────────────────── */
.photos-section {
  padding: 6rem 0;
  background: #fff;
}
.photo-card {
  background: var(--apo-light);
  border: 1.5px solid var(--apo-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--apo-primary);
}
.photo-card--accent { border-top-color: var(--apo-accent); }
.photo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.photo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--apo-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--apo-primary);
  margin: 0 auto 1.25rem;
}
.photo-card--accent .photo-icon { background: var(--apo-accent-light); color: var(--apo-accent-dark); }
.photo-card h3 { margin-bottom: .75rem; font-size: 1.05rem; }
.photo-card p  { font-size: .875rem; color: var(--apo-muted); line-height: 1.7; margin: 0; }

/* ── EM BREVE ────────────────────────────────────────────── */
.coming-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0D1F40 0%, #1A3A6A 100%);
}
.badge-coming { background: rgba(245,194,0,.18); color: var(--apo-accent); }
.coming-section h2   { color: #fff; }
.coming-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.coming-card:hover { background: rgba(255,255,255,.1); }
.coming-icon {
  font-size: 2.5rem;
  color: var(--apo-accent);
  margin-bottom: 1rem;
}
.coming-card h3 { color: #fff; margin-bottom: .75rem; }
.coming-card p  { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #0D1F40;  /* azul-marinho profundo — consistente com logo */
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,.55);
}
.footer-logo { height: 36px; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); margin-top: .625rem; max-width: 280px; }
.footer-heading {
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .875rem;
  padding: .25rem 0;
  transition: color .2s;
}
.footer-link:hover { color: var(--apo-accent); }
.footer-hr { border-color: rgba(255,255,255,.08); margin: 2rem 0 1.5rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── DEMO FORM ──────────────────────────────────────────── */
.demo-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 2rem;
}
.demo-meta span { display: flex; align-items: center; gap: .35rem; }

.demo-label {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .875rem;
  margin-bottom: .375rem;
}
.required-star { color: var(--apo-accent); }

.demo-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: .625rem 1rem;
  color: #fff;
  font-size: .9375rem;
  font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.demo-input::placeholder { color: rgba(255,255,255,.32); }
.demo-input:focus {
  border-color: var(--apo-primary);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(0,158,197,.22);
}
.demo-input.is-error { border-color: #f87171; }
textarea.demo-input { resize: vertical; min-height: 82px; }

.demo-field-error {
  color: #fca5a5;
  font-size: .8125rem;
  margin-top: .25rem;
  min-height: 1.2em;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 3.5rem 0 3rem; }
  .app-mockup   { transform: none !important; margin-top: 2.5rem; }
  .services-section, .features-section, .health-section, .portal-section,
  .photos-section, .how-section, .demo-section, .coming-section { padding: 4rem 0; }
}
@media (max-width: 575px) {
  .subdomain-pill { font-size: .8rem; padding: .875rem 1.25rem; flex-wrap: wrap; justify-content: center; }
  .btn-demo { width: 100%; justify-content: center; }
}
