/* ===================================================
   Francine Telles, Hub Digital
   Identidade: azul escuro #1a2837, ciano vívido #00c4cc, branco
   =================================================== */

:root {
  --navy: #1a2837;
  --navy-soft: #24384a;
  --cyan: #00c4cc;
  --cyan-dark: #00a3aa;
  --white: #ffffff;
  --ink-soft: #5b6975;
  --ink-soft-on-dark: #c9d6dd;
  --mint: #e9fbfc;
  --line: #e4e8ec;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

.btn-cta {
  background: var(--cyan);
  color: var(--navy);
}
.btn-cta:hover { background: var(--cyan-dark); box-shadow: 0 8px 20px rgba(0,196,204,0.35); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--cyan-dark); }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 96px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan-dark);
  font-weight: 700;
  font-size: 12.5px;
  margin: 0 0 18px 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 22px 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.h1-accent {
  color: var(--cyan-dark);
}
.hero .lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 34px 0;
}
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--navy-soft);
  box-shadow: 0 24px 60px -20px rgba(26,40,55,0.4);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(26,40,55,0.55);
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: transform 0.15s ease, background 0.15s ease;
}
.play-btn:hover { transform: translateX(-50%) scale(1.06); background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.play-btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.media-caption {
  position: absolute;
  left: 50%;
  bottom: 108px;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 12.5px;
  background: rgba(26,40,55,0.55);
  padding: 4px 14px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

/* ---------- Doorway ---------- */
.doorway { padding: 20px 0 100px; }
.doorway-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.doorway-head h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 10px 0;
}
.doorway-head p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  min-height: 300px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); }
.card-light {
  background: var(--mint);
  color: var(--navy);
}
.card-light:hover { box-shadow: 0 20px 40px -20px rgba(0,196,204,0.4); }
.card-dark {
  background: var(--navy);
  color: var(--white);
}
.card-dark:hover { box-shadow: 0 20px 40px -20px rgba(26,40,55,0.55); }

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.card-dark .card-icon { background: rgba(255,255,255,0.08); }

.card-logo-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 78px;
  border-radius: 10px;
  overflow: hidden;
}

.card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0 0 14px 0;
}
.card p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 22px 0;
  max-width: 78%;
}
.card-dark p { color: var(--ink-soft-on-dark); }
.card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 14.5px;
}
.card-light .card-link { color: var(--navy); }
.card-dark .card-link { color: var(--cyan); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--cyan-dark); }

/* ---------- Página Dono da Cadeira ---------- */
.dc-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dc-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.dc-brand { display: flex; align-items: center; gap: 14px; }
.dc-brand-logo { width: 46px; border-radius: 8px; overflow: hidden; }
.dc-brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); }
.dc-brand-by { font-size: 12px; color: var(--ink-soft-on-dark); font-style: italic; }

.dc-hero { background: var(--navy); color: var(--white); padding: 80px 0 100px; }
.dc-hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.dc-hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 22px 0;
  color: var(--white);
}
.dc-hero .lead {
  color: var(--ink-soft-on-dark);
  font-size: 15.5px;
  max-width: 500px;
  margin: 0 0 32px 0;
}
.dc-urgency {
  margin-top: 18px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--cyan);
}
.dc-video {
  position: relative;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3.6;
  background: #0d1d28;
  border: 1.5px solid rgba(0,196,204,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}
.dc-video .play-btn {
  position: static;
  transform: none;
  width: 84px;
  height: 84px;
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-size: 26px;
}
.dc-video .play-btn:hover { background: var(--cyan); color: var(--navy); }
.dc-video .video-note { color: var(--ink-soft-on-dark); font-size: 13px; }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .hero .wrap, .dc-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 32px; }
  .dc-hero h1 { font-size: 30px; }
  .cards { grid-template-columns: 1fr; }
  .site-header .wrap { flex-wrap: wrap; gap: 14px 0; }
  .nav-links { gap: 24px; order: 3; width: 100%; }
  .card p { max-width: 100%; }
  .hero-media { order: -1; aspect-ratio: 4/3.4; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .brand-group { flex-wrap: wrap; gap: 10px; }
  .hero h1 { font-size: 27px; }
  .dc-hero h1 { font-size: 25px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .dc-header .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
}
