:root {
  --primary: #006f3a;
  --primary-dark: #003d26;
  --primary-deep: #001f16;
  --accent: #f36b21;
  --accent-dark: #c64710;
  --ink: #13251b;
  --glass: rgba(255, 255, 255, 0.76);
  --line: rgba(0, 111, 58, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.site-bg {
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 111, 58, 0.12), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(243, 107, 33, 0.11), transparent 26%),
    linear-gradient(135deg, rgba(0, 111, 58, 0.06), transparent 34%),
    linear-gradient(315deg, rgba(243, 107, 33, 0.06), transparent 36%),
    #f5f8f3;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(243, 107, 33, 0.28);
}

.text-primary-DEFAULT,
.text-primary {
  color: var(--primary);
}

.glass-nav {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(0, 61, 38, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
}

#siteHeader.is-scrolled .glass-nav,
#siteHeader.is-scrolled .glass-icon {
  background: rgba(255, 255, 255, 0.92);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 72% 22%, #fff 0 8%, transparent 9%), linear-gradient(150deg, #f9a13a 0 35%, #f36b21 36% 45%, #006f3a 46% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.52), 0 10px 24px rgba(0, 61, 38, 0.22);
}

.brand-mark::before {
  position: absolute;
  inset: 11px -6px auto -8px;
  height: 9px;
  content: "";
  transform: rotate(-19deg);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-mark::after {
  position: absolute;
  left: 11px;
  top: 18px;
  width: 17px;
  height: 7px;
  content: "";
  transform: rotate(130deg);
  border-radius: 999px 999px 0 999px;
  background: rgba(255, 255, 255, 0.94);
}

.nav-link {
  border-radius: 8px;
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(19, 37, 27, 0.75);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(0, 111, 58, 0.1);
  color: var(--primary);
  transform: translateY(-1px);
  outline: none;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #0b9f5b);
  padding: 0.9rem 1.15rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 18px 38px rgba(0, 61, 38, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(0, 61, 38, 0.32);
}

.glass-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(0, 61, 38, 0.13);
  backdrop-filter: blur(18px);
}

.glass-icon span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-link {
  display: block;
  border-radius: 8px;
  padding: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.mobile-link:hover {
  background: rgba(0, 111, 58, 0.08);
  color: var(--primary);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 28, 18, 0.9), rgba(0, 61, 38, 0.64) 45%, rgba(243, 107, 33, 0.12)), linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.1));
}

.hero-frame::before {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent);
}

.hero-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: rgba(243, 107, 33, 0.14);
  padding: 0.5rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.hero-pill {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.17);
  color: #ffd2a2;
  backdrop-filter: blur(12px);
}

.hero-cta,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  padding: 0.95rem 1.4rem;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta {
  background: linear-gradient(135deg, var(--accent), #ff8a3d);
  color: white;
  box-shadow: 0 26px 56px rgba(102, 35, 4, 0.34);
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(14px);
}

.hero-cta:hover,
.hero-secondary:hover {
  transform: translateY(-2px);
}

.hero-cta:hover {
  background: var(--accent-dark);
}

.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-metrics {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-metrics div,
.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 950;
  color: white;
}

.hero-metrics span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.hero-card {
  display: none;
  overflow: hidden;
  padding: 0.65rem;
  color: white;
}

.hero-card img {
  width: 100%;
  height: 260px;
  border-radius: 6px;
  object-fit: cover;
}

.hero-card div {
  padding: 1.2rem 1rem 1rem;
}

.hero-card p {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffd2a2;
}

.hero-card h2 {
  margin-top: 0.45rem;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.15;
}

.hero-card ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card li::before {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 999px;
  content: "";
  background: var(--accent);
}

.brand-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(0, 61, 38, 0.08);
  backdrop-filter: blur(18px);
}

.brand-strip-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 2rem;
  padding: 1rem;
  animation: stripMove 24s linear infinite;
}

.brand-strip span {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
}

.brand-strip span::after {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--accent);
}

.section-shell {
  padding: 5.8rem 1rem;
}

.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 950;
  line-height: 1.05;
  color: var(--primary-dark);
}

.section-heading p:not(.section-kicker) {
  margin: 1rem auto 0;
  max-width: 760px;
  color: #53635b;
  font-size: 1.08rem;
  line-height: 1.75;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
  box-shadow: 0 24px 80px rgba(0, 61, 38, 0.12);
  backdrop-filter: blur(20px);
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 61, 38, 0.16);
}

.about-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.about-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 310px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(0, 61, 38, 0.18);
  backdrop-filter: blur(18px);
}

.about-badge strong {
  display: block;
  font-weight: 950;
  color: var(--primary-dark);
}

.about-badge span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  color: #53635b;
}

.proof-section {
  padding: 0 1rem 5.8rem;
}

