/*
 * R9 - Retífica de Motor
 * Estilos do site. A ordem das regras preserva a prioridade visual existente.
 * Os estilos estão identificados por área e por tamanho de tela.
 */


/* 01. IDENTIDADE VISUAL E VARIÁVEIS */
:root {
  --orange: #ff7900;
  --orange-light: #ff9230;
  --ink: #171818;
  --muted: #666963;
  --paper: #f6f5f1;
  --line: #ddddd7;
  --white: #fff;
  --max: 1200px;
}


/* 02. BASE HTML E TIPOGRAFIA */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  font-family: Arial,Helvetica,sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

svg {
  flex-shrink: 0;
}

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

h1,h2,h3 {
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(44px,5.6vw,80px);
  font-weight: 800;
}

h2 {
  font-size: clamp(32px,3.2vw,46px);
  font-weight: 750;
}

h3 {
  font-size: 24px;
  letter-spacing: -.025em;
}

p {
  color: var(--muted);
}

a,button {
  touch-action: manipulation;
}

a:focus-visible,button:focus-visible {
  outline: 3px solid #1681d7;
  outline-offset: 5px;
}

::selection {
  background: var(--orange);
  color: #111;
}

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

.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.5;
  color: #a74600;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: white;
  color: black;
  padding: 14px;
}

.skip-link:focus {
  top: 12px;
}


/* 03. BARRA SUPERIOR */
.topbar {
  background: #0c0d0d;
  color: #b9bcb8;
  font-size: 11px;
  letter-spacing: .025em;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
}

.topbar span,.topbar a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar .icon {
  height: 13px;
  width: 13px;
  color: var(--orange);
}


/* 04. CABEÇALHO E NAVEGAÇÃO */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #171818;
  color: white;
  border-bottom: 1px solid #ffffff14;
}

.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

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

.brand>span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}


.brand span span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  margin-top: 0;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}

.header nav>a {
  padding-block: 12px;
  position: relative;
  white-space: nowrap;
}

.header nav>a[aria-current] {
  color: var(--orange);
}

.header nav>a[aria-current]:after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--orange);
  bottom: 3px;
  left: 0;
  width: 21px;
}

.header nav>a:hover {
  color: var(--orange-light);
}

.header nav .nav-cta {
  border: 1px solid #5b5c57;
  padding: 12px 18px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 8px;
}

.nav-cta .icon {
  width: 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #555;
  color: white;
  padding: 8px;
}


/* 05. DESTAQUE PRINCIPAL */
.hero {
  position: relative;
  background: #171818;
  color: white;
  isolation: isolate;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg,#141515fa 15%,#141515d6 58%,#14151585),url('../../imagens/retifica-Inicio.jpg') center/cover no-repeat;
  opacity: .95;
}

.hero:after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse at 79% 54%,#ff790017,transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  align-items: center;
  min-height: 610px;
  gap: 25px;
  padding-block: 60px 65px;
}

.hero .eyebrow {
  color: #d8dad5;
  font-size: 10px;
  letter-spacing: .13em;
  display: flex;
  gap: 12px;
  align-items: center;
}

.orange-line {
  width: 26px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(52px,5.65vw,80px);
  letter-spacing: -.06em;
  line-height: 1.03;
}

.hero h1>span {
  color: var(--orange);
}

.hero-description {
  font-size: 16px;
  line-height: 1.85;
  max-width: 520px;
  color: #bbbeb9;
  margin: 25px 0 29px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}


/* 06. BOTÕES E LINKS DE AÇÃO */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 53px;
  padding: 15px 21px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background .18s,transform .18s;
}

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

.button-primary {
  background: var(--orange);
  color: #161616;
}

.button-primary:hover {
  background: var(--orange-light);
}

.button .icon {
  width: 19px;
  height: 19px;
}

.button .icon:last-child:not(:first-child) {
  margin-left: 12px;
}

.button-outline {
  border-color: #777;
  background: transparent;
  color: white;
}

.button-dark {
  background: #171818;
  color: #fff;
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  border-bottom: 1px solid #ffffff45;
  padding: 7px 0;
}

.hero-secondary .icon {
  width: 17px;
}

.hero-assurances {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-size: 11px;
  color: #bec1ba;
}

.hero-assurances span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances .icon {
  color: var(--orange);
  width: 15px;
  height: 15px;
}

