:root {
  --brand-red: #E53935;
  --brand-gold: #FBC02D;
  --text-light: #ffffff;
  --text-dark: #1d1d1d;
  --surface: #ffffff;
  --surface-soft: #f6f3ef;
  --border-soft: rgba(0, 0, 0, 0.08);
  --bar-max-width: 1240px;
  --container-padding: 24px;
  --section-spacing: 96px;
  --header-height: 112px;
  --header-offset: calc(var(--header-height) + 24px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  min-width: 320px;
  font-family: "Barlow", sans-serif;
  background: var(--surface-soft);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  position: fixed;
  top: var(--scroll-lock-top, 0);
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

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

.topbar {
  background: var(--brand-red);
  color: var(--text-light);
}

.topbar__inner {
  max-width: var(--bar-max-width);
  margin: 0 auto;
  min-height: 56px;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  min-width: 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.topbar__info span {
  position: relative;
}

.topbar__link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.topbar__link:hover {
  text-decoration: underline;
}

.topbar__info span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%);
}

.topbar__whatsapp {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.topbar__whatsapp:hover {
  opacity: 0.8;
}

.topbar__whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header__inner,
.section__inner {
  max-width: var(--bar-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: 111px;
  max-width: 100%;
  height: auto;
}

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--brand-red);
  font: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  background: rgba(229, 57, 53, 0.1);
}

.site-menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 1.6rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
  gap: 28px;
}

.site-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

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

.site-nav a.is-active {
  color: var(--brand-red);
  border-color: var(--brand-red);
  font-weight: 700;
  opacity: 1;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1.5px solid var(--brand-red);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-red);
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-cta:hover,
.site-cta:focus-visible {
  background: var(--brand-red);
  color: var(--text-light);
  transform: translateY(-1px);
}

.site-menu-backdrop {
  display: none;
}

.section {
  scroll-margin-top: var(--header-offset);
  padding: var(--section-spacing) 0;
  min-height: 42vh;
}

.section--hero {
  padding-top: 28px;
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 192, 45, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(229, 57, 53, 0.1), transparent 20%),
    linear-gradient(180deg, #fffdf9 0%, #fff7ed 100%);
  color: var(--text-dark);
}

.section:nth-of-type(odd) {
  background: #fffdfb;
}

.section__inner h1,
.section__inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 460px);
  align-items: center;
  gap: 54px;
}

.hero__content {
  max-width: 680px;
  padding-top: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(251, 192, 45, 0.2);
  color: #8d5b00;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__content h1 {
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 22ch;
  color: #151515;
}

.hero__lead,
.hero__text {
  max-width: 620px;
  color: rgba(29, 29, 29, 0.78);
  line-height: 1.6;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  width: 100%;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 40px 24px 28px 24px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    linear-gradient(135deg, rgba(251, 192, 45, 0.08), rgba(229, 57, 53, 0.06));
  box-shadow: 0 26px 70px rgba(33, 24, 18, 0.1);
}

.hero__visual-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(33, 24, 18, 0.16);
}

.hero__visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__visual-frame--primary {
  top: 12px;
  left: 0;
  width: 74%;
  height: 468px;
  z-index: 1;
}

.hero__visual-frame--primary img {
  object-position: center center;
}

.hero__visual-frame--secondary {
  right: 0;
  bottom: 34px;
  width: 46%;
  height: 240px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  z-index: 2;
}

.hero__visual-frame--secondary img {
  object-position: center top;
}

.hero__lead {
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.hero__text {
  margin: 14px 0 0;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
}

.hero__button--primary {
  background: var(--brand-red);
  color: var(--text-light);
  box-shadow: 0 14px 30px rgba(229, 57, 53, 0.28);
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
  background: #d32f2f;
}

.hero__button--secondary {
  border: 1.5px solid rgba(229, 57, 53, 0.16);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.72);
}

.hero__button--secondary:hover,
.hero__button--secondary:focus-visible {
  background: rgba(251, 192, 45, 0.16);
  border-color: rgba(251, 192, 45, 0.72);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 32px;
}

.hero__stat {
  min-width: 168px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 57, 53, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(33, 24, 18, 0.08);
}

.hero__stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.hero__stat span {
  display: block;
  max-width: 140px;
  color: rgba(29, 29, 29, 0.82);
  font-size: 0.98rem;
  line-height: 1.3;
}

