:root {
  --color-primary: #126b5f;
  --color-primary-dark: #083f38;
  --color-primary-light: #e7f5ef;
  --color-secondary: #f59e0b;
  --color-accent: #1f2937;
  --color-bg: #ffffff;
  --color-bg-soft: #f6faf8;
  --color-text: #172124;
  --color-muted: #60706d;
  --color-border: #dce8e3;
  --color-whatsapp: #25d366;
  --color-phone: #0d6efd;
  --shadow-soft: 0 14px 35px rgba(16, 35, 40, 0.1);
  --shadow-premium: 0 24px 70px rgba(8, 28, 32, 0.18);
  --shadow-card: 0 18px 45px rgba(16, 35, 40, 0.1);
  --radius: 8px;
  --container: 1120px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.two-column h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.2;
}

.section-heading p:last-child {
  margin: 12px 0 0;
  color: var(--color-muted);
}

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

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.logo__image {
  width: auto;
  height: 48px;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.footer-logo__image {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  justify-content: center;
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #273235;
  font-size: 0.87rem;
  font-weight: 800;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  padding-top: 58px;
  padding-bottom: 70px;
  background:
    linear-gradient(90deg, rgba(5, 29, 25, 0.96) 0%, rgba(8, 52, 45, 0.84) 45%, rgba(8, 52, 45, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 29, 25, 0.22), rgba(5, 29, 25, 0.22)),
    var(--hero-bg, url("img/WhatsApp Image 2026-07-22 at 21.31.40.jpeg")) center / cover no-repeat;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 56px;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.8vw, 4.25rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero__text {
  max-width: 670px;
  margin: 22px 0 0;
  color: #e4eeeb;
  font-size: 1.12rem;
}

.hero .section-kicker,
.cta-strip .section-kicker {
  color: #f8c566;
}

.hero__actions,
.cta-strip__actions,
.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #18a28f);
  box-shadow: 0 14px 34px rgba(18, 107, 95, 0.28);
}

.btn--secondary,
.btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn--whatsapp {
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.25);
}

.btn--call {
  color: #ffffff;
  background: var(--color-phone);
  box-shadow: 0 14px 34px rgba(13, 110, 253, 0.24);
}

.hero__panel {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 20, 24, 0.08), rgba(6, 20, 24, 0.82)),
    var(--hero-panel, url("img/WhatsApp Image 2026-07-22 at 21.31.48 (2).jpeg")) center / cover no-repeat;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.quote-card__list {
  display: grid;
  width: 100%;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #eef7f5;
  font-weight: 750;
}

.quote-card__list li {
  position: relative;
  padding-left: 24px;
}

.quote-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.content-box {
  color: var(--color-muted);
  font-size: 1.06rem;
}

.content-box p:first-child {
  margin-top: 0;
}

.service-grid,
.gallery-grid,
.contact-grid,
.process-grid,
.benefit-grid {
  display: grid;
  gap: 22px;
}

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

.service-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 22px;
}

.service-card,
.contact-card,
.process-grid article,
.benefit-grid div {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.92));
  box-shadow: var(--shadow-card);
}

.service-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-grid--compact .service-card {
  padding: 22px;
}

.service-grid--compact .service-card {
  padding-top: 132px;
}

.service-grid--compact .service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 106px;
  background: var(--service-image, linear-gradient(135deg, #dce8e3, #ffffff)) center / cover no-repeat;
}

.service-grid--compact .service-card:nth-child(1) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.49.jpeg");
}

.service-grid--compact .service-card:nth-child(2) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.49.jpeg");
}

.service-grid--compact .service-card:nth-child(3) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.43.jpeg");
}

.service-grid--compact .service-card:nth-child(4) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.45.jpeg");
}

.service-grid--compact .service-card:nth-child(5) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.48 (1).jpeg");
}

.service-grid--compact .service-card:nth-child(6) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.48.jpeg");
}

.service-grid--compact .service-card:nth-child(7) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.42.jpeg");
}

