:root {
  --bg0: #0b0b0b;
  --bg1: #101010;
  --bg2: #1b1411;
  --ink: #f3f0e6;
  --muted: #c9c3ae;
  --line: rgba(224, 224, 192, .18);
  --glass: rgba(255, 255, 255, .06);
  --glass2: rgba(255, 255, 255, .10);
  --accent: #e0e0c0;
  /* cor principal da logo */
  --accent2: #c9a26a;
  /* dourado quente para CTA */
  --shadow: 0 16px 60px rgba(0, 0, 0, .45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg0);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  opacity: .92
}

.snack-bar {
  display: none;
  position: fixed;
  bottom: 0px;
  z-index: 999999999;
  width: 100%;
  padding: 30px 15px 30px 15px;
  background-color: #dc3545;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 150%;
  text-align: center;
  color: #FFFFFF;
  line-height: 110%;
}

.color-danger {
  background-color: #dc3545;
}

.color-success {
  background-color: #1AA179;
}

.loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999999;
}

.loading-msg {
  margin-top: 20px !important;
  font-family: Bold;
  font-size: 130%;
  color: #FFFFFF;
}

video.device-screen {
  display: block
}

.bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, .55) 0%, rgba(11, 11, 11, .88) 55%, rgba(11, 11, 11, .96) 100%),
    url("../public/images/home-bg.jpg") center/cover no-repeat;
  filter: saturate(.95) contrast(1.05);
  z-index: -2;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 25% 5%, rgba(224, 224, 192, .10), transparent 60%),
    radial-gradient(700px 380px at 85% 20%, rgba(201, 162, 106, .10), transparent 55%),
    radial-gradient(900px 520px at 50% 95%, rgba(224, 224, 192, .06), transparent 60%);
  z-index: -1;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(16, 16, 16, .70), rgba(16, 16, 16, .25));
  border-bottom: 1px solid rgba(224, 224, 192, .10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block
}

.menu {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  color: rgba(243, 240, 230, .90);
}

.menu a {
  padding: 8px 10px;
  border-radius: 12px
}

.menu a:hover {
  background: rgba(255, 255, 255, .06)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

#btnOpenMenu {
  display: none
}

.btn {
  border: 1px solid rgba(224, 224, 192, .16);
  background: rgba(255, 255, 255, .06);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 224, 192, .28);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.btn:active {
  transform: translateY(0px);
  opacity: .95
}

.btn-lg {
  padding: 12px 16px;
  border-radius: 16px
}

.btn-icon {
  padding: 10px 12px
}

.btn-primary {
  background: linear-gradient(135deg, rgba(224, 224, 192, .18), rgba(201, 162, 106, .22));
  border-color: rgba(224, 224, 192, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(224, 224, 192, .24), rgba(201, 162, 106, .28));
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.btn-secondary {
  background: rgba(16, 16, 16, .20);
  border-color: rgba(224, 224, 192, .22);
}

.btn-ghost {
  background: rgba(255, 255, 255, .02);
  border-color: rgba(224, 224, 192, .12);
}

.hero {
  padding: 44px 0 12px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}

.pill {
  display: inline-flex;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(224, 224, 192, .14);
  color: rgba(243, 240, 230, .92);
  font-weight: 700;
  font-size: 13px;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.txt-accent {
  color: var(--accent)
}

.lead {
  margin: 0 0 18px;
  color: rgba(243, 240, 230, .85);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(224, 224, 192, .10);
}

.point strong {
  display: block;
  font-size: 14px
}

.point span {
  display: block;
  font-size: 13px;
  color: rgba(243, 240, 230, .78);
  margin-top: 2px
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(224, 224, 192, .10);
  border: 1px solid rgba(224, 224, 192, .16);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.device {
  width: min(320px, 82vw);
  aspect-ratio: 9/19.5;
  border-radius: 42px;
  background: rgba(0, 0, 0, .50);
  border: 1px solid rgba(224, 224, 192, .20);
  box-shadow: var(--shadow);
  padding: 14px 12px;
  position: relative;
  overflow: hidden;
}

.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(224, 224, 192, .14);
  z-index: 2;
}

.device-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  filter: saturate(1.02);
}

.floating-card {
  position: absolute;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(224, 224, 192, .16);
  background: rgba(16, 16, 16, .35);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .35);
  width: 165px;
}

