:root {
  --black: #080808;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --gray-900: #252525;
  --gray-700: #55565a;
  --gray-500: #86878c;
  --gray-300: #d6d6d8;
  --gray-200: #e9e9ea;
  --gray-100: #f4f4f5;
  --white: #ffffff;
  --red: #e71522;
  --red-dark: #ba0e18;
  --green: #22c55e;
  --container: 1180px;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

svg {
  display: block;
  fill: currentColor;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.section {
  padding: 112px 0;
}

.section-title {
  max-width: 720px;
  margin: 12px 0 24px;
  color: var(--black);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  color: var(--gray-700);
  font-size: 1.18rem;
  line-height: 1.75;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

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

.whatsapp-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.button--red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(231, 21, 34, .25);
}

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

.button--whatsapp {
  color: var(--white);
  background: #1ebd5b;
}

.button--whatsapp:hover {
  background: #18a34d;
}

.button--dark {
  color: var(--white);
  background: var(--black);
}

.button--light {
  color: var(--black);
  background: var(--white);
}

.button--light-border {
  border-color: rgba(255, 255, 255, .25);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--black);
  font-weight: 850;
}

.text-link span {
  color: var(--red);
  font-size: 1.35rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
}

.navbar {
  background: rgba(8, 8, 8, .93);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled .navbar {
  background: rgba(5, 5, 5, .985);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
}

.navbar__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 150px;
  height: 64px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 145px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
  color: rgba(255, 255, 255, .78);
  font-size: .83rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: .79rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease;
}

.nav-cta:hover,
.about__cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.nav-cta svg,
.about__cta svg {
  width: 18px;
  height: 18px;
}

.nav-cta .whatsapp-icon,
.about__cta .whatsapp-icon {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 780px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 68px;
  color: var(--white);
  background-image: url("assets/images/hero-guincho-serra.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .56) 38%, rgba(0, 0, 0, .14) 72%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .15));
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.hero__content {
  max-width: 690px;
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0 24px;
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
  font-weight: 750;
  letter-spacing: -.03em;
  line-height: .88;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--red);
  font-weight: 900;
}

.hero__lead {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero__areas span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.contact-card {
  position: relative;
  padding: 36px;
  overflow: hidden;
  color: var(--black);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--red);
}

.contact-card__tag {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--red);
  background: rgba(231, 21, 34, .08);
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 15px 0 12px;
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.contact-card > p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: .92rem;
  line-height: 1.65;
}

.contact-card__phone {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  font-size: 1.28rem;
  font-weight: 900;
}

.contact-card__phone small {
  display: block;
  margin-bottom: 1px;
  color: var(--gray-500);
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-card__actions {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 10px;
  margin-top: 22px;
}

.contact-card__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--gray-500);
  font-size: .72rem;
}

.contact-card__hint svg {
  width: 15px;
  height: 15px;
  color: var(--red);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll svg {
  width: 22px;
  height: 22px;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
  50% { transform: translateY(5px); }
}

.trust-band {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--black);
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.trust-item__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  background: rgba(231, 21, 34, .1);
  border-radius: 50%;
}

.trust-item__icon svg {
  width: 21px;
  height: 21px;
}

.trust-item__icon--tow svg {
  width: 28px;
  height: 22px;
  fill: none;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--white);
  font-size: .92rem;
}

.trust-item > span:last-child {
  color: rgba(255, 255, 255, .52);
  font-size: .73rem;
  line-height: 1.45;
}

.about {
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.about__content > p:not(.section-lead) {
  max-width: 650px;
  color: var(--gray-700);
}

.about__cta {
  display: flex;
  width: min(100%, 350px);
  justify-content: center;
  margin-top: 28px;
  padding: 16px 24px;
  font-size: .95rem;
}

.about__visual {
  position: relative;
  width: min(100%, 558px);
  justify-self: center;
  padding: 0 28px 34px 0;
}

.about__image-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 53 / 60;
  border-radius: 4px 40px 4px 40px;
  box-shadow: var(--shadow-lg);
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.about__visual:hover img {
  transform: scale(1.035);
}

.about__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-width: 172px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 19px 21px;
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow-sm);
}

.about__badge strong {
  font-size: 2.35rem;
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: 1;
}