.section--about {
  background:
    radial-gradient(circle at 92% 18%, rgba(229, 57, 53, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdfb 0%, #f9f2eb 100%);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about__media {
  position: relative;
  min-height: 560px;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 34px 20px 36px 20px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.6)),
    linear-gradient(135deg, rgba(251, 192, 45, 0.1), rgba(229, 57, 53, 0.08));
  box-shadow: 0 26px 70px rgba(33, 24, 18, 0.1);
}

.about__image {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(33, 24, 18, 0.16);
}

.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image--primary {
  top: 0;
  left: 0;
  width: 76%;
  height: 488px;
  z-index: 1;
}

.about__image--secondary {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 252px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  z-index: 2;
}

.about__content {
  max-width: 680px;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--brand-red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #151515;
}

.about__lead {
  margin: 24px 0 0;
  color: #1a1a1a;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.6;
}

.about__text {
  margin: 14px 0 0;
  color: rgba(29, 29, 29, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.about__card {
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(229, 57, 53, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(33, 24, 18, 0.08);
}

.about__card h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  color: #151515;
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about__list li {
  position: relative;
  padding-left: 30px;
  color: rgba(29, 29, 29, 0.84);
  line-height: 1.55;
}

.about__list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-red));
  box-shadow: 0 0 0 6px rgba(229, 57, 53, 0.08);
}

.about__actions {
  margin-top: 28px;
}

.about__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--brand-red);
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(229, 57, 53, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.about__button:hover,
.about__button:focus-visible {
  background: #d32f2f;
  transform: translateY(-2px);
}

.section--services {
  background:
    radial-gradient(circle at 12% 10%, rgba(251, 192, 45, 0.14), transparent 20%),
    linear-gradient(180deg, #fffaf3 0%, #fffdfb 100%);
}

.services__intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(251, 192, 45, 0.2);
  color: #8d5b00;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services__intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #151515;
}

.services__lead {
  margin: 24px 0 0;
  color: rgba(29, 29, 29, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 57, 53, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(33, 24, 18, 0.08);
}

.service-card__image {
  height: 260px;
  background: #f3ede7;
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  padding: 28px;
}

.service-card__content h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  color: #151515;
}

.service-card__subtitle {
  margin: 10px 0 16px;
  color: var(--brand-red);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-card__content p:not(.service-card__subtitle) {
  margin: 0;
  color: rgba(29, 29, 29, 0.8);
  line-height: 1.7;
}

.service-card__content p + p {
  margin-top: 14px;
}

.service-card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(29, 29, 29, 0.82);
  line-height: 1.55;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-red));
}

.services__note {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 4px solid var(--brand-red);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(33, 24, 18, 0.06);
}

.services__note p {
  margin: 0;
  color: rgba(29, 29, 29, 0.84);
  font-size: 1.02rem;
  line-height: 1.65;
}

.services__actions {
  margin-top: 20px;
}

.services__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--brand-red);
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(229, 57, 53, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.services__button:hover,
.services__button:focus-visible {
  background: #d32f2f;
  transform: translateY(-2px);
}

.section--references {
  background:
    radial-gradient(circle at 90% 14%, rgba(229, 57, 53, 0.08), transparent 18%),
    linear-gradient(180deg, #fffdfb 0%, #f7f1ea 100%);
}

.references__intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.references__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--brand-red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.references__intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #151515;
}

.references__lead {
  margin: 24px 0 0;
  color: rgba(29, 29, 29, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.reference-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(229, 57, 53, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 46px rgba(33, 24, 18, 0.08);
}

.reference-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(251, 192, 45, 0.22), rgba(229, 57, 53, 0.12));
  color: var(--brand-red);
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.08);
}

.reference-card h3 {
  margin: 0 0 12px;
  font-size: 1.36rem;
  line-height: 1.2;
  color: #151515;
}

.reference-card p {
  margin: 0;
  color: rgba(29, 29, 29, 0.8);
  line-height: 1.7;
}

.references__note {
  margin-top: 30px;
  padding: 24px 28px;
  border-left: 4px solid var(--brand-red);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(33, 24, 18, 0.06);
}

.references__note p {
  margin: 0;
  color: rgba(29, 29, 29, 0.84);
  font-size: 1.02rem;
  line-height: 1.65;
}

.references__actions {
  margin-top: 20px;
}

.references__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--brand-red);
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(229, 57, 53, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.references__button:hover,
.references__button:focus-visible {
  background: #d32f2f;
  transform: translateY(-2px);
}

.section--contact {
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 192, 45, 0.12), transparent 18%),
    linear-gradient(180deg, #fffdfb 0%, #f6f1ea 100%);
}

