@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap");

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #b11319;
  --gray-50: #f8f8f8;
  --gray-100: #f3f3f3;
  --gray-200: #e6e6e6;
  --gray-300: #d1d1d1;
  --gray-500: #6c6c6c;
  --gray-700: #2f2f2f;
  --shadow-soft: 0 20px 45px rgba(13, 13, 13, 0.08);
  --shadow-card: 0 14px 32px rgba(13, 13, 13, 0.08);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
  --header-height: 86px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.wrapper {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-header {
  margin-bottom: 34px;
}

.section-header h1,
.section-header h2,
.page-intro h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-header p,
.page-intro p,
.text-muted {
  color: var(--gray-500);
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

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

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

.button-light:hover {
  background: var(--gray-100);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(13, 13, 13, 0.08);
}

.home-page .site-header {
  background: rgba(13, 13, 13, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.home-page .site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.98);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo img {
  height: 34px;
}

.nav-menu {
  margin-left: auto;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gray-700);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-menu a.is-active {
  color: var(--black);
}

.home-page .nav-menu a {
  color: rgba(255, 255, 255, 0.86);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-page .menu-toggle span {
  background: var(--white);
}

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

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

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

.header-cta {
  white-space: nowrap;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.52);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 900;
}

.mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.home-hero {
  background: var(--black);
  color: var(--white);
  padding: 34px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 0;
}

.hero-copy {
  padding: 52px 52px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  margin-bottom: 28px;
}

.hero-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.1), rgba(13, 13, 13, 0.35));
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-highlight {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

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

.icon-card {
  padding: 34px 28px;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
}

.icon-card:last-child {
  border-right: 0;
}

.icon-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 18px;
}

.icon-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.icon-card p {
  color: var(--gray-500);
}

.stats-band {
  background: var(--black);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 28px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 0;
}

.stat-item i {
  font-size: 1.8rem;
  color: var(--red);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.74);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: stretch;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

.image-panel,
.neutral-panel,
.map-card,
.contact-card,
.article-card,
.segment-card,
.service-row,
.info-card,
.mini-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.neutral-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #fafafa, #f1f1f1);
  text-align: center;
}

.neutral-panel p {
  max-width: 240px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
}

.segments-strip .icon-card-grid {
  grid-template-columns: repeat(6, 1fr);
}

.segments-strip .icon-card {
  text-align: center;
  padding: 28px 18px;
}

.segments-strip .icon-card i {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.segments-strip .icon-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 32px 0;
}

.cta-band .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 40px 0 26px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand img {
  height: 34px;
  margin-bottom: 18px;
}

.footer-column h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.footer-column nav,
.footer-column .footer-links {
  display: grid;
  gap: 10px;
}

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

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 980;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1f9d55;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp:hover {
  color: var(--white);
  background: #168447;
}

.floating-whatsapp i {
  font-size: 1.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  text-align: center;
}

.page-shell {
  padding: 42px 0 84px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
  padding-top: 12px;
}

.page-intro-visual {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.page-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.dark-grid .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.dark-card {
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-card:last-child {
  border-right: 0;
}

.dark-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.74);
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 30px;
  align-items: start;
}

.history-copy p + p {
  margin-top: 16px;
}

.timeline-panel {
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  box-shadow: var(--shadow-card);
}

.timeline-panel h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  margin-bottom: 18px;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding-left: 18px;
  border-left: 3px solid var(--red);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}

.timeline-item p {
  color: var(--gray-600);
}

.timeline-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.timeline-images img {
  width: 100%;
  height: clamp(150px, 18vw, 190px);
  object-fit: contain;
  background: var(--black);
  border-radius: var(--radius-sm);
}

.image-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.image-duo .image-panel img {
  aspect-ratio: 1.25 / 1;
}

.tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 28px;
}

.tab-chip {
  padding: 10px 18px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tab-chip:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.tab-chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.structure-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
}

.structure-main .image-panel img {
  aspect-ratio: 1.15 / 1;
}

.structure-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.mini-card {
  overflow: hidden;
}

.structure-card-button {
  width: 100%;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.structure-card-button:hover {
  transform: translateY(-4px);
  border-color: var(--gray-300);
  box-shadow: 0 18px 34px rgba(13, 13, 13, 0.11);
}

.structure-card-button:focus-visible,
.tab-chip:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.18);
  outline-offset: 2px;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.mini-card-body {
  padding: 18px 18px 22px;
}

.mini-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(250px, 0.95fr);
  gap: 24px;
  padding: 18px;
  align-items: center;
}

.service-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-row h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-row p {
  color: var(--gray-500);
}

.service-points {
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-points li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
}

.service-points li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
}

.segments-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.segment-card {
  padding: 28px 18px;
  text-align: center;
}

