:root {
  --bg: #120b10;
  --surface: rgba(28, 18, 24, 0.92);
  --surface-strong: #1b1217;
  --text: #f7eadf;
  --soft: rgba(247, 234, 223, 0.72);
  --muted: rgba(247, 234, 223, 0.54);
  --coral: #eb6f61;
  --coral-dark: #d24758;
  --gold: #e8c07d;
  --line: rgba(255, 230, 209, 0.1);
  --title: "Playfair Display", Georgia, serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(235, 111, 97, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 2%, rgba(232, 192, 125, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--bg) 0%, #181015 52%, #120b10 100%);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}

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

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

main,
section,
article,
div {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: #f4cf9c;
  font-family: var(--title);
  font-size: 1.35rem;
  font-weight: 600;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.site-nav {
  gap: clamp(12px, 3vw, 30px);
  color: var(--soft);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 88px) 0 clamp(44px, 8vw, 96px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 4vw, 42px) auto auto 50%;
  z-index: -1;
  width: min(680px, 76vw);
  height: min(680px, 76vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(235, 111, 97, 0.18), rgba(232, 192, 125, 0.08) 38%, transparent 68%);
  transform: translateX(-50%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__content {
  display: grid;
  gap: 20px;
  max-width: 680px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--title);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  color: #f4cf9c;
  font-size: clamp(3.35rem, 10vw, 7.4rem);
  line-height: 0.84;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 0;
  color: #f6e5cf;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  color: #f6e5cf;
  font-size: 1.2rem;
}

.hero__lead {
  max-width: 620px;
  color: rgba(255, 241, 229, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff8f2;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.phone-preview {
  justify-self: end;
  overflow: hidden;
  width: min(100%, 360px);
  border: 1px solid rgba(255, 230, 209, 0.16);
  border-radius: 34px;
  background: #0c080b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
}

.phone-preview img {
  width: 100%;
  height: auto;
}

.section,
.match-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) 0;
}

.policy-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0 clamp(56px, 8vw, 96px);
}

.policy-hero {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(28px, 5vw, 46px);
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9vw, 6.4rem);
}

.policy-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 241, 229, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.policy-hero span {
  color: var(--muted);
  font-size: 0.94rem;
}

.policy-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28, 18, 24, 0.92), rgba(17, 12, 16, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.policy-card h2 {
  font-family: var(--body);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
}

.policy-card h3 {
  margin: 8px 0 0;
  color: #f4cf9c;
  font-size: 1.04rem;
}

.policy-card p,
.policy-card li {
  color: var(--soft);
  line-height: 1.75;
}

.policy-card p {
  margin-bottom: 0;
}

.policy-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.policy-action {
  justify-self: start;
  margin-top: 4px;
}

.section--intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.section__copy {
  display: grid;
  gap: 14px;
}

.section--intro > p,
.match-band > p,
.contact-panel > div > p {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-card,
.legal-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28, 18, 24, 0.92), rgba(17, 12, 16, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.feature-card,
.legal-card {
  padding: 22px;
}

.feature-card p,
.legal-card p {
  color: var(--soft);
  line-height: 1.65;
}

.feature-card--accent {
  border-color: rgba(235, 111, 97, 0.34);
  background:
    radial-gradient(circle at top right, rgba(235, 111, 97, 0.2), transparent 56%),
    linear-gradient(180deg, rgba(36, 20, 24, 0.94), rgba(17, 12, 16, 0.98));
}

.match-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-section {
  padding-bottom: 50px;
}

.contact-section {
  padding-top: 34px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(22px, 4vw, 42px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  display: grid;
  color: rgba(255, 241, 229, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 241, 229, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(239, 196, 136, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 196, 136, 0.12);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: rgba(235, 111, 97, 0.7);
  box-shadow: 0 0 0 3px rgba(235, 111, 97, 0.12);
}

.field-error {
  min-height: 1.25em;
  margin: -2px 0 0;
  color: #ffd9d2;
  font-size: 0.86rem;
  line-height: 1.35;
}

.form-alert {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.45;
}

.form-alert--sucesso {
  border: 1px solid rgba(96, 177, 149, 0.32);
  background: rgba(96, 177, 149, 0.14);
  color: #dbfff2;
}

.form-alert--erro {
  border: 1px solid rgba(235, 111, 97, 0.34);
  background: rgba(235, 111, 97, 0.13);
  color: #ffd9d2;
}

.honeypot,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold);
}

.site-footer img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.88rem;
  }

  .hero,
  .section--intro,
  .match-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-preview {
    justify-self: start;
    width: min(100%, 320px);
  }

  .feature-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand span {
    font-size: 1.12rem;
  }

  .site-nav {
    display: none;
  }

  .hero__actions .button,
  .contact-form .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 19vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .policy-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .policy-card {
    padding: 18px;
  }
}
