:root {
  --petrol: #003b4a;
  --petrol-dark: #062933;
  --petrol-soft: #789ca6;
  --gold: #d9981e;
  --gold-hover: #c98512;
  --gold-soft: #fff1d6;
  --light: #eef3f5;
  --light-strong: #e4ecef;
  --text: #333333;
  --muted: #66777c;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 59, 74, 0.14);
  --radius: 26px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 59, 74, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--petrol);
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--petrol);
  padding: 0.25rem;
}

.brand__name { font-size: 1.1rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--petrol); }

.section {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5rem);
}

.section--alt { background: var(--light-strong); }

.section--dark {
  background: linear-gradient(135deg, var(--petrol), #062933);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  min-height: calc(100vh - 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 152, 30, 0.18), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #ffffff 45%, rgba(120, 156, 166, 0.24) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -6rem -10rem auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(0, 59, 74, 0.08);
}

.hero__content,
.hero__visual { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--petrol);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section--dark h2 { color: var(--white); }

h1 { max-width: 15ch; font-size: clamp(2.15rem, 4.2vw, 3.85rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.85rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.035em; }

.hero__lead {
  max-width: 46rem;
  margin: 1.6rem 0 2rem;
  color: #46595e;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary {
  color: #1f2527;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(217, 152, 30, 0.32);
}

.button--primary:hover {
  background: var(--gold-hover);
}

.microcopy {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.microcopy--1 {
  margin: 0 0 0 0;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.logo-card {
  display: grid;
  place-items: center;
  width: min(100%, 28rem);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 3rem;
  border-radius: 3rem;
  background: linear-gradient(145deg, var(--petrol), #001d25);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--petrol);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.floating-card--one { top: 10%; right: 0; }
.floating-card--two { bottom: 14%; left: 0; }

.section__intro {
  max-width: 58rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section__intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.text-card,
.narrow-copy,
.closing-copy {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.08rem;
}

.text-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(0, 59, 74, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-grid,
.steps,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 74rem;
  margin: 0 auto 2rem;
}

.quote-grid blockquote,
.step-card,
.service-card,
.faq details {
  margin: 0;
  padding: 1.4rem;
  border: 1px solid rgba(0, 59, 74, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 59, 74, 0.07);
}

.quote-grid blockquote {
  color: var(--petrol);
  font-size: 1.05rem;
  font-weight: 800;
}

.steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-weight: 900;
}

.step-card p,
.service-card p,
.service-card li { color: var(--muted); }

.human__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto;
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.09);
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.comparison {
  max-width: 64rem;
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 1px solid rgba(0, 59, 74, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.comparison__head {
  display: none;
}

.comparison > div:not(.comparison__head) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0;
}

.comparison > div:not(.comparison__head) span {
  display: block;
  padding: 1rem 1rem 1rem;
  border: 1px solid rgba(0, 59, 74, 0.1);
  border-radius: 1rem;
  position: relative;
  border-bottom: 0;
}

.comparison > div:not(.comparison__head) span:first-child {
  background: var(--white);
  color: var(--petrol);
  font-weight: 700;
}

.comparison > div:not(.comparison__head) span:last-child {
  background: #fff4df;
  color: #9a6a08;
  font-weight: 800;
  border: 1px solid rgba(217, 152, 30, 0.32);
}

.comparison > div:not(.comparison__head) span:first-child::before,
.comparison > div:not(.comparison__head) span:last-child::before {
  display: block;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison > div:not(.comparison__head) span:first-child::before {
  content: "Antes";
  background: var(--petrol);
  color: var(--white);
}

.comparison > div:not(.comparison__head) span:last-child::before {
  content: "Depois";
  background: var(--gold);
  color: #1f2527;
}
.comparison span {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 59, 74, 0.08);
}

.comparison > div:not(.comparison__head) {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 0.25rem;
  box-shadow: 0 10px 24px rgba(0, 59, 74, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card--featured {
  border-color: rgba(217, 152, 30, 0.45);
  box-shadow: 0 24px 54px rgba(217, 152, 30, 0.15);
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.2rem;
}

.service-card .button { margin-top: auto; }

.about {
  display: grid;
  grid-template-columns: 18rem minmax(0, 48rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  justify-content: center;
}

.about__portrait {
  width: 18rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--petrol-soft), var(--petrol));
  box-shadow: var(--shadow);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__cta {
  margin-top: 1rem;
}

.faq__list {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  margin: 0 auto;
}

.faq summary {
  cursor: pointer;
  color: var(--petrol);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq p { color: var(--muted); }

.final-cta {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta p:not(.eyebrow):not(.microcopy) {
  color: var(--muted);
  font-size: 1.12rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
  color: rgba(255, 255, 255, 0.8);
  background: var(--petrol);
}

.site-footer .brand { color: var(--white); }
.site-footer .brand__mark { background: rgba(255, 255, 255, 0.1); }

@media (max-width: 1100px) {
  .hero,
  .human__grid,
  .about { grid-template-columns: 1fr; }

  .hero { min-height: auto; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: 1fr; }
  .about__portrait { margin-inline: auto; }
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { flex-wrap: wrap; }
  .quote-grid,
  .steps { grid-template-columns: 1fr; }
  .comparison div { grid-template-columns: 1fr; }
  .comparison span + span { border-left: 0; background: rgba(120, 156, 166, 0.12); }
  .floating-card { position: static; width: max-content; margin: 1rem auto 0; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.5rem 1.1rem; }
  h1 { max-width: 100%; font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.05; }
  h2 { font-size: clamp(1.55rem, 7vw, 2.15rem); line-height: 1.12; }
  .hero__lead { font-size: 1.02rem; }
  .button { width: 100%; text-align: center; }
  .brand__name { font-size: 1rem; }
}