﻿:root {
  color-scheme: light;
  --ink: #14202a;
  --muted: #63717d;
  --paper: #f4f0e8;
  --paper-strong: #fffaf1;
  --line: #d3cabd;
  --red: #a32222;
  --red-dark: #761919;
  --blue: #163b63;
  --gold: #c29346;
  --green: #22604f;
  --black: #0b1218;
  --shadow: 0 18px 50px rgba(20, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 32, 42, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 32, 42, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 240, 232, 0.92);
  border-bottom: 1px solid rgba(20, 32, 42, 0.12);
  backdrop-filter: blur(16px);
}

.top-bar {
  background: #132332;
  color: #f7ead3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.86rem;
  font-weight: 850;
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #0f2339;
}

.brand span {
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  padding: 11px 14px;
  border-radius: 6px;
  color: #263643;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  background: #e8dfd1;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(20, 32, 42, 0.18);
}

.button.secondary {
  background: #fffaf1;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.red {
  background: var(--red);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(194, 147, 70, 0.45);
  outline-offset: 2px;
}

.hero {
  min-height: calc(100svh - 114px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(9, 14, 20, 0.96) 0%, rgba(15, 31, 45, 0.9) 43%, rgba(15, 31, 45, 0.24) 100%),
    url("assets/img/plano-fondo-azul.webp") center / cover;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(transparent, var(--paper));
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 54px 0 110px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #f4d8a2;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.case-cover {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.case-cover img {
  width: min(340px, 74vw);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.35));
}

.evidence-mockup {
  position: relative;
  width: min(390px, 78vw);
  min-height: 500px;
  display: grid;
  place-items: center;
}

.mockup-main {
  position: relative;
  z-index: 2;
}

.mockup-photo {
  position: absolute;
  width: 142px !important;
  height: 178px;
  object-fit: cover;
  border: 8px solid #f7f0e5;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
}

.mockup-photo-a {
  left: -18px;
  bottom: 58px;
  rotate: -9deg;
  z-index: 3;
}

.mockup-photo-b {
  right: -8px;
  top: 34px;
  height: 120px;
  rotate: 8deg;
  z-index: 1;
}

.evidence-strip {
  width: min(1160px, calc(100% - 32px));
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.evidence-strip div {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.evidence-strip div:last-child {
  border-right: 0;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section.compact {
  padding-top: 42px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.asset-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.asset-wall figure {
  margin: 0;
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 10px 28px rgba(20, 32, 42, 0.08);
}

.asset-wall img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.asset-wall figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(19, 35, 50, 0.88);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
}

.card,
.product,
.panel,
.hint-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 32, 42, 0.08);
}

.card,
.hint-card {
  padding: 24px;
}

.card p,
.product p,
.hint-card p {
  color: var(--muted);
  line-height: 1.65;
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.price {
  white-space: nowrap;
  color: var(--red);
  font-weight: 950;
  font-size: 1.12rem;
}

.button-strong {
  min-height: 54px;
  padding-inline: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: #182631;
  padding: 24px;
}

.product-media.light {
  background: #e9ded0;
}

.product-media img {
  max-height: 260px;
  object-fit: contain;
}

.product-body {
  padding: 24px;
}

.status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(34, 96, 79, 0.12);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.soon {
  background: rgba(194, 147, 70, 0.18);
  color: #7a5722;
}

.band {
  background: #132332;
  color: #fff;
  margin-top: 30px;
}

.band .section {
  padding-block: 72px;
}

.band p {
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 230px;
  padding: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 950;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 34px;
}

.feature-row div {
  padding: 22px 18px 0 0;
}

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

.faq details {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 36px;
  align-items: center;
  background: #132332;
  color: #fff;
  padding: 34px;
  border-radius: 8px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.76);
}

.newsletter form {
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter input {
  background: #fffaf1;
}

.form-message {
  min-height: 22px;
  grid-column: 1 / -1;
  color: #f4d8a2;
  font-weight: 800;
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.reviews-head p {
  max-width: 390px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-height: 720px;
  overflow: auto;
  padding-right: 6px;
}

.review-card {
  min-height: 210px;
  padding: 20px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.55;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.page-hero {
  background: #132332;
  color: #fff;
  padding: 78px 0;
  border-bottom: 5px solid var(--red);
}

.page-hero .section {
  padding: 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.panel {
  padding: 28px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #263643;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfc5b7;
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
  color: var(--muted);
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.hidden {
  display: none !important;
}

.hint-list {
  display: grid;
  gap: 14px;
}

.hint-card {
  box-shadow: none;
}

.hint-button {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-radius: 6px;
  background: #ede4d6;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.hint-content {
  display: none;
  padding-top: 16px;
}

.hint-card.open .hint-content {
  display: block;
}

.solution-check {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.solution-result {
  min-height: 28px;
  color: var(--blue);
  font-weight: 900;
  line-height: 1.55;
}

.legal-doc {
  max-width: 860px;
}

.legal-doc h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: 34px;
}

.legal-doc li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.65;
}

code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #eadfcc;
}

.client-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #e9dfd0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.empty-state {
  padding: 24px;
  color: var(--muted);
  background: var(--paper-strong);
  border: 1px dashed #b9ad9e;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: #eee6da;
}

.site-footer .section {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .asset-wall,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-inner,
  .split,
  .product-grid,
  .grid,
  .steps,
  .feature-row,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .case-cover {
    min-height: 260px;
  }

  .evidence-mockup {
    min-height: 360px;
  }

  .mockup-photo {
    width: 110px !important;
    height: 138px;
  }

  .evidence-strip {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-strip div:nth-child(2) {
    border-right: 0;
  }

  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.88rem;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-inner,
  .section {
    width: min(100% - 22px, 1160px);
  }

  .hero-inner {
    padding-top: 38px;
  }

  .evidence-strip {
    width: min(100% - 22px, 1160px);
    grid-template-columns: 1fr;
  }

  .evidence-strip div {
    border-right: 0;
  }

  .section {
    padding: 58px 0;
  }

  .product-media {
    min-height: 230px;
  }

  .asset-wall,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .asset-wall figure,
  .asset-wall img {
    min-height: 240px;
  }
}

