:root {
  --cream-50: #fffdf8;
  --cream-100: #faf4e9;
  --cream-200: #f2e5d1;
  --nude: #dec8ad;
  --gold: #c29a43;
  --gold-soft: #e8cf93;
  --brown: #694b39;
  --brown-dark: #35251d;
  --terracotta: #914b35;
  --green: #16864b;
  --green-dark: #0f6c3b;
  --text: #2b211b;
  --muted: #5d534c;
  --white: #ffffff;
  --line: rgba(105, 75, 57, 0.14);
  --shadow-sm: 0 12px 32px rgba(70, 48, 34, 0.08);
  --shadow-lg: 0 24px 64px rgba(70, 48, 34, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream-50);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font: inherit;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(194, 154, 67, 0.45);
  outline-offset: 4px;
}

.pixel-fallback {
  display: none;
}

.container {
  width: min(calc(100% - 56px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

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

h1,
h2,
h3 {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.3vw, 5.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.section-heading > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease,
    box-shadow 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 50px;
  padding: 12px 22px;
  font-size: 1rem;
}

.button-brown {
  color: var(--white);
  background: var(--brown);
  box-shadow: 0 9px 22px rgba(105, 75, 57, 0.2);
}

.button-brown:hover {
  background: var(--brown-dark);
}

.button-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #21ad60);
  box-shadow: 0 12px 28px rgba(22, 134, 75, 0.28);
}

.button-whatsapp:hover {
  background: linear-gradient(135deg, #0b5c31, var(--green));
  box-shadow: 0 16px 34px rgba(22, 134, 75, 0.34);
}

.button-outline {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(105, 75, 57, 0.4);
}

.button-outline:hover {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  width: 68px;
  height: 60px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  line-height: 1.22;
}

.brand strong {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand small {
  margin-top: 3px;
  color: #51463f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-button {
  width: 50px;
  height: 50px;
  display: none;
  padding: 10px;
  border-radius: 50%;
  background: var(--cream-100);
  cursor: pointer;
}

.menu-button span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--brown);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  padding-block: 104px;
  background:
    radial-gradient(circle at 78% 22%, rgba(232, 207, 147, 0.42), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(222, 200, 173, 0.36), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f2e4d0);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: url("imagens/FundoHeader.png") center / cover;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 88px;
}

.hero-copy > p {
  max-width: 690px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.hero-highlights li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold);
}

.hero-card {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 48% 48% 22% 22% / 35% 35% 18% 18%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-card-inner {
  text-align: center;
}

.hero-card img {
  width: min(310px, 80%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(70, 48, 34, 0.16));
}

.hero-card p {
  margin: 24px 0 0;
  color: var(--brown);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.benefits {
  background: var(--cream-50);
}

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

.benefit-card {
  min-height: 280px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 1rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 14px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.services {
  background:
    radial-gradient(circle at 5% 12%, rgba(194, 154, 67, 0.08), transparent 22%),
    var(--cream-100);
}

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

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f8f4ed;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.16);
}

.service-card:hover .service-image img {
  transform: scale(1.16);
}

.service-symbol {
  height: 180px;
  display: grid;
  place-items: center;
  color: rgba(105, 75, 57, 0.78);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(135deg, var(--cream-200), #f8edda);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 3.8rem;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.service-content > span:first-child {
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-content h3 {
  margin-bottom: 14px;
}

.service-content p {
  color: var(--muted);
  line-height: 1.8;
}

.service-content a {
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 12px 19px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.service-content a:hover {
  color: var(--white);
  background: var(--brown);
}

.service-content a span {
  transition: transform 180ms ease;
}

.service-content a:hover span {
  transform: translateX(4px);
}

.authority {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(194, 154, 67, 0.2), transparent 25%),
    linear-gradient(135deg, #4b3529, #76533e);
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 96px;
}

.authority .section-label {
  color: var(--gold-soft);
}

.authority-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.14rem;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-soft);
  font-weight: 900;
}

.authority-panel {
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(9px);
}

.panel-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--brown);
  background: var(--gold-soft);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.authority-panel blockquote {
  margin: 0 0 26px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.4;
}

.authority-panel p {
  margin-bottom: 2px;
  font-weight: 800;
}

.authority-panel small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
}

.testimonials {
  background: var(--cream-50);
}

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

.testimonial-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: #3f342d;
  font-size: 1.1rem;
  line-height: 1.8;
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--brown);
  font-size: 1rem;
  font-weight: 800;
}

.evaluation {
  background:
    linear-gradient(rgba(242, 229, 209, 0.93), rgba(242, 229, 209, 0.93)),
    url("imagens/FundoHeader.png") center / cover;
}

.evaluation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 88px;
}

.evaluation-copy > p {
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.contact-details > div {
  display: grid;
  padding: 24px;
  border: 1px solid rgba(105, 75, 57, 0.17);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.48);
}

.contact-details span {
  color: var(--muted);
  font-size: 1rem;
}

.lead-form {
  display: grid;
  gap: 22px;
  padding: 44px;
  border: 1px solid rgba(105, 75, 57, 0.13);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  color: var(--brown-dark);
  font-size: 1rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 58px;
  padding: 15px 17px;
  border: 1px solid rgba(105, 75, 57, 0.25);
  border-radius: 12px;
  color: var(--text);
  background: var(--white);
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(194, 154, 67, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.lead-form small {
  color: #544942;
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--brown-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 64px;
  padding-block: 72px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 78px;
  filter: brightness(1.35);
}

.footer-brand > div,
.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand strong,
.footer-column strong {
  color: var(--white);
}

.footer-brand span,
.footer-column span,
.footer-column a {
  font-size: 1rem;
}

.footer-column a {
  width: fit-content;
  color: var(--gold-soft);
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: 840px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom a {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 22px;
  font-size: 1rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #21ad60);
  box-shadow: 0 14px 34px rgba(22, 134, 75, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(22, 134, 75, 0.42);
}

.floating-whatsapp span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .authority-grid,
  .evaluation-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .hero-card {
    min-height: 330px;
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-grid,
  .evaluation-grid {
    gap: 56px;
  }

  .authority-copy,
  .evaluation-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
    font-size: 18px;
    line-height: 1.8;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .header-content {
    min-height: 80px;
  }

  .brand img {
    width: 56px;
    height: 50px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.9rem;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 24px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--cream-50);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    width: 100%;
    min-height: 58px;
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding-block: 76px 64px;
  }

  .hero-grid {
    gap: 48px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 1.16;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-copy > p {
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero-card {
    min-height: 290px;
    padding: 36px;
  }

  .hero-card img {
    width: 190px;
  }

  .benefit-grid,
  .service-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 32px;
  }

  .benefit-card p,
  .service-content p,
  .testimonial-card blockquote,
  .evaluation-copy > p,
  .authority-copy > p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .service-grid {
    gap: 28px;
  }

  .service-image {
    aspect-ratio: 1 / 1;
  }

  .authority-panel,
  .lead-form {
    padding: 32px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 36px;
    padding-block: 54px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 30px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 12px;
    left: 14px;
    justify-content: center;
    min-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