.hero-brand {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-brand>img {
  width: 100%;
  max-width: 446px;
  position: relative;
  filter: drop-shadow(0 18px 30px #0009);
}

.hero-ring {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid #ffffff12;
  border-radius: 50%;
}

.hero-ring:after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px dashed #ffffff10;
  border-radius: 50%;
}

.hero-signature {
  font-size: 9px;
  letter-spacing: .29em;
  color: #babbb6;
  margin-top: 12px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ffffff20;
  padding-block: 22px;
  font-size: 9px;
  letter-spacing: .13em;
  color: #aaa;
}

.hero-bottom>span:nth-child(2) {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-bottom i {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-bottom>a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
}

.hero-bottom .icon {
  width: 16px;
  transform: rotate(90deg);
}


/* 07. OFERTAS E PREÇOS */
.offers {
  background: #edece6;
  border-bottom: 1px solid var(--line);
  padding: 38px 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.offer-intro .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}

.offer-intro h2 {
  font-size: 26px;
  line-height: 1.15;
}

.offer {
  padding-left: 40px;
  border-left: 1px solid #cdcdc5;
  display: flex;
  flex-direction: column;
}

.offer>span {
  font-size: 12px;
  color: var(--muted);
}

.offer>strong {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -.04em;
  margin: 5px 0 7px;
}

.offer small {
  font-size: 20px;
}

.offer>a {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer>a .icon {
  width: 15px;
  height: 15px;
  color: #a74600;
}


/* 08. TÍTULOS DAS SEÇÕES */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading>p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 410px;
}


/* 09. CARTÕES DOS SERVIÇOS */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

.service-card {
  min-width: 0;
  background: white;
  border: 1px solid #e1e1da;
}

.service-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #fff;
}

.service-photo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 12px 12px 38px;
}

.service-photo>span {
  position: absolute;
  bottom: 12px;
  left: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #666963;
}

.service-body {
  padding: 27px 25px 23px;
}

.service-body h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.service-body p {
  font-size: 14px;
  line-height: 1.8;
  min-height: 76px;
  margin-bottom: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 0;
}

.text-link .icon {
  color: #a74600;
  width: 18px;
  height: 18px;
  transition: transform .2s;
}

.text-link:hover .icon {
  transform: translateX(4px);
}


/* 10. DIFERENCIAIS */
.benefits {
  background: #1c1e1d;
  color: #fff;
}

.benefits .eyebrow {
  color: var(--orange);
}

.benefits h2 {
  max-width: 680px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 55px;
  gap: 36px;
}

.benefit-grid article {
  border-top: 1px solid #ffffff30;
  padding-top: 26px;
}

.benefit-grid article>.icon {
  color: var(--orange);
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
}

.benefit-grid h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-grid p {
  color: #b1b6b0;
  font-size: 13px;
  max-width: 230px;
  line-height: 1.8;
}


/* 11. CONTEÚDO EM DUAS COLUNAS */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-copy h2 {
  margin-bottom: 25px;
}

.split-copy>p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.split-copy .button {
  margin-top: 12px;
}





/* 13. QUEM SOMOS */
.about-section {
  background: #ecebe5;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.since {
  position: absolute;
  left: 25px;
  bottom: -20px;
  background: var(--orange);
  padding: 22px 29px;
  color: #151515;
  display: flex;
  flex-direction: column;
}

