:root {
  --red: #e30613;
  --red-dark: #b8040f;
  --black: #060606;
  --ink: #171717;
  --muted: #666666;
  --line: #e3e3e3;
  --paper: #ffffff;
  --soft: #f6f4ef;
  --warm: #fbf7ee;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-weight: 450;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(284px, 44vw);
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 750;
  text-transform: uppercase;
}

nav a {
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--red);
}

.header-call {
  padding: 12px 18px;
  color: #fff;
  background: var(--black);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.top-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: var(--red);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.top-availability span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 130px);
  background: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.76) 49%, rgba(255, 255, 255, 0.18) 67%, rgba(255, 255, 255, 0) 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(247, 240, 222, 0.22));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(58vw, 760px);
  min-height: calc(100vh - 130px);
  padding: clamp(44px, 7vw, 92px) clamp(22px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(3.35rem, 7.8vw, 6.4rem);
  line-height: 0.94;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--red);
  font-size: clamp(1.45rem, 3.1vw, 2.35rem);
  font-weight: 850;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--black);
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--black);
  background: #fff;
}

.button img {
  width: 24px;
  filter: invert(1);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 36%;
  z-index: 0;
  min-height: 100%;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.3) 24%, rgba(255,255,255,0) 52%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image picture {
  display: block;
}

.hero-image img {
  object-fit: cover;
  object-position: 45% center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #fff;
}

.trust-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 116px;
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--red);
  border: 3px solid var(--black);
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.trust-strip strong {
  max-width: 150px;
  font-size: 0.92rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
  background: var(--paper);
}

.intro-copy {
  max-width: 850px;
}

.intro-copy h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(2.05rem, 4.6vw, 3.9rem);
  line-height: 1.02;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.intro-panel {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: var(--black);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-panel strong {
  color: #fff;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.08;
}

.intro-panel span {
  color: #f2f2f2;
  font-size: 1.1rem;
}

.trust-note-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) 34px;
  background: #fff;
}

.trust-note-bar span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px 10px 38px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 850;
}

.trust-note-bar span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 999px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.section-heading h2,
.price-card h2,
.whatsapp-card h2,
.local h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(1.95rem, 4.2vw, 3.55rem);
  line-height: 1.03;
  font-weight: 850;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 208px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid.compact article {
  min-height: 190px;
}

.price-contact {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.45fr);
  gap: 24px;
  background: var(--soft);
}

.area-section {
  background: #fff;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.area-list span:nth-child(3n + 1) {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.area-list span:nth-child(3n + 2) {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.big-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background: var(--black);
}

.big-cta h2 {
  max-width: 850px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.05rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  font-weight: 850;
  text-transform: uppercase;
}

.big-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #ededed;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.big-cta-actions {
  display: grid;
  gap: 12px;
  min-width: min(360px, 100%);
}

.big-cta .button.secondary {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.price-card {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 8px solid var(--black);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.price-card > p:first-child {
  margin: -42px auto 24px;
  width: min(280px, 90%);
  padding: 10px 18px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h2 {
  font-size: clamp(2rem, 5vw, 4.1rem);
}

.price-card h2 strong,
.price-card p strong {
  color: var(--red);
}

.price-card span {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card hr {
  width: 74%;
  margin: 24px auto;
  border: 0;
  border-top: 2px solid var(--black);
}

.price-card p:last-of-type {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.price-card small {
  color: var(--muted);
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(26px, 5vw, 46px);
  color: #fff;
  background: radial-gradient(circle at 25% 0%, #2b2b2b, #050505 58%);
  border-radius: 8px;
}

.whatsapp-card h2 {
  max-width: 560px;
  margin-bottom: 16px;
  color: #fff;
}

.whatsapp-card p:not(.eyebrow) {
  max-width: 500px;
  color: #e4e4e4;
}

.qr-link {
  display: grid;
  gap: 10px;
  width: min(214px, 28vw);
  padding: 12px;
  background: #fff;
  border-radius: 8px;
}

.qr-link img {
  border-radius: 4px;
  aspect-ratio: 1;
  object-fit: cover;
}

.qr-link span {
  display: block;
  padding: 8px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.local {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
}

.local > div:first-child {
  max-width: 760px;
}

.local p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: var(--black);
  border-radius: 8px;
  color: #fff;
}

.contact-panel a:first-child {
  color: var(--red);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.contact-panel span {
  color: #d6d6d6;
  text-transform: uppercase;
}

.contact-panel a:last-child {
  width: fit-content;
  margin-top: 12px;
  border-bottom: 2px solid var(--red);
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

footer a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.legal-page {
  background: #fff;
}

.legal-hero {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px) 34px;
  background: var(--soft);
}

.legal-hero h1 {
  max-width: 920px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.legal-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-content {
  max-width: 880px;
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--black);
  font-size: 1.3rem;
}

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

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--red);
  font-weight: 800;
}

.legal-date {
  margin-top: 34px;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.floating-whatsapp img {
  width: 34px;
  filter: invert(1);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-image {
    inset: 0;
    min-height: 100%;
  }

  .trust-strip,
  .service-grid,
  .price-contact,
  .local,
  .intro-section,
  .big-cta {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-card {
    grid-column: 1 / -1;
  }

  .big-cta-actions {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    padding-inline: 16px;
    gap: 12px;
  }

  .brand img {
    width: min(218px, 54vw);
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .top-availability {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.45rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: clamp(1.18rem, 6.4vw, 1.68rem);
    line-height: 1.16;
  }

  .hero-copy {
    min-height: auto;
    padding-inline: 18px;
    padding-bottom: 30px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.96) 48%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-image {
    position: relative;
    inset: auto;
    height: 310px;
    min-height: 0;
    margin: 0 18px 26px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .hero-image::after {
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,0.05));
  }

  .hero-image img {
    object-position: 42% center;
  }

  .trust-strip,
  .service-grid,
  .price-contact,
  .local,
  .whatsapp-card,
  .intro-section,
  .big-cta {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: 86px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-note-bar {
    flex-direction: column;
    padding-bottom: 28px;
  }

  .trust-note-bar span {
    width: 100%;
    border-radius: 8px;
  }

  .section-heading {
    display: block;
  }

  .service-grid article {
    min-height: 0;
  }

  .service-grid span {
    margin-bottom: 18px;
  }

  .price-card > p:first-child {
    margin-top: -36px;
  }

  .whatsapp-card {
    align-items: start;
  }

  .qr-link {
    width: min(230px, 100%);
  }

  .area-list {
    gap: 8px;
  }

  .area-list span {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.92rem;
  }

  .big-cta {
    padding-bottom: 128px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    font-size: 0.84rem;
    text-align: center;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