.segment-card i {
  color: var(--red);
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.segment-card h3 {
  font-size: 1.08rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.article-card-body {
  padding: 18px;
}

.article-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.article-card-body p {
  color: var(--gray-500);
  margin-bottom: 16px;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-weight: 700;
}

.article-link:hover {
  color: var(--red);
}

.placeholder-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  background: linear-gradient(135deg, #f8f8f8, #efefef);
  text-align: center;
  padding: 24px;
}

.placeholder-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.placeholder-card p {
  margin-top: 12px;
  color: var(--gray-500);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.contact-card {
  padding: 30px;
}

.contact-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  list-style: none;
  color: var(--gray-700);
}

.contact-list i {
  color: var(--red);
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-action-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-action-link:hover {
  color: var(--red);
}

.floating-whatsapp.contact-action-link:hover {
  color: var(--white);
}

.contact-highlight-button.contact-action-link:hover {
  color: var(--white);
}

.contact-cta-stack {
  margin-top: 22px;
}

.contact-highlight-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  font-size: 1rem;
}

.contact-highlight-button i {
  font-size: 1.2rem;
}

.contact-secondary-text {
  margin-top: 10px;
  color: var(--gray-500);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .field-span {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.08);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.g-recaptcha {
  max-width: 100%;
}

.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  background: #edf8ef;
  color: #1e6f34;
}

.form-feedback.is-error {
  background: #fff0f0;
  color: #8f181c;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.video-embed {
  overflow: hidden;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.info-card {
  padding: 28px;
}

.info-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.info-card li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
}

.info-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .nav-menu ul {
    gap: 18px;
  }

  .hero-grid,
  .page-intro,
  .structure-main,
  .contact-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .page-intro-visual {
    max-width: 620px;
  }

  .icon-card-grid,
  .stats-grid,
  .footer-grid,
  .dark-grid .wrapper,
  .segments-page-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-strip .icon-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-row .service-points,
  .service-row .button {
    grid-column: 2;
  }

  .split-panel,
  .history-layout,
  .structure-gallery,
  .image-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .home-page .site-header {
    background: rgba(13, 13, 13, 0.98);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(320px, 84vw);
    height: calc(100vh - var(--header-height));
    margin-left: 0;
    padding: 28px 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 950;
    overflow-y: auto;
    box-shadow: -14px 0 32px rgba(13, 13, 13, 0.12);
  }

  .home-page .nav-menu {
    background: #151515;
  }

  .nav-menu.is-active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .nav-menu a,
  .home-page .nav-menu a.is-active {
    color: var(--white);
  }

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

  .service-row .service-points,
  .service-row .button {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .wrapper {
    width: min(var(--content-width), calc(100% - 24px));
  }

  .section,
  .page-shell {
    padding: 64px 0;
  }

  .header-shell {
    min-height: var(--header-height);
  }

  .site-logo img {
    height: 30px;
  }

  .hero-copy {
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .icon-card-grid,
  .stats-grid,
  .footer-grid,
  .dark-grid .wrapper,
  .segments-page-grid,
  .blog-grid,
  .segments-strip .icon-card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .icon-card,
  .dark-card,
  .segment-card,
  .contact-card {
    border-right: 0;
  }

  .cta-band .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card,
  .info-card,
  .service-row,
  .article-card-body,
  .mini-card-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-grid {
    gap: 0;
  }

  .stat-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .map-card iframe {
    height: 300px;
  }

  .service-row h2 {
    font-size: 1.75rem;
  }

  .form-actions .button,
  .cta-band .button,
  .hero-copy .button {
    width: 100%;
  }

  .contact-list li {
    align-items: flex-start;
  }

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

@media (max-width: 540px) {
  .section,
  .page-shell {
    padding: 54px 0;
  }

  .hero-copy {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .hero-visual {
    min-height: 240px;
  }

  .section-header h1,
  .section-header h2,
  .page-intro h1,
  .contact-card h2,
  .info-card h2 {
    font-size: 2rem;
  }

  .icon-card,
  .contact-card,
  .info-card,
  .service-row,
  .dark-card {
    padding: 22px 18px;
  }

  .timeline-images {
    grid-template-columns: 1fr;
  }

  .timeline-images img {
    height: auto;
    background: transparent;
  }

  .stat-item {
    align-items: flex-start;
  }

  .stat-item strong {
    font-size: 1.65rem;
  }

  .service-row img {
    height: 190px;
  }

  .g-recaptcha {
    transform: scale(0.92);
    transform-origin: left top;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 380px) {
  .wrapper {
    width: min(var(--content-width), calc(100% - 16px));
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .site-logo img {
    height: 27px;
  }

  .g-recaptcha {
    transform: scale(0.84);
  }
}