.since strong {
  font-size: 27px;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.since span {
  font-size: 11px;
  margin-top: 5px;
}


/* 14. CHAMADA PARA ORÇAMENTO */
.cta-section {
  background: var(--orange);
  padding: 65px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-section .eyebrow {
  color: #40250d;
}

.cta-section h2 {
  font-size: clamp(29px,3.2vw,43px);
}

.cta-section p:not(.eyebrow) {
  color: #40250d;
  margin-top: 16px;
  font-size: 14px;
}

.cta-section .button-primary {
  background: #171818;
  color: white;
  flex-shrink: 0;
}

.cta-section .button-primary:hover {
  background: #333;
}


/* 15. CONTATO E LOCALIZAÇÃO */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.contact-details {
  display: grid;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 17px;
}

.contact-item>.icon {
  color: #a74600;
  margin-top: 2px;
  width: 23px;
  height: 23px;
}

.contact-item h3 {
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.8;
}

.contact-phone {
  font-size: 26px;
  letter-spacing: -.04em;
  line-height: 1.3;
  font-weight: 700;
  display: block;
  margin-bottom: 7px;
}

.contact-item .text-link {
  font-size: 12px;
  margin-top: 7px;
}

.map-panel {
  position: relative;
  min-height: 390px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid #d5d6cd;
  background: #e6e7dd;
}

.map-grid-art {
  z-index: -1;
  position: absolute;
  inset: -50%;
  transform: rotate(-22deg);
  background: linear-gradient(90deg,transparent 48%,#d0d4c66b 48% 51%,transparent 51%),repeating-linear-gradient(90deg,transparent 0 71px,#f9f9f3 72px 83px,transparent 84px 157px),repeating-linear-gradient(0deg,transparent 0 54px,#f9f9f3 55px 64px,transparent 65px 160px);
}

.map-panel:after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #eceee46b;
}

.map-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 35px 25px;
  min-height: 100%;
}

.map-info>.icon {
  width: 30px;
  height: 30px;
  color: #a74600;
  margin-bottom: 16px;
}

.map-info .eyebrow {
  font-size: 9px;
  margin-bottom: 13px;
  color: #414a38;
}

.map-info h3 {
  font-size: 28px;
}

.map-info p {
  font-size: 11px;
  margin: 12px 0 20px;
  color: #3f4738;
}

.map-info>a {
  font-size: 11px;
  margin-top: 15px;
  text-decoration: underline;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  min-height: 390px;
  background: #eee;
}


/* 16. RODAPÉ */
.footer {
  background: #111313;
  color: white;
  padding: 65px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1.2fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #9b9f97;
  margin-top: 18px;
}

.footer h2 {
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  font-size: 12px;
  color: #b1b6af;
}

.footer a:hover {
  color: var(--orange);
}

.footer-phone {
  font-size: 25px;
  letter-spacing: -.025em;
  font-weight: 700;
}

.footer-grid>div:last-child p {
  font-size: 12px;
  color: #9b9f97;
  line-height: 1.9;
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid #ffffff18;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #92978f;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-bottom .icon {
  width: 13px;
  height: 13px;
}


/* 17. WHATSAPP FLUTUANTE */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 45;
  background: #19733c;
  color: white;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 18px #0002;
  border: 1px solid #ffffff30;
}

.floating-whatsapp:hover {
  background: #125c2f;
}


/* 18. AVISO DE COOKIES */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 395px;
  z-index: 50;
  padding: 16px 18px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 8px 30px #0002;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  font-size: 11px;
  line-height: 1.7;
  color: #555;
}

.cookie-notice a {
  text-decoration: underline;
}

.cookie-accept {
  font-size: 11px;
  background: #171818;
  color: white;
  border: 0;
  padding: 11px 13px;
  flex-shrink: 0;
}


/* 19. INTRODUÇÃO DAS PÁGINAS INTERNAS */
.page-intro {
  padding: 75px 0 80px;
  background: #1c1e1d;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-intro:after {
  content: 'R9';
  position: absolute;
  right: 6%;
  bottom: -70px;
  font-weight: 900;
  font-style: italic;
  font-size: 300px;
  letter-spacing: -.09em;
  color: #ffffff04;
  pointer-events: none;
}

.page-intro .container {
  position: relative;
  z-index: 1;
}

.page-intro .eyebrow {
  color: var(--orange);
}

.page-intro h1 {
  font-size: clamp(38px,4.7vw,64px);
}

.intro-description {
  color: #b3b8b0;
  max-width: 620px;
  font-size: 15px;
  margin-top: 24px;
  line-height: 1.85;
}


/* 20. LISTA DE SERVIÇOS */
.process {
  background: #eae9e3;
}

.process-list {
  border-top: 1px solid #ccc;
}

.process-list article {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.process-list article>span {
  font-size: 13px;
  color: #a74600;
  align-self: flex-start;
  padding-top: 5px;
}

.process-list article>div {
  flex: 1;
}

.process-list h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.process-list p {
  font-size: 14px;
}

.process-list .icon {
  color: #a74600;
}


/* 21. VALORES DA EMPRESA */
.values {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 45px;
  margin-top: 45px;
}

.values-grid article {
  border-top: 1px solid var(--line);
  padding-top: 27px;
}

.values-grid .icon {
  color: #a74600;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
}

.values-grid h3 {
  font-size: 23px;
  margin-bottom: 15px;
}

.values-grid p {
  font-size: 14px;
  line-height: 1.85;
}


/* 22. CHAMADA DE CONTATO */
.contact-callout {
  background: #eae9e3;
  padding: 55px 0;
}

.contact-callout .container {
  display: flex;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
}

.contact-callout h2 {
  font-size: 30px;
}

.contact-callout p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 15px;
}

.contact-callout .button {
  flex-shrink: 0;
}


/* 23. POLÍTICA DE PRIVACIDADE */
.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  font-size: 29px;
  margin: 40px 0 22px;
}

.legal-content h3 {
  font-size: 21px;
  margin: 28px 0 16px;
}