.contact__intro {
  max-width: 760px;
  margin-bottom: 40px;
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.12);
  color: var(--brand-red);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__intro h2 {
  margin: 0;
  color: #151515;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.contact__lead {
  margin: 18px 0 0;
  color: rgba(29, 29, 29, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 22px;
}

.contact-highlight,
.contact-card,
.contact-form {
  min-width: 0;
  border: 1px solid rgba(229, 57, 53, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(31, 40, 57, 0.08);
}

.contact-highlight {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(255, 253, 249, 0.94));
}

.contact-highlight h3,
.contact-card h3,
.contact-form h3 {
  margin: 0;
  color: #151515;
}

.contact-highlight h3 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.contact-highlight p,
.contact-card p {
  margin: 10px 0 0;
  color: rgba(29, 29, 29, 0.8);
  line-height: 1.7;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  padding: 28px;
}

.contact-card--wide {
  min-height: 220px;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 14px 28px rgba(229, 57, 53, 0.2);
}

.contact-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand-red);
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.contact-form {
  padding: 30px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 243, 0.96));
}

.contact-form__eyebrow {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form h3 {
  font-size: 2.2rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.contact-form__form {
  margin-top: 26px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.contact-form__field {
  display: grid;
  gap: 10px;
}

.contact-form__field span {
  color: #151515;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(229, 57, 53, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: #1d1d1d;
  font: inherit;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: rgba(229, 57, 53, 0.42);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.08);
}

.contact-form__field--message {
  margin-top: 16px;
}

.contact-form__field textarea {
  min-height: 188px;
  resize: vertical;
}

.contact-form__consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  color: rgba(29, 29, 29, 0.82);
  line-height: 1.6;
}

.contact-form__consent input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--brand-red);
}

