@font-face {
  font-family: Geist;
  src: url("assets/geist.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f36c21;
  --orange2: #ff8a34;
  --dark: #090b0e;
  --graphite: #161a20;
  --panel: #20252c;
  --silver: #d9dde1;
  --muted: #aab0b8;
  --line: rgba(255, 255, 255, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--dark);
  color: #f7f7f7;
  font-family: Geist, Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
.site-shell {
  overflow: hidden;
}
.topbar {
  height: 34px;
  background: var(--orange);
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 max(4vw, 20px);
  font-size: 13px;
  font-weight: 800;
}
.header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vw, 20px);
  position: sticky;
  top: 0;
  background: rgba(9, 11, 14, 0.94);
  backdrop-filter: blur(16px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.brand img {
  width: 155px;
  height: 92px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
.nav > a:not(.btn) {
  position: relative;
}
.nav > a:not(.btn):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}
.nav > a:hover:after {
  width: 100%;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 26px;
}
.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #111;
  box-shadow: 0 12px 35px rgba(243, 108, 33, 0.25);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(243, 108, 33, 0.38);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
}
.btn-outline {
  border-color: rgba(243, 108, 33, 0.6);
  color: var(--orange);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(243, 108, 33, 0.1);
}
.btn-outline.light {
  border-color: #fff;
  color: #fff;
}
.pulse {
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(243, 108, 33, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(243, 108, 33, 0);
  }
}
.hero {
  min-height: calc(100vh - 124px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px max(6vw, 24px) 130px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("imagem/oficina-cruze.png") center/cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 9, 0.96) 0%,
      rgba(5, 7, 9, 0.77) 48%,
      rgba(5, 7, 9, 0.25) 100%
    ),
    linear-gradient(0deg, #090b0e 0%, transparent 35%);
}
.hero-content {
  position: relative;
  max-width: 730px;
  z-index: 2;
}
.eyebrow {
  display: block;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.22em;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 16px;
}
.hero h1,
.inner-hero h1,
.page-heading h1 {
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p,
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: #d5d8dc;
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-proof {
  position: absolute;
  left: max(6vw, 24px);
  right: max(6vw, 24px);
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 3;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-proof span {
  display: flex;
  gap: 9px;
  align-items: baseline;
  color: var(--muted);
  border-right: 1px solid var(--line);
  padding-left: 25px;
}
.hero-proof span:first-child {
  padding-left: 0;
}
.hero-proof span:last-child {
  border: 0;
}
.hero-proof b {
  font-size: 25px;
  color: #fff;
}
.intro,
.cta,
.area {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: center;
  padding: 100px max(6vw, 24px);
}
.intro {
  background: linear-gradient(135deg, #15191e, #0e1115);
}
.intro h2,
.section-heading h2,
.cta h2,
.area h2 {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin: 0;
}
.intro > p,
.cta p,
.area p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.services-section,
.content-section {
  padding: 105px max(6vw, 24px);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 108, 33, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  filter: saturate(0.84);
}
.service-card div {
  padding: 25px;
}
.service-card span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.service-card h3,
.service-card h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 10px 0;
}
.service-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.service-card b {
  color: var(--orange);
  font-size: 13px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(6vw, 24px) 100px;
}
.stats article {
  padding: 35px;
  border: 1px solid var(--line);
  background: var(--graphite);
}
.stats b {
  display: block;
  color: var(--orange);
  font-size: 40px;
}
.stats span {
  color: var(--muted);
}
.cta {
  background: linear-gradient(120deg, #1c2026, #0d0f12);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta .btn {
  justify-self: end;
}
.inner-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 75px max(6vw, 24px);
  background: radial-gradient(
    circle at 80% 30%,
    rgba(243, 108, 33, 0.13),
    transparent 35%
  );
}
.inner-hero h1 {
  font-size: clamp(43px, 5.2vw, 76px);
}
.inner-copy > p:not(.lead) {
  color: var(--muted);
  line-height: 1.8;
}
.inner-image {
  margin: 0;
  position: relative;
}
.inner-image:before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(243, 108, 33, 0.5);
  border-radius: 20px;
  transform: rotate(2deg);
}
.inner-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
}
.inner-image figcaption {
  font-size: 11px;
  color: #777;
  margin-top: 18px;
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(6vw, 24px);
}
.benefit-strip article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--graphite);
}
.benefit-strip span {
  color: var(--orange);
  font-size: 22px;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--graphite);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 14px;
}
.info-card .number {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.info-card h3 {
  font-size: 22px;
}
.page-heading {
  padding: 110px max(6vw, 24px) 60px;
  max-width: 1050px;
}
.page-heading p {
  font-size: 20px;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px max(6vw, 24px) 100px;
}
.contact-grid article {
  background: var(--graphite);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 16px;
}
.contact-grid span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
}
.contact-grid h2 {
  font-size: 26px;
}
.contact-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.contact-grid article > a:not(.btn):not(.btn-outline) {
  color: var(--orange);
}
.area {
  background: var(--graphite);
}
.map-card {
  border: 1px solid rgba(243, 108, 33, 0.45);
  padding: 35px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s;
}
.map-card:hover {
  transform: translateY(-5px);
  background: rgba(243, 108, 33, 0.08);
}
.map-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.map-card strong {
  font-size: 25px;
}
.map-card small {
  color: var(--muted);
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #25d366;
  color: #07160b;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  font-weight: 900;
}
.whatsapp-float span {
  font-size: 22px;
}
.footer {
  background: #060709;
  padding: 80px max(5vw, 22px) 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr 1fr;
  gap: 45px;
}
.footer-logo {
  width: 180px;
  height: 110px;
  object-fit: contain;
}
.footer p,
.footer a {
  display: block;
  color: #969ca4;
  line-height: 1.7;
  font-size: 14px;
  margin: 7px 0;
}
.footer h3 {
  color: #fff;
}
.socials a:hover,
.footer a:hover {
  color: var(--orange);
}
.legal {
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777;
  font-size: 12px;
}
.legal a {
  display: inline;
  color: var(--orange);
}
.cookie {
  position: fixed;
  z-index: 100;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #171b20;
  border: 1px solid rgba(243, 108, 33, 0.45);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cookie p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.reveal {
  animation: reveal 0.8s ease both;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }
  .nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #0c0f12;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }
  .nav.open {
    display: flex;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .inner-image {
    max-width: 700px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-proof,
  .benefit-strip,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .intro,
  .cta,
  .area {
    grid-template-columns: 1fr;
  }
  .cta .btn {
    justify-self: start;
  }
}
@media (max-width: 620px) {
  .topbar span {
    display: none;
  }
  .topbar {
    justify-content: center;
  }
  .header {
    height: 76px;
  }
  .brand img {
    width: 125px;
    height: 74px;
  }
  .nav {
    top: 76px;
  }
  .hero {
    min-height: 780px;
    padding-top: 70px;
  }
  .hero h1,
  .page-heading h1,
  .inner-hero h1 {
    font-size: 42px;
  }
  .hero-content {
    align-self: flex-start;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
    bottom: 20px;
  }
  .hero-proof span {
    display: block;
    padding: 12px 5px;
    border: 0;
  }
  .hero-proof b {
    display: block;
    font-size: 20px;
  }
  .services-section,
  .content-section {
    padding: 75px 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 70px;
  }
  .stats article {
    padding: 22px;
  }
  .stats b {
    font-size: 28px;
  }
  .intro,
  .cta,
  .area {
    padding: 75px 20px;
  }
  .inner-hero {
    padding: 65px 20px;
    gap: 45px;
  }
  .benefit-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .page-heading {
    padding: 75px 20px 45px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 10px 20px 70px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-direction: column;
  }
  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
  .whatsapp-float b {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .actions > * {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.whatsapp-button {
  gap: 10px;
}
.whatsapp-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
}
.footer-whatsapp {
  display: flex !important;
  align-items: center;
  gap: 7px;
}
.footer-whatsapp svg {
  width: 18px;
  height: 18px;
  color: #25d366;
}
.section-whatsapp {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.inline-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.inline-actions .btn {
  min-height: 48px;
}
.socials .footer-whatsapp:hover {
  color: #25d366;
}

/* Expanded professional content */
.nav-services {
  position: relative;
  padding: 28px 0;
}
.nav-services > a {
  position: relative;
}
.nav-services > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}
.nav-services:hover > a:after {
  width: 100%;
}
.nav-services small {
  color: var(--orange);
}
.dropdown {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 370px;
  background: #11151a;
  border: 1px solid rgba(243, 108, 33, 0.4);
  border-radius: 14px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
}
.nav-services:hover .dropdown,
.nav-services:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  padding: 13px 15px;
  border-radius: 8px;
}
.dropdown a:hover {
  background: rgba(243, 108, 33, 0.1);
}
.dropdown span {
  display: block;
  color: var(--orange);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.dropdown b {
  display: block;
  font-size: 13px;
  margin-top: 3px;
}
.authority {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  padding: 105px max(6vw, 24px);
  background: #0c0f13;
}
.authority figure {
  margin: 0;
}
.authority figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.authority figcaption {
  font-size: 11px;
  color: #777;
  margin-top: 10px;
}
.authority h2,
.split-section h2,
.process-section h2,
.faq-section h2,
.story h2,
.service-compare h2 {
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.authority > div > p,
.split-section > div > p,
.story p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.mini-features {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.mini-features article {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: var(--graphite);
  border-left: 3px solid var(--orange);
}
.mini-features span {
  color: var(--muted);
  font-size: 13px;
}
.text-link {
  color: var(--orange);
  font-weight: 900;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  padding: 105px max(6vw, 24px);
  background: #0d1014;
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.check-list li {
  padding: 15px 15px 15px 38px;
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 9px;
  position: relative;
  color: #d4d7db;
}
.check-list li:before {
  content: "!";
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-weight: 900;
}
.scope-panel {
  background: linear-gradient(145deg, #20252c, #15191e);
  border: 1px solid rgba(243, 108, 33, 0.35);
  padding: 38px;
  border-radius: 18px;
}
.scope-panel ul {
  list-style: none;
  padding: 0;
}
.scope-panel li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.scope-panel li span {
  color: var(--orange);
}
.scope-panel small {
  display: block;
  color: #777;
  margin-top: 20px;
}
.process-section,
.home-process,
.faq-section,
.service-compare {
  padding: 105px max(6vw, 24px);
}
.process-section,
.service-compare {
  background: var(--graphite);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-grid article {
  padding: 30px 25px;
  border: 1px solid var(--line);
  background: #101318;
  min-height: 245px;
  position: relative;
  overflow: hidden;
}
.process-grid article:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(243, 108, 33, 0.2);
  border-radius: 50%;
  right: -25px;
  bottom: -25px;
}
.process-grid article > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.process-grid h3 {
  font-size: 21px;
}
.process-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.faq-list {
  max-width: 950px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--orange);
  font-size: 26px;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 820px;
}
.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: center;
  padding: 100px max(6vw, 24px);
  background: linear-gradient(135deg, #161b20, #0c0f12);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 max(6vw, 24px) 105px;
}
.pillars article {
  border-top: 3px solid var(--orange);
  background: var(--graphite);
  padding: 28px;
}
.pillars h3 {
  font-size: 22px;
}
.pillars p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-grid article {
  background: #11151a;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
}
.compare-grid article > span {
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.compare-grid h3 {
  font-size: 26px;
}
.compare-grid ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
}
.compare-grid li::marker {
  color: var(--orange);
}
@media (max-width: 980px) {
  .nav {
    max-height: calc(100vh - 90px);
    overflow: auto;
  }
  .nav-services {
    padding: 0;
  }
  .nav-services > a {
    display: block;
  }
  .dropdown {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 8px 0 0 14px;
  }
  .dropdown a {
    padding: 9px 10px;
  }
  .authority,
  .split-section,
  .story {
    grid-template-columns: 1fr;
  }
  .process-grid,
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .authority,
  .split-section,
  .story {
    padding: 75px 20px;
  }
  .process-section,
  .home-process,
  .faq-section,
  .service-compare {
    padding: 75px 20px;
  }
  .process-grid,
  .pillars,
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .pillars {
    padding: 0 20px 75px;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
}

.cookie[hidden] {
  display: none !important;
}
.cookie-close {
  position: absolute;
  right: 12px;
  top: 9px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.cookie-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange);
}
img {
  max-width: 100%;
}
.whatsapp-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
}
.whatsapp-float .whatsapp-icon {
  width: 25px;
  height: 25px;
}
.footer-whatsapp .whatsapp-icon {
  filter: invert(62%) sepia(89%) saturate(1652%) hue-rotate(89deg)
    brightness(95%);
  width: 18px;
  height: 18px;
}