.about__badge span {
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about__accent {
  position: absolute;
  top: -24px;
  right: 0;
  width: 160px;
  height: 140px;
  background-image: radial-gradient(rgba(231, 21, 34, .4) 1.4px, transparent 1.4px);
  background-size: 13px 13px;
}

.services {
  background: var(--gray-100);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading .section-title {
  max-width: none;
  margin-bottom: 0;
  white-space: nowrap;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .12);
  transform: translateY(-7px);
}

.service-card__image {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .24), transparent 55%);
}

.service-card__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.055);
}

.service-card__body {
  padding: 27px 28px 29px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 1.23rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.service-card p {
  min-height: 78px;
  margin: 0 0 20px;
  color: var(--gray-700);
  font-size: .84rem;
  line-height: 1.7;
}

.service-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--black);
  border-top: 1px solid var(--gray-200);
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s ease;
}

.service-card__link span {
  color: var(--red);
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.service-card__link:hover {
  color: var(--red);
}

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

.coverage {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(0, 0, 0, .96), rgba(15, 15, 15, .93)),
    url("assets/images/hero-guincho-serra.jpg") center/cover;
}

.coverage__pattern {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.coverage::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: rgba(231, 21, 34, .11);
  border-radius: 50%;
  filter: blur(2px);
}

.coverage__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 72px;
}

.coverage__content > p {
  max-width: 680px;
  color: rgba(255, 255, 255, .65);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-top: 36px;
}

.city-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 17px;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 780;
  transition: background-color .2s ease, border-color .2s ease;
}

.city-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .22);
}

.city-card--featured {
  grid-column: span 2;
  gap: 12px;
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.city-card--featured:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.city-card__pin {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  background: var(--white);
  border-radius: 50%;
}

.city-card__pin svg {
  width: 17px;
  height: 17px;
}

.city-card strong,
.city-card small {
  display: block;
}

.city-card small {
  color: rgba(255, 255, 255, .68);
  font-size: .63rem;
  font-weight: 650;
}

.coverage__other-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  padding: 13px 17px;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 2px;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .02em;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.coverage__other-link:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.coverage__review {
  position: relative;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.testimonials-card {
  width: 100%;
  min-height: 455px;
  padding: 40px 34px 34px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.testimonials-card h3 {
  max-width: 390px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .96;
}

.testimonials-card__intro {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .62);
  font-size: .95rem;
}

.testimonials-card__reviews {
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  transition: opacity .24s ease, transform .24s ease;
}

.testimonials-card__reviews.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.testimonials-card__review {
  padding-top: 22px;
}

.testimonials-card__review + .testimonials-card__review {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.testimonials-card__review strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 850;
}

.testimonials-card__stars {
  display: block;
  margin-bottom: 13px;
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: .08em;
}

.testimonials-card__review p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  line-height: 1.65;
}

.faq {
  background: var(--gray-100);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  gap: 100px;
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: 145px;
}

.faq__intro .section-title {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.faq__intro > p {
  color: var(--gray-700);
}

.faq__list {
  border-top: 1px solid var(--gray-300);
}

.faq details {
  border-bottom: 1px solid var(--gray-300);
}

.faq summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--black);
  font-size: 1rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.faq details[open] summary span::before,
.faq details[open] summary span::after {
  background: var(--white);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
  max-width: 670px;
  margin: -8px 0 30px;
  padding-right: 50px;
  color: var(--gray-700);
  font-size: .9rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  color: var(--white);
  background: var(--red);
}

.final-cta__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(132, 0, 9, .24), transparent 60%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, .035) 18px 19px);
}

.final-cta::after {
  content: "24H";
  position: absolute;
  top: 50%;
  right: 2%;
  color: rgba(255, 255, 255, .065);
  font-size: 14rem;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1;
  transform: translateY(-53%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta__kicker {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .95;
}

.final-cta h2 span {
  color: var(--black);
}

.final-cta p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
}

.final-cta__actions {
  display: flex;
  gap: 12px;
}

.footer {
  padding: 76px 0 0;
  color: rgba(255, 255, 255, .6);
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr 1fr 1.25fr;
  gap: 60px;
  padding-bottom: 62px;
}

.footer__brand img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer__brand p {
  max-width: 270px;
  margin: 0 0 24px;
  font-size: .82rem;
}

.footer__availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: .7rem;
  font-weight: 800;
}

.footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer__column h2 {
  margin: 7px 0 14px;
  color: var(--white);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer__column a {
  font-size: .78rem;
  transition: color .2s ease;
}

.footer__column a:hover {
  color: var(--white);
}

.footer__contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
  line-height: 1.6;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--red);
}

.footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .7rem;
}

.footer__g2-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: var(--white);
  background: #20bd5b;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .25);
  transition: transform .2s ease, background-color .2s ease;
}

.floating-whatsapp:hover {
  background: #17a84d;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

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

.mobile-action-bar {
  display: none;
}

.noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--red);
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal--delay-short {
  transition-delay: .08s;
}

.reveal--delay,
.reveal--delay-long {
  transition-delay: .14s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1.05fr .75fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7vw, 5.7rem);
  }

  .contact-card {
    padding: 30px;
  }

  .trust-item {
    padding-inline: 18px;
  }

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

  .coverage__grid {
    gap: 50px;
  }

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq__grid {
    gap: 60px;
  }

  .footer__grid {
    grid-template-columns: 1.25fr .75fr 1fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  html {
    scroll-padding-top: 66px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading .section-title {
    white-space: normal;
  }

  .navbar__inner {
    height: 66px;
  }

  .brand {
    width: 125px;
    height: 55px;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    display: flex;
  }

  .js .nav-links {
    position: fixed;
    top: 96px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 26px 20px 130px;
    background: rgba(5, 5, 5, .985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .js .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 19px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 158px 0 85px;
    background-attachment: scroll;
    background-position: 61% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .76)),
      linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero__content {
    max-width: 680px;
  }

  .contact-card {
    max-width: 500px;
  }

  .hero__scroll {
    display: none;
  }

  .trust-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, .1);
  }

  .trust-item {
    min-height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .about__grid,
  .coverage__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    gap: 60px;
  }

  .about__visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .coverage__grid {
    gap: 55px;
  }

  .coverage__review {
    max-width: 500px;
    justify-self: stretch;
  }

  .faq__grid {
    gap: 44px;
  }

  .faq__intro {
    position: static;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }

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

  .footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  body {
    padding-bottom: 66px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    margin-top: 10px;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .section-heading .section-title {
    white-space: normal;
  }

  .hero {
    padding: 135px 0 70px;
    background-position: 66% center;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__areas {
    gap: 6px;
    margin-top: 24px;
  }

  .hero__areas span {
    padding: 6px 9px;
    font-size: .65rem;
  }

  .contact-card {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .contact-card h2 {
    font-size: 1.7rem;
  }

  .contact-card__phone {
    font-size: 1.12rem;
  }

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

  .trust-band__grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
  }

  .trust-item {
    min-height: 88px;
  }

  .about__grid {
    gap: 48px;
  }

  .about__visual {
    padding: 0 18px 25px 0;
  }

  .about__image-wrap {
    border-radius: 3px 25px 3px 25px;
  }

  .about__badge {
    min-width: 148px;
    padding: 15px 17px;
  }

  .about__badge strong {
    font-size: 2rem;
  }

  .about__accent {
    top: -18px;
    width: 120px;
    height: 100px;
  }

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

  .service-card p {
    min-height: auto;
  }

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

  .city-card--featured {
    grid-column: 1 / -1;
  }

  .testimonials-card {
    min-height: auto;
    padding: 32px 24px 26px;
  }

  .testimonials-card h3 {
    font-size: 2rem;
  }

  .faq summary {
    min-height: 80px;
    font-size: .9rem;
  }

  .faq details p {
    padding-right: 20px;
    font-size: .84rem;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-cta h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta::after {
    top: auto;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    transform: none;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .footer__bottom p {
    margin: 0;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    height: 66px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    padding: 8px;
    background: rgba(8, 8, 8, .98);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 -12px 30px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 850;
  }

  .mobile-action-bar a:last-child {
    background: #20bd5b;
  }

  .mobile-action-bar svg {
    width: 20px;
    height: 20px;
  }

  .mobile-action-bar .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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