.service-grid--compact .service-card:nth-child(8) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.41.jpeg");
}

.service-grid--compact .service-card:nth-child(9) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.39.jpeg");
}

.service-grid--compact .service-card:nth-child(10) {
  --service-image: url("img/WhatsApp Image 2026-07-22 at 21.31.44.jpeg");
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(245, 158, 11, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(18, 107, 95, 0.28);
  box-shadow: 0 24px 60px rgba(16, 35, 40, 0.14);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #18a28f);
  box-shadow: 0 14px 30px rgba(18, 107, 95, 0.24);
}

.service-card__icon svg {
  width: 29px;
  height: 29px;
}

.service-card h3,
.contact-card h3,
.process-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.13rem;
  line-height: 1.25;
}

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

.service-card--image {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: #ffffff;
}

.service-card--image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 22, 0.08), rgba(4, 18, 22, 0.88));
}

.service-card--image div {
  z-index: 2;
  padding: 28px;
}

.service-card--image p {
  color: #e8f2ef;
}

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

.process-grid article {
  padding: 24px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  font-weight: 900;
}

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

.benefit-grid div {
  position: relative;
  padding: 20px 20px 20px 48px;
  color: var(--color-accent);
  font-weight: 800;
}

.benefit-grid div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 240px;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-card);
}

.gallery-item button {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 36%, rgba(4, 18, 22, 0.86) 100%);
  opacity: 0.9;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(4, 18, 22, 0.88), transparent);
  font-size: 1rem;
  font-weight: 850;
  text-align: left;
}

.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.06);
}

.gallery-item--extra {
  display: none;
}

.gallery-grid.is-expanded .gallery-item--extra {
  display: block;
}

.gallery-actions {
  justify-content: center;
}

.cta-strip {
  padding: 72px 0;
  background: linear-gradient(135deg, #092d29, #123f37 58%, #1f2937);
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(16px);
}

.cta-strip h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.16;
}

.cta-strip p:last-child {
  margin: 12px 0 0;
  max-width: 620px;
  color: #d8e3e0;
}

.cta-strip__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.contact-card {
  padding: 30px;
}

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

.contact-list li {
  display: grid;
  gap: 4px;
  color: var(--color-muted);
}

.contact-list strong {
  color: var(--color-text);
}

.contact-list a {
  color: var(--color-primary-dark);
  font-weight: 850;
}

.map-wrapper {
  min-height: 340px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 28, 32, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.floating-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-btn--whatsapp {
  background: var(--color-whatsapp);
}

.floating-btn--phone {
  background: var(--color-phone);
}

.floating-btn--top {
  background: var(--color-accent);
  opacity: 0;
  visibility: hidden;
}

.floating-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(2, 10, 12, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  width: auto;
  max-width: min(100%, 1100px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
}

.lightbox p {
  margin: 14px 0 0;
  color: #ffffff;
  font-weight: 850;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.site-footer {
  padding: 54px 0 26px;
  color: #ffffff;
  background: #102328;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.7fr) minmax(220px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.footer-brand p,
.footer-column ul,
.footer-bottom p {
  margin: 0;
}

.footer-logo {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.footer-brand p,
.footer-column span {
  max-width: 410px;
  color: #c9d7d3;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: #c9d7d3;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1080px) {
  .service-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }

  .hero__grid,
  .two-column,
  .contact-grid,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }

  .cta-strip__actions {
    justify-content: flex-start;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

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

  .logo__image {
    height: 42px;
    max-width: 190px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__panel,
  .contact-card {
    padding: 22px;
  }

  .hero__actions,
  .cta-strip__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .service-grid--compact,
  .gallery-grid,
  .process-grid,
  .benefit-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-card--image {
    min-height: 290px;
  }

  .cta-strip {
    padding: 56px 0;
  }

  .cta-strip__inner {
    padding: 24px;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 190px;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 28px;
    padding-top: 18px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 9px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .lightbox {
    padding: 16px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .logo__image {
    height: 38px;
    max-width: 168px;
  }
}