.contact-form__consent a {
  color: var(--brand-red);
  font-weight: 700;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  margin-top: 24px;
  border: 0;
  border-radius: 16px;
  background: var(--brand-red);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(229, 57, 53, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:not(:disabled) {
  cursor: pointer;
}

.contact-form__submit:not(:disabled):hover,
.contact-form__submit:not(:disabled):focus-visible {
  background: #d32f2f;
  transform: translateY(-2px);
}

.contact-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.section--legal {
  min-height: auto;
  background:
    radial-gradient(circle at 10% 10%, rgba(251, 192, 45, 0.12), transparent 18%),
    radial-gradient(circle at 90% 16%, rgba(229, 57, 53, 0.08), transparent 18%),
    linear-gradient(180deg, #fffdfb 0%, #f7f1ea 100%);
}

.legal-page {
  display: grid;
  gap: 28px;
}

.legal-page__intro {
  max-width: 720px;
}

.legal-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 20px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.12);
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page__intro h1 {
  margin: 0;
  color: #151515;
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.legal-page__lead {
  margin: 20px 0 0;
  color: rgba(29, 29, 29, 0.8);
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-page__card {
  max-width: 860px;
  padding: 34px;
  border: 1px solid rgba(229, 57, 53, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 48px rgba(33, 24, 18, 0.08);
}

.legal-page__block + .legal-page__block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}

.legal-page__block h2 {
  margin: 0 0 12px;
  color: #151515;
  font-size: 1.28rem;
  line-height: 1.2;
}

.legal-page__block p {
  margin: 0;
  color: rgba(29, 29, 29, 0.82);
  line-height: 1.8;
}

.legal-page__block p + p {
  margin-top: 14px;
}

.legal-page__list {
  margin: 0;
  padding-left: 20px;
  color: rgba(29, 29, 29, 0.82);
  display: grid;
  gap: 10px;
  line-height: 1.7;
}

.legal-page__block a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
}

.legal-page__block a:hover,
.legal-page__block a:focus-visible {
  text-decoration: underline;
}

.legal-page__block--notice {
  padding: 20px 22px;
  border: 1px solid rgba(229, 57, 53, 0.12);
  border-radius: 18px;
  background: rgba(251, 192, 45, 0.12);
}

.site-footer {
  position: relative;
  background: var(--brand-red);
  color: rgba(255, 248, 241, 0.82);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 28px;
}

.site-footer__brand {
  max-width: 540px;
}

.site-footer__tagline {
  margin: 0;
  color: rgba(255, 248, 241, 0.88);
  font-size: 1.02rem;
  line-height: 1.75;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 36px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 700;
}

.site-footer__column p,
.site-footer__column a {
  margin: 0;
  color: rgba(255, 248, 241, 0.9);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 248, 241, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-red);
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 16px 30px rgba(125, 22, 19, 0.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  background: #fff4d6;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(125, 22, 19, 0.24);
}

@media (max-width: 1100px) {
  :root {
    --container-padding: 20px;
  }

  .topbar__inner {
    gap: 18px;
  }

  .topbar__info span:nth-child(2) {
    display: none;
  }

  .site-header__inner {
    gap: 24px;
  }

  .site-header__actions,
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 1rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 40px;
  }

  .hero__content h1 {
    max-width: 18ch;
    font-size: clamp(2.4rem, 4.2vw, 3.3rem);
  }

  .hero__visual {
    min-height: 480px;
  }

  .hero__visual-frame--primary {
    height: 416px;
  }

  .hero__visual-frame--secondary {
    height: 208px;
  }

  .about {
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: 48px;
  }

  .about__media {
    min-height: 500px;
  }

  .about__image--primary {
    height: 428px;
  }

  .about__image--secondary {
    height: 220px;
  }

  .contact__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-spacing: 84px;
    --header-height: 88px;
    --header-offset: calc(var(--header-height) + 16px);
  }

  .topbar__inner {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: flex-start;
    gap: 14px;
  }

  .topbar__info {
    gap: 12px;
    font-size: 0.9rem;
  }

  .site-header__inner {
    gap: 18px;
  }

  .site-logo img {
    width: 92px;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-menu-close {
    display: inline-flex;
  }

  .site-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms ease, visibility 280ms ease;
  }

  .site-menu-backdrop.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header__actions {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding:
      max(22px, env(safe-area-inset-top))
      22px
      max(32px, env(safe-area-inset-bottom))
      22px;
    gap: 0;
    background: #ffffff;
    border-left: 1px solid var(--border-soft);
    border-top: 3px solid var(--brand-red);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.14);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(110%);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 320ms ease;
  }

  .site-header__actions.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-menu-close {
    position: static;
    width: 42px;
    height: 42px;
    margin: 0 -4px 20px auto;
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--text-dark);
    font-size: 1.4rem;
    backdrop-filter: none;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .site-menu-close:hover,
  .site-menu-close:focus-visible {
    background: rgba(229, 57, 53, 0.08);
    color: var(--brand-red);
  }

  body.menu-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
  }

  .site-nav {
    width: 100%;
    margin-top: 4px;
    align-self: stretch;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 14px;
    border-bottom: 0;
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1.06rem;
    font-weight: 600;
    background: transparent;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--brand-red);
    border-color: transparent;
    background: rgba(229, 57, 53, 0.06);
  }

  .site-nav a.is-active {
    color: var(--brand-red);
    border-color: transparent;
    background: rgba(229, 57, 53, 0.08);
    font-weight: 700;
  }

  .site-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    align-self: stretch;
    padding: 0 20px;
    border-color: var(--brand-red);
    background: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.28);
    font-size: 1rem;
  }

  .site-cta:hover,
  .site-cta:focus-visible {
    background: #c62828;
    border-color: #c62828;
    color: #ffffff;
    transform: none;
  }

  .section {
    min-height: 34vh;
  }

  .section--hero {
    min-height: auto;
    padding-top: 24px;
  }

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

  .hero__content {
    max-width: 720px;
  }

  .hero__content h1 {
    max-width: 16ch;
  }

  .hero__visual {
    width: min(100%, 620px);
    min-height: 460px;
    justify-self: center;
  }

  .hero__visual::before {
    inset: 32px 18px 22px 18px;
    border-radius: 30px;
  }

  .hero__visual-frame {
    border-radius: 24px;
  }

  .hero__visual-frame--primary {
    width: 72%;
    height: 388px;
  }

  .hero__visual-frame--secondary {
    width: 44%;
    height: 196px;
    bottom: 24px;
    border-width: 5px;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 500px;
  }

  .hero__stat {
    min-width: 0;
  }

  .hero__stat span {
    max-width: none;
  }

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

  .about__content {
    order: 1;
    max-width: 720px;
  }

  .about__media {
    order: 2;
    width: min(100%, 620px);
    min-height: 460px;
    justify-self: center;
  }

  .about__media::before {
    inset: 28px 18px 24px 18px;
    border-radius: 30px;
  }

  .about__image {
    border-radius: 24px;
  }

  .about__image--primary {
    width: 72%;
    height: 392px;
  }

  .about__image--secondary {
    width: 44%;
    height: 204px;
    border-width: 5px;
  }

  .services__grid {
    gap: 24px;
  }

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

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact__details {
    gap: 20px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .site-footer__bottom {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-spacing: 76px;
  }

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

  .service-card__image {
    height: 240px;
  }

  .contact-form {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --section-spacing: 64px;
    --header-offset: calc(var(--header-height) + 16px);
  }

  .topbar__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
  }

  .topbar__info {
    gap: 0;
  }

  .topbar__info span:nth-child(1),
  .topbar__info span:nth-child(2) {
    display: none;
  }

  .topbar__info span:not(:last-child)::after {
    display: none;
  }

  .site-logo img {
    width: 76px;
  }

  .site-header__actions {
    width: min(320px, 90vw);
    padding:
      max(20px, env(safe-area-inset-top))
      18px
      max(28px, env(safe-area-inset-bottom))
      18px;
  }

  .site-nav {
    margin-top: 2px;
  }

  .site-nav a {
    min-height: 50px;
    font-size: 1rem;
  }

  .section {
    min-height: 30vh;
  }

  .hero__content h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .hero__lead,
  .hero__text,
  .about__lead,
  .about__text,
  .services__lead,
  .references__lead,
  .contact__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .hero__button {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    max-width: none;
    margin-top: 32px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__visual::before {
    inset: 24px 14px 18px 14px;
    border-radius: 24px;
  }

  .hero__visual-frame {
    border-radius: 22px;
  }

  .hero__visual-frame--primary {
    top: 10px;
    width: 72%;
    height: 330px;
  }

  .hero__visual-frame--secondary {
    width: 44%;
    height: 170px;
    bottom: 18px;
    border-width: 4px;
  }

  .about__media {
    min-height: 400px;
  }

  .about__media::before {
    inset: 24px 14px 18px 14px;
    border-radius: 24px;
  }

  .about__image {
    border-radius: 22px;
  }

  .about__image--primary {
    width: 74%;
    height: 326px;
  }

  .about__image--secondary {
    width: 46%;
    height: 176px;
    border-width: 4px;
  }

  .service-card__image {
    height: 220px;
  }

  .about__card,
  .services__note,
  .references__note,
  .contact-highlight,
  .contact-card,
  .contact-form {
    padding: 20px;
  }

  .service-card__content,
  .reference-card {
    padding: 22px 20px;
  }

  .service-card__content h3 {
    font-size: 1.38rem;
  }

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

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

  .contact__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-card--wide {
    min-height: 0;
  }

  .contact-form h3 {
    font-size: 1.9rem;
  }

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

  .legal-page {
    gap: 22px;
  }

  .legal-page__card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .legal-page__block + .legal-page__block {
    margin-top: 22px;
    padding-top: 22px;
  }

  .site-footer__inner {
    width: min(100% - 32px, 1180px);
    padding: 60px 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    padding-top: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 30px;
    padding-top: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --section-spacing: 56px;
    --header-height: 80px;
    --header-offset: calc(var(--header-height) + 16px);
  }

  .topbar__inner {
    gap: 10px;
  }

  .topbar__info {
    font-size: 0.86rem;
  }

  .topbar__whatsapp svg {
    width: 20px;
    height: 20px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .site-logo img {
    width: 68px;
  }

  .site-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-menu-close {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .site-header__actions {
    width: min(300px, 92vw);
    padding:
      max(18px, env(safe-area-inset-top))
      16px
      max(24px, env(safe-area-inset-bottom))
      16px;
  }

  .site-cta {
    min-height: 50px;
    margin-top: 20px;
  }

  .section--hero {
    padding-top: 16px;
  }

  .hero__eyebrow,
  .about__eyebrow,
  .services__eyebrow,
  .references__eyebrow {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .contact__eyebrow {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .legal-page__eyebrow {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .legal-page__intro h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .legal-page__card {
    padding: 20px 18px;
  }

  .hero__content h1 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__visual-frame--primary {
    height: 278px;
  }

  .hero__visual-frame--secondary {
    width: 46%;
    height: 142px;
  }

  .about__media {
    min-height: 340px;
  }

  .about__image--primary {
    height: 268px;
  }

  .about__image--secondary {
    height: 142px;
  }

  .about__card,
  .services__note,
  .references__note {
    padding: 18px;
  }

  .about__button,
  .services__button,
  .references__button {
    width: 100%;
  }

  .contact-form {
    padding: 20px 18px;
  }

  .contact-form h3 {
    font-size: 1.7rem;
  }

  .contact-form__field input,
  .contact-form__field textarea {
    padding: 14px 16px;
  }

  .contact-form__consent {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
  }

  .site-footer__inner {
    width: min(100% - 24px, 1180px);
  }

  .site-footer__bottom p {
    font-size: 0.9rem;
  }
}
