:root {
  --green: #168a2f;
  --green-dark: #0f6b24;
  --orange: #f58212;
  --brown: #3b1d0f;
  --cream: #fff7ec;
  --cream-light: #fffaf3;
  --text: #2b1a10;
  --white: #ffffff;
  --gray: #f4f4f4;
  --line: rgba(59, 29, 15, 0.12);
  --shadow: 0 18px 45px rgba(59, 29, 15, 0.10);
  --soft-shadow: 0 10px 24px rgba(59, 29, 15, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--cream-light), #ffffff 34%, var(--cream-light));
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

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

.brand img {
  width: 185px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.98rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--brown);
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  gap: 9px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(22, 138, 47, 0.18);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.app-icon {
  display: block;
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  object-fit: contain;
}

.btn .app-icon {
  width: 1.55em;
  height: 1.55em;
  padding: 2px;
  background: var(--white);
  border-radius: 50%;
}

.app-icon-large {
  width: 30px;
  height: 30px;
}

.btn:hover {
  background: var(--green-dark);
  box-shadow: 0 13px 24px rgba(22, 138, 47, 0.25);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  box-shadow: 0 10px 18px rgba(245, 130, 18, 0.18);
}

.btn-orange:hover {
  background: #dd7209;
}

.btn-small {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.25rem;
}

.icon img {
  width: 22px;
  height: 22px;
}

.quick-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.icon.orange {
  background: var(--orange);
}

.hero {
  padding: 34px 0 26px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  overflow: hidden;
  min-height: 460px;
  background: var(--cream);
  border: 1px solid rgba(245, 130, 18, 0.10);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 68px);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.45rem, 6vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.hero p {
  max-width: 500px;
  margin: 22px 0 28px;
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.hero-media {
  align-self: stretch;
  display: grid;
  place-items: end;
  min-height: 340px;
}

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

.hero-note {
  display: flex;
  align-items: center;
  max-width: 360px;
  margin-top: 20px;
  gap: 12px;
  font-weight: 800;
}

.quick-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 390px;
  margin-top: 18px;
}

.quick-point {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 14px 16px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.22;
}

.quick-point > span:last-child {
  min-width: 0;
}

.quick-point small {
  display: block;
  margin-top: 4px;
  color: rgba(43, 26, 16, 0.72);
  font-size: 0.84rem;
  line-height: 1.25;
  font-weight: 700;
}

.section {
  padding: 44px 0;
}

.section-tight {
  padding-top: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 18px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
}

.section h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.lead {
  max-width: 690px;
  margin: 14px 0 0;
  color: rgba(43, 26, 16, 0.78);
  font-size: 1.08rem;
}

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

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

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: rgba(245, 130, 18, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-body {
  padding: 24px;
}

.card-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.image-focus-left {
  object-position: left center;
}

.service-card h3,
.info-card h3,
.product-card h3 {
  margin: 14px 0 8px;
  color: var(--brown);
  font-size: 1.3rem;
  line-height: 1.15;
}

.service-card p,
.info-card p,
.product-card p {
  margin: 0 0 16px;
  color: rgba(43, 26, 16, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.text-link:hover {
  color: var(--orange);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.about-social {
  margin-top: 22px;
}

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

.info-card {
  padding: 24px;
  min-height: 100%;
}

.info-card ul,
.benefit-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.info-card li,
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 11px 0;
}

.info-card li::before,
.benefit-list li::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--green);
  content: "✓";
  background: rgba(22, 138, 47, 0.11);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.map-image {
  width: 100%;
  margin: 14px 0;
  border-radius: var(--radius-sm);
}

.map-frame {
  display: block;
  width: 100%;
  height: 220px;
  margin: 14px 0;
  background: var(--gray);
  border: 0;
  border-radius: var(--radius-sm);
}

.breadcrumb {
  padding-top: 26px;
  font-size: 0.95rem;
  font-weight: 800;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(43, 26, 16, 0.72);
}

.breadcrumb li + li::before {
  color: var(--orange);
  content: "›";
}

.breadcrumb [aria-current="page"] {
  color: var(--green);
}

.benefits {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.benefit-box {
  padding: 28px;
  background: linear-gradient(135deg, #f3f9ef, #fffaf3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.wide-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.photo-carousel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.carousel-viewport {
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 260ms ease;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  min-height: 300px;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.carousel-slide figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(59, 29, 15, 0.78);
  border-radius: 999px;
  font-weight: 900;
}

.carousel-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-controls button:hover {
  color: var(--white);
  background: var(--green);
}

.carousel-dots {
  position: absolute;
  right: 16px;
  bottom: 58px;
  left: 16px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 22px;
  background: var(--orange);
  border-radius: 999px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card .card-body {
  display: grid;
  min-height: 190px;
}

.product-card .btn {
  align-self: end;
  justify-self: start;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  color: var(--brown);
  background: linear-gradient(135deg, #eef8e9, #fff7ec);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
}

.cta-band p {
  margin: 0;
}

.site-footer {
  margin-top: 38px;
  color: var(--white);
  background: var(--brown);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 130px;
  padding: 26px 0;
}

.footer-logo {
  width: 178px;
  height: 92px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  font-weight: 900;
}

.footer-social .app-icon {
  width: 100%;
  height: 100%;
}

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

.footer-copy {
  justify-self: end;
  text-align: right;
  color: rgba(255, 255, 255, 0.82);
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(22, 138, 47, 0.30);
  font-size: 1.9rem;
  transition: transform 180ms ease, background 180ms ease;
}

.float-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1060px) {
  .header-inner {
    min-height: 76px;
  }

  .site-nav {
    gap: 17px;
    font-size: 0.94rem;
  }

  .brand img {
    width: 164px;
    height: 62px;
  }

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

  .hero-media {
    min-height: 280px;
    order: -1;
  }

  .cards-grid.four,
  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-point {
    min-height: 0;
    padding: 13px 16px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 18px;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 10px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--cream-light);
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-panel {
    min-height: 0;
    border-radius: 22px;
  }

  .hero-content {
    padding: 28px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .cards-grid,
  .cards-grid.four,
  .info-grid,
  .about-grid,
  .benefits,
  .quick-points,
  .product-strip,
  .cta-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 142px;
    height: 56px;
  }

  .header-inner {
    gap: 10px;
  }

  .hero-media {
    min-height: 220px;
  }

  .hero-content {
    padding: 24px 20px 28px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

  .card-body,
  .info-card,
  .benefit-box,
  .cta-band {
    padding: 20px;
  }

  .photo-carousel,
  .carousel-viewport,
  .carousel-slide,
  .carousel-slide img {
    min-height: 260px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