.legal-content p,.legal-content li {
  font-size: 15px;
  line-height: 1.9;
  color: #555b53;
  margin-bottom: 16px;
}

.legal-content a {
  text-decoration: underline;
  color: #934000;
}

.legal-content h2:first-child {
  margin-top: 0;
}


/* RESPONSIVIDADE E PREFERÊNCIAS: (min-width:1500px) */
@media(min-width:1500px) {
  .hero-grid {
    min-height: 640px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:1100px) */
@media(max-width:1100px) {
  .container {
    width: calc(100% - 64px);
  }

  .header nav {
    gap: 22px;
  }

  .header nav .nav-cta {
    margin-left: 0;
    padding: 11px 13px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .hero-grid {
    min-height: 555px;
    gap: 15px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    gap: 17px;
  }

  .hero-brand>img {
    max-width: 390px;
  }

  .split {
    gap: 45px;
  }

  .offer {
    padding-left: 25px;
  }

  .offers-grid {
    gap: 25px;
  }

  .service-grid {
    gap: 20px;
  }

  .service-body {
    padding: 22px;
  }

  .service-body p {
    min-height: 101px;
  }

  .benefit-grid {
    gap: 25px;
  }

  .contact-grid {
    gap: 35px;
  }

  .footer-grid {
    gap: 45px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:900px) */
@media(max-width:900px) {
  .header-inner {
    height: 82px;
  }

  .header nav {
    gap: 19px;
    font-size: 12px;
  }

  .header nav .nav-cta {
    display: none;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    min-height: 530px;
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .hero-description {
    font-size: 14px;
  }

  .desktop-break {
    display: none;
  }

  .hero-secondary {
    font-size: 11px;
  }

  .hero-assurances {
    gap: 16px;
    font-size: 10px;
  }

  .hero-signature {
    font-size: 8px;
    letter-spacing: .16em;
  }

  .offer-intro h2 {
    font-size: 22px;
  }

  .offer>strong {
    font-size: 30px;
  }

  .offer small {
    font-size: 16px;
  }

  .offers-grid {
    gap: 20px;
    grid-template-columns: 1.1fr 1fr 1fr;
  }

  .offer {
    padding-left: 20px;
  }

  .offer>span {
    font-size: 11px;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading>p {
    max-width: 300px;
  }

  .service-grid {
    gap: 16px;
  }

  .service-body {
    padding: 22px 18px;
  }

  .service-body h3 {
    font-size: 21px;
  }

  .service-body p {
    font-size: 13px;
    min-height: 115px;
  }

  .service-body .text-link {
    font-size: 11px;
    gap: 10px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
  }

  .benefit-grid p {
    max-width: 100%;
  }

  .split {
    gap: 35px;
  }
.about-image img {
    height: 400px;
  }

  .split-copy>p:not(.eyebrow) {
    font-size: 14px;
  }

  .cta-inner {
    gap: 30px;
  }

  .cta-inner h2 {
    font-size: 32px;
  }

  .cta-inner .button {
    padding: 15px;
  }

  .contact-phone {
    font-size: 24px;
  }

  .footer-grid {
    gap: 35px;
    grid-template-columns: 1fr .8fr 1.25fr;
  }

  .footer-phone {
    font-size: 21px;
  }

  .footer-bottom {
    font-size: 9px;
  }

  .values-grid {
    gap: 24px;
  }

  .values-grid h3 {
    font-size: 21px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:700px) */
@media(max-width:700px) {
  html {
    scroll-padding-top: 85px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .topbar {
    font-size: 9px;
  }

  .topbar .container {
    min-height: 30px;
  }

  .topbar .icon {
    width: 11px;
    height: 11px;
  }

  .header-inner {
    height: 76px;
  }

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

  
  .brand span span {
    font-size: 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .header nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #171818;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border-bottom: 1px solid #555;
    box-shadow: 0 15px 20px #0003;
  }

  .header nav:not(.is-open) {
    display: none;
  }

  .header nav>a {
    padding: 13px 8px;
    font-size: 14px;
  }

  .header nav>a[aria-current]:after {
    display: none;
  }

  .header nav .nav-cta {
    display: flex;
    margin-top: 9px;
    justify-content: space-between;
    padding: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 48px 32px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(43px,10.9vw,68px);
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: .08em;
    margin-bottom: 20px;
  }

  .hero-description {
    margin: 22px 0 24px;
    font-size: 14px;
    max-width: 480px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 19px;
  }

  .hero .button {
    padding: 15px 17px;
  }

  .hero-assurances {
    font-size: 11px;
    margin-top: 24px;
    gap: 23px;
  }

  .hero-brand {
    max-width: 290px;
    width: 75%;
    margin: 0 auto;
  }

  .hero-brand>img {
    width: 100%;
  }

  .hero-signature {
    font-size: 8px;
    margin-top: 5px;
  }

  .hero-photo {
    background-position: 60% center;
  }

  .hero-bottom {
    padding-block: 18px;
    font-size: 8px;
    gap: 10px;
  }

  .hero-bottom>span:first-child {
    display: none;
  }

  .hero-bottom>span:nth-child(2) {
    gap: 12px;
  }

  .hero-bottom>a {
    font-size: 8px;
  }

  .hero-bottom .icon {
    width: 14px;
  }

  .offers {
    padding: 30px 0;
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }

  .offer-intro {
    grid-column: 1 / -1;
  }

  .offer-intro .eyebrow {
    margin-bottom: 9px;
  }

  .offer-intro h2 {
    font-size: 25px;
  }

  .offer-intro h2 br {
    display: none;
  }

  .offer {
    border-left: 0;
    border-top: 1px solid #cdcdc5;
    padding: 19px 0 0;
  }

  .offer>strong {
    font-size: 32px;
  }

  .offer>a {
    font-size: 10px;
    gap: 6px;
  }

  .section {
    padding: 60px 0;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }

  h2 {
    font-size: 34px;
  }

  .section-heading {
    display: block;
    margin-bottom: 29px;
  }

  .section-heading>p {
    max-width: 100%;
    margin-top: 20px;
    font-size: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-photo {
    aspect-ratio: 1;
  }

  .service-body {
    padding: 25px;
  }

  .service-body h3 {
    font-size: 25px;
  }

  .service-body p {
    min-height: 0;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .service-body .text-link {
    font-size: 13px;
    gap: 16px;
  }

  .benefit-grid {
    gap: 28px 24px;
    margin-top: 35px;
  }

  .benefit-grid article {
    padding-top: 23px;
  }

  .benefit-grid h3 {
    font-size: 19px;
    line-height: 1.2;
  }

  .benefit-grid p {
    font-size: 12px;
  }

  .benefit-grid article>.icon {
    margin-bottom: 15px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }

.split-copy h2 {
    margin-bottom: 19px;
  }

  .split-copy>p:not(.eyebrow) {
    font-size: 14px;
  }

  .about-image img {
    height: 310px;
  }

  .about-section .split {
    gap: 55px;
  }

  .since {
    padding: 19px 23px;
    left: 19px;
  }

  .since strong {
    font-size: 25px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-inner {
    display: block;
  }

  .cta-inner h2 {
    font-size: 33px;
  }

  .cta-inner .button {
    margin-top: 27px;
    padding: 15px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-details {
    gap: 27px;
  }

  .contact-phone {
    font-size: 26px;
  }

  .map-panel,.map-panel iframe {
    min-height: 355px;
  }

  .map-info {
    min-height: 355px;
  }

  .footer {
    padding-top: 45px;
    padding-bottom: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-bottom: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-brand p {
    margin: 0;
    font-size: 11px;
  }

  .footer-grid>div:last-child p {
    font-size: 11px;
  }

  .footer h2 {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .footer-phone {
    font-size: 18px;
  }

  .footer ul {
    font-size: 12px;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 9px;
  }

  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    padding: 13px;
  }

  .floating-whatsapp>span {
    display: none;
  }

  .floating-whatsapp .icon {
    width: 25px;
    height: 25px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 80px;
    max-width: none;
    padding: 13px 15px;
  }

  .cookie-notice p {
    font-size: 10px;
  }

  .page-intro {
    padding: 49px 0 53px;
  }

  .page-intro h1 {
    font-size: clamp(35px,8.6vw,50px);
  }

  .page-intro:after {
    font-size: 200px;
    bottom: -50px;
    right: 10px;
  }

  .intro-description {
    font-size: 14px;
    margin-top: 22px;
  }

  .process-list article {
    gap: 19px;
    align-items: flex-start;
    padding: 23px 0;
  }

  .process-list article>.icon {
    width: 19px;
    height: 19px;
    margin-top: 4px;
  }

  .process-list h3 {
    font-size: 21px;
  }

  .process-list p {
    font-size: 13px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .values-grid h3 {
    font-size: 24px;
  }

  .contact-callout {
    padding: 45px 0;
  }

  .contact-callout .container {
    display: block;
  }

  .contact-callout .button {
    margin-top: 25px;
  }

  .legal-content h2 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .legal-content p,.legal-content li {
    font-size: 14px;
  }

  .legal-content ul {
    padding-left: 22px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:360px) */
@media(max-width:360px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    gap: 13px;
  }

  .hero-secondary {
    font-size: 10px;
  }

  .hero-assurances {
    gap: 14px;
    font-size: 10px;
  }

  .hero .button {
    font-size: 12px;
  }

  .hero .eyebrow {
    font-size: 8px;
  }

  .hero-brand {
    max-width: 240px;
  }

  .offer>strong {
    font-size: 29px;
  }

  .offer>span {
    font-size: 10px;
  }

  .offer small {
    font-size: 14px;
  }

  .footer-brand {
    display: block;
  }

  .footer-brand p {
    margin-top: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-phone {
    font-size: 24px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (prefers-reduced-motion:reduce) */
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,*:before,*:after {
    transition: none!important;
    animation: none!important;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: print */
@media print {
  .header,.topbar,.footer,.floating-whatsapp,.cookie-notice,.menu-toggle {
    display: none!important;
  }

  .container {
    width: 100%;
  }

  .section {
    padding: 25px 0;
  }

  .hero,.page-intro,.benefits,.cta-section {
    background: white!important;
    color: black!important;
  }

  .hero-brand {
    max-width: 200px;
  }

  .hero-photo {
    display: none;
  }

  .hero p,.benefits p,.page-intro p {
    color: #333!important;
  }

}


/* 24. WHATSAPP, REDES SOCIAIS E EFEITOS DE INTERAÇÃO */
.icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar .icon-whatsapp {
  width: 16px;
  height: 16px;
  color: #66d58e;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid #ffffff30;
  border-radius: 3px;
  font-size: 11px;
  color: #d4d8d0;
  transition: color .2s,background .2s,border-color .2s,transform .2s;
}

.social-links .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-links-compact {
  margin: 0;
  gap: 13px;
}

.social-links-compact a {
  padding: 0;
  border: 0;
  min-height: 30px;
}

.topbar .social-links .icon {
  color: inherit;
  width: 14px;
  height: 14px;
}

.contact-phone,.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.contact-phone>.icon,.footer-phone>.icon {
  width: 25px;
  height: 25px;
  color: #19733c;
}

.footer-phone>.icon {
  color: #66d58e;
}

.contact-phone>span,.footer-phone>span {
  min-width: 0;
}

.header nav .nav-cta {
  gap: 10px;
}

.header nav .nav-cta>.icon-whatsapp {
  width: 19px;
  height: 19px;
  color: #66d58e;
}

.button-whatsapp {
  background: #19733c;
  color: #fff;
  border-color: #19733c;
}

.button-whatsapp .icon-whatsapp {
  width: 21px;
  height: 21px;
}

.button-whatsapp:hover,.button-whatsapp:focus-visible {
  background: #125c2f;
  color: #fff;
  border-color: #125c2f;
}

.footer-whatsapp {
  margin-top: 20px;
  min-height: 44px;
  font-size: 12px;
  padding: 11px 16px;
}

.footer .footer-whatsapp:hover {
  color: #fff;
}

.service-whatsapp {
  min-height: 46px;
  font-size: 12px;
  padding: 12px 16px;
  gap: 9px;
}

.service-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
  padding: 26px 28px;
  border: 1px solid #d9ddd4;
  background: #eeeee7;
}

.service-help strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.025em;
  line-height: 1.4;
}

.service-help p {
  font-size: 13px;
  margin-top: 6px;
}

.service-help .button {
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.about-actions .button {
  margin-top: 0;
}

.call-link {
  display: block;
  width: fit-content;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #666963;
  margin-top: 12px;
}

.offer>a>.icon-whatsapp {
  color: #19733c;
  width: 17px;
  height: 17px;
}

.button,.nav-cta,.cookie-accept {
  position: relative;
}

.button,.nav-cta,.floating-whatsapp,.cookie-accept {
  transition: background .22s,color .22s,border-color .22s,box-shadow .22s,transform .22s;
  isolation: isolate;
}

.button:active,.nav-cta:active,.floating-whatsapp:active,.cookie-accept:active {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}

.button>.icon:last-child:not(:first-child) {
  transition: transform .22s;
}

.text-link {
  transition: color .2s;
}

.header nav>a:not(.nav-cta):after {
  content: '';
  position: absolute;
  height: 2px;
  background: var(--orange);
  bottom: 3px;
  left: 0;
  width: 0;
  transition: width .22s;
}

.header nav>a[aria-current]:not(.nav-cta):after {
  width: 21px;
}

.header nav>a:not(.nav-cta):hover:after,.header nav>a:not(.nav-cta):focus-visible:after {
  width: 100%;
}

.service-card {
  transition: box-shadow .3s,border-color .3s,transform .3s;
}

.button:focus-visible,.nav-cta:focus-visible {
  box-shadow: 0 6px 20px #0002;
}

.floating-whatsapp:focus-visible {
  box-shadow: 0 0 0 6px #19733c22;
}

.reveal {
  transition: opacity .6s ease,transform .6s cubic-bezier(.2,.65,.3,1);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(20px);
}

.reveal:focus-within {
  opacity: 1;
  transform: none;
}


/* RESPONSIVIDADE E PREFERÊNCIAS: (hover:hover) and (pointer:fine) */
@media(hover:hover) and (pointer:fine) {
  .button:hover,.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px #0002;
  }

  .button-primary:hover {
    box-shadow: 0 8px 23px #ff790032;
  }

  .button-whatsapp:hover {
    box-shadow: 0 8px 23px #19733c30;
  }

  .button:hover>.icon:last-child:not(:first-child) {
    transform: translateX(3px);
  }

  .button {
    overflow: hidden;
  }

  .button:before {
    content: '';
    position: absolute;
    inset: 0 auto 0 -75%;
    width: 38%;
    background: linear-gradient(90deg,transparent,#ffffff25,transparent);
    transform: skewX(-20deg);
    pointer-events: none;
  }

  .button:hover:before {
    animation: button-shine .65s ease;
  }

  .floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 6px #19733c18,0 8px 24px #0003;
  }

  .social-links a:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: #ff79000a;
    transform: translateY(-2px);
  }

  .service-card:hover {
    border-color: #c8c9bf;
    box-shadow: 0 12px 28px #17181810;
    transform: translateY(-4px);
  }

  .cookie-accept:hover {
    background: #363a35;
    box-shadow: 0 4px 10px #0002;
  }

  .text-link:hover {
    color: #a74600;
  }

}


/* Animação: button-shine */
@keyframes button-shine {
  to {
    left: 135%;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (prefers-reduced-motion:no-preference) */
@media(prefers-reduced-motion:no-preference) {
  main {
    animation: page-arrive .45s ease both;
  }


  /* Animação: page-arrive */
  @keyframes page-arrive {
    from {
      opacity: .45;
    }

    to {
      opacity: 1;
    }

  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:1100px) */
@media(max-width:1100px) {
  .footer-phone {
    font-size: 22px;
    gap: 7px;
  }

  .footer-phone>.icon {
    width: 22px;
    height: 22px;
  }

  .service-whatsapp {
    font-size: 11px;
    padding: 12px;
    gap: 7px;
  }

  .service-whatsapp .icon-whatsapp {
    width: 18px;
    height: 18px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:900px) */
@media(max-width:900px) {
  .footer-phone {
    font-size: 18px;
  }

  .footer-phone>.icon {
    width: 20px;
    height: 20px;
  }

  .service-whatsapp {
    font-size: 10px;
    padding: 11px 9px;
    gap: 6px;
  }

  .service-help {
    padding: 24px;
    gap: 20px;
  }

  .service-help strong {
    font-size: 17px;
  }

  .service-help .button {
    font-size: 12px;
    padding: 13px 15px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:700px) */
@media(max-width:700px) {
  .topbar .topbar-location {
    display: none;
  }

  .topbar .topbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .topbar {
    font-size: 10px;
  }

  .topbar .container {
    min-height: 34px;
  }

  .social-links-compact a {
    min-height: 34px;
    min-width: 26px;
    justify-content: center;
  }

  .topbar .social-links .icon {
    width: 15px;
    height: 15px;
  }

  .header nav>a:not(.nav-cta):after {
    display: none;
  }

  .contact-phone {
    font-size: 25px;
    gap: 8px;
  }

  .contact-phone>.icon {
    width: 25px;
    height: 25px;
  }

  .footer-phone {
    font-size: 17px;
    gap: 6px;
  }

  .footer-phone>.icon {
    width: 20px;
    height: 20px;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    align-items: center;
  }

  .footer-brand>.social-links {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .footer-whatsapp {
    padding: 10px 12px;
    font-size: 11px;
    gap: 7px;
  }

  .footer-whatsapp .icon-whatsapp {
    width: 18px;
    height: 18px;
  }

  .service-whatsapp {
    font-size: 12px;
    padding: 12px 16px;
    gap: 9px;
  }

  .service-whatsapp .icon-whatsapp {
    width: 21px;
    height: 21px;
  }

  .service-help {
    display: block;
    padding: 23px 20px;
    margin-top: 25px;
  }

  .service-help .button {
    margin-top: 18px;
    font-size: 12px;
  }

  .about-actions {
    gap: 21px;
  }

  .offer>a {
    flex-wrap: wrap;
    gap: 6px;
  }

  .offer>a>.icon-whatsapp {
    width: 15px;
    height: 15px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:360px) */
@media(max-width:360px) {
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-phone {
    font-size: 24px;
  }

  .footer-phone>.icon {
    width: 25px;
    height: 25px;
  }

  .contact-phone {
    font-size: 23px;
  }

  .contact-phone>.icon {
    width: 23px;
    height: 23px;
  }

  .footer-whatsapp {
    font-size: 12px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (prefers-reduced-motion:reduce) */
@media(prefers-reduced-motion:reduce) {
  .reveal,.reveal.is-pending {
    opacity: 1;
    transform: none;
  }

  main {
    animation: none;
  }

  .button:hover,.nav-cta:hover,.floating-whatsapp:hover,.social-links a:hover,.service-card:hover {
    transform: none;
  }

  .button:hover:before {
    animation: none;
    display: none;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: print */
@media print {
  .reveal,.reveal.is-pending {
    opacity: 1;
    transform: none;
  }

}

.contact-phone {
  display: flex;
  width: fit-content;
}

.contact-item>.icon-whatsapp {
  color: #19733c;
}


/* 25. AJUSTES DE CONTEÚDO, NAVEGAÇÃO E PERGUNTAS FREQUENTES */
.hero h1 {
  font-size: clamp(44px,4.4vw,64px);
  line-height: 1.07;
}

.hero-description {
  max-width: 540px;
}

.breadcrumbs {
  margin-bottom: 28px;
  font-size: 11px;
  color: #b3b8b0;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li+li:before {
  content: '/';
  margin-right: 10px;
  color: #858b81;
}

.breadcrumbs a {
  color: #e4e6e1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.split-copy p a,.faq-list p a {
  color: #934000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split-copy p strong {
  font-weight: 700;
  color: #252825;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-photo {
  width: 100%;
  flex-shrink: 0;
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  line-height: 1.18;
}

.service-body .button {
  align-self: flex-start;
  margin-top: auto;
}

.about-story .split {
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
}

.about-story .split-copy h2 {
  font-size: 40px;
}

.about-story .about-image img {
  height: 540px;
}

.about-story .split-copy>p:not(.eyebrow) {
  line-height: 1.85;
}

.faq-section {
  background: #f6f5f1;
}

.faq-list {
  border-top: 1px solid #d5d7cf;
}

.faq-list details {
  border-bottom: 1px solid #d5d7cf;
  padding: 0;
}

.faq-list summary {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  padding: 23px 45px 23px 0;
  cursor: pointer;
  list-style: none;
  letter-spacing: -.015em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 20px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
  color: #934000;
}

.faq-list details[open] summary:after {
  content: '−';
}

.faq-list summary:focus-visible {
  outline: 3px solid #1681d7;
  outline-offset: 4px;
}

.faq-list details>div {
  padding: 0 40px 24px 0;
  max-width: 960px;
}

.faq-list p {
  font-size: 15px;
  line-height: 1.85;
}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:900px) */
@media(max-width:900px) {
  .hero h1 {
    font-size: 50px;
  }

  .about-story .split {
    gap: 35px;
  }

  .about-story .split-copy h2 {
    font-size: 34px;
  }

  .about-story .about-image img {
    height: 460px;
  }

  .service-body h3 {
    font-size: 21px;
  }

}


/* RESPONSIVIDADE E PREFERÊNCIAS: (max-width:700px) */
@media(max-width:700px) {
  .hero h1 {
    font-size: clamp(39px,10vw,58px);
  }

  .about-story .split {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-story .about-image img {
    height: 310px;
  }

  .about-story .split-copy h2 {
    font-size: 33px;
  }

  .breadcrumbs {
    font-size: 10px;
    margin-bottom: 24px;
  }

  .service-body h3 {
    font-size: 25px;
  }

  .faq-list summary {
    font-size: 17px;
    padding: 20px 34px 20px 0;
  }

  .faq-list summary:after {
    top: 18px;
    font-size: 24px;
  }

  .faq-list details>div {
    padding-right: 10px;
  }

  .faq-list p {
    font-size: 14px;
  }

}


/* POLÍTICA DE PRIVACIDADE — CANAL DE ATENDIMENTO */
.privacy-contact {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.legal-content time {
  white-space: normal;
}