.floating-card strong {
  display: block;
  font-size: 13px
}

.floating-card span {
  display: block;
  font-size: 12px;
  color: rgba(243, 240, 230, .78);
  margin-top: 2px
}

.fc-1 {
  top: 16%;
  left: -6%
}

.fc-2 {
  bottom: 18%;
  right: -6%
}

.section {
  padding: 58px 0
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(224, 224, 192, .08);
  border-bottom: 1px solid rgba(224, 224, 192, .08);
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 0;
  color: rgba(243, 240, 230, .78);
  line-height: 1.55;
}

.section-head {
  margin-bottom: 18px
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(224, 224, 192, .12);
  border-radius: var(--radius2);
  padding: 16px 16px 14px;
  min-height: 132px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 224, 192, .22);
  background: rgba(255, 255, 255, .07);
}

.card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(224, 224, 192, .10);
  border: 1px solid rgba(224, 224, 192, .14);
  margin-bottom: 10px;
  font-size: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px
}

.card p {
  margin: 0;
  color: rgba(243, 240, 230, .78);
  line-height: 1.45;
  font-size: 13px
}

.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.shot {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(224, 224, 192, .12);
  border-radius: var(--radius2);
  padding: 12px;
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: 730px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .18);
  display: block;
}

.shot span {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  color: rgba(243, 240, 230, .85);
  font-size: 13px;
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(224, 224, 192, .22);
  background: rgba(255, 255, 255, .03);
  color: rgba(243, 240, 230, .82);
}

.note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(224, 224, 192, .14);
}

.tv-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(243, 240, 230, .80);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(224, 224, 192, .10);
  border: 1px solid rgba(224, 224, 192, .14);
  color: var(--accent);
  font-weight: 900;
  flex: 0 0 auto;
}

.tv-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px
}

.tv-img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(224, 224, 192, .12);
  box-shadow: var(--shadow);
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-card {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(224, 224, 192, .12);
  background: rgba(255, 255, 255, .04);
}

.mini-card strong {
  display: block;
  font-size: 13px
}

.mini-card span {
  display: block;
  margin-top: 4px;
  color: rgba(243, 240, 230, .78);
  font-size: 13px
}

.form {
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(224, 224, 192, .14);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px
}

label {
  font-weight: 700;
  font-size: 12px;
  color: rgba(243, 240, 230, .88)
}

input,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(224, 224, 192, .14);
  background: rgba(0, 0, 0, .30);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(224, 224, 192, .30);
  box-shadow: 0 0 0 4px rgba(224, 224, 192, .08);
}

textarea {
  resize: vertical
}

.form-foot {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(243, 240, 230, .70)
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(224, 224, 192, .10);
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dev-signature {
  height: 30px;
  width: auto;
  display: block;
  opacity: .80;
}

.footer-brand p {
  margin: 10px 0 0;
  color: rgba(243, 240, 230, .70);
  font-size: 12px;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.modal.open {
  display: block
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .70);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(560px, calc(100% - 28px));
  margin: 72px auto 0;
  border-radius: 22px;
  border: 1px solid rgba(224, 224, 192, .18);
  background: rgba(16, 16, 16, .75);
  box-shadow: var(--shadow);
  padding: 16px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-head h3 {
  margin: 0;
  font-size: 18px
}

.modal-sub {
  margin: 8px 0 12px;
  color: rgba(243, 240, 230, .78);
  line-height: 1.5
}

.modal-form {
  margin-top: 8px
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.muted {
  color: rgba(243, 240, 230, .65);
  display: block;
  margin-top: 10px
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 12px
  }

  .tv-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .shots {
    grid-template-columns: 1fr
  }

  .shot img {
    height: 520px
  }

  .fc-1 {
    left: 4%
  }

  .fc-2 {
    right: 4%
  }
}

@media (max-width: 680px) {
  .menu {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(224, 224, 192, .18);
    background: rgba(16, 16, 16, .85);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex
  }

  .menu a {
    width: 100%;
    text-align: left
  }

  #btnOpenMenu {
    display: inline-flex
  }

  .brand-logo {
    height: 40px
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-actions {
    justify-content: flex-start
  }
}