.proof-card {
  min-height: 230px;
  border: 1px solid rgba(0, 111, 58, 0.1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  padding: 1.5rem;
  box-shadow: 0 24px 70px rgba(0, 61, 38, 0.08);
  backdrop-filter: blur(18px);
}

.proof-card::after {
  position: absolute;
  inset: auto -24px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
  background: rgba(243, 107, 33, 0.1);
}

.proof-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary);
  font-size: 0.85rem;
  font-weight: 950;
  color: white;
}

.proof-card h3 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 950;
  color: var(--primary-dark);
}

.proof-card p {
  margin-top: 0.7rem;
  line-height: 1.7;
  color: #53635b;
}

.service-card {
  min-height: 390px;
  border: 1px solid rgba(0, 111, 58, 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 255, 247, 0.66));
  padding: 2.4rem 1.6rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 61, 38, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(243, 107, 33, 0.35);
  box-shadow: 0 34px 90px rgba(0, 61, 38, 0.16);
}

.service-card h3 {
  margin-top: 0.35rem;
  font-size: 1.3rem;
  font-weight: 950;
  color: var(--primary-dark);
}

.service-card p {
  margin-top: 0.9rem;
  color: #53635b;
  line-height: 1.75;
}

.service-card small {
  display: block;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 111, 58, 0.12);
  padding-top: 1rem;
  color: #6a7a71;
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  margin-top: 1.2rem;
  border-bottom: 2px solid rgba(243, 107, 33, 0.35);
  padding-bottom: 0.2rem;
  font-size: 0.9rem;
  font-weight: 950;
  color: var(--primary);
}

.service-card a:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  height: 290px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 55px rgba(0, 61, 38, 0.14);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.018);
  filter: saturate(1.08);
}

.gallery-note {
  max-width: 720px;
  margin: 2rem auto 0;
  border: 1px solid rgba(0, 111, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 700;
  color: #53635b;
  box-shadow: 0 18px 50px rgba(0, 61, 38, 0.08);
  backdrop-filter: blur(16px);
}

.method-section {
  padding: 7rem 1rem;
  background: linear-gradient(135deg, #092217, #006f3a 56%, #0c3b27);
  color: white;
}

.method-copy .section-title,
.method-copy p {
  color: white;
}

.method-copy > p:not(.section-kicker) {
  margin-top: 1.4rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.inline-premium {
  display: inline-flex;
  margin-top: 2rem;
  border-radius: 8px;
  background: white;
  padding: 1rem 1.35rem;
  font-weight: 950;
  color: var(--primary-dark);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.inline-premium:hover {
  transform: translateY(-2px);
  background: #fff8ed;
}

.method-grid {
  display: grid;
  gap: 1rem;
}

.method-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.method-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  font-weight: 950;
  color: white;
}

.method-card h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 950;
}

.method-card p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.performance-section {
  padding: 7rem 1rem 0;
}

.performance-section > div {
  border-radius: 8px;
  background: var(--primary-deep);
  box-shadow: 0 30px 90px rgba(0, 61, 38, 0.2);
}

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

.performance-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem);
  color: white;
}

.performance-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 950;
  line-height: 1.04;
}

.performance-copy p:not(.section-kicker) {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
}

.performance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.performance-list span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.82);
}

.glass-contact {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  backdrop-filter: blur(18px);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
}

.contact-list div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.9rem 1rem;
}

.contact-list dt {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.contact-list dd {
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
  font-weight: 800;
  color: white;
}

.contact-list a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

.route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.95rem 1.25rem;
  font-weight: 950;
  color: white;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.route-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.map-wrap {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.modal-card {
  border-radius: 8px;
}

.close-button {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 8px;
  background: rgba(0, 111, 58, 0.1);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  transition: background 0.2s ease, transform 0.2s ease;
}

.close-button:hover {
  transform: rotate(4deg);
  background: rgba(243, 107, 33, 0.14);
  color: var(--accent-dark);
}

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

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

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 2;
    height: 596px;
  }
}

@media (min-width: 1024px) {
  .section-shell {
    padding: 7rem 1.5rem;
  }

  .hero-card {
    display: block;
  }

  .proof-section {
    padding: 0 1.5rem 7rem;
  }

  .glass-contact,
  .map-wrap {
    height: 100%;
  }

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

@media (max-width: 640px) {
  .section-shell {
    padding: 4.4rem 1rem;
  }

  .hero-section {
    min-height: 94vh;
  }

  .hero-image {
    object-position: center;
  }

  .gallery-item,
  .gallery-item.tall {
    height: 260px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .about-media img {
    min-height: 380px;
  }

  .about-badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .method-section,
  .performance-section {
    padding: 4.4rem 1rem;
  }

  .performance-image img {
    min-height: 340px;
  }
}

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

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