:root {
  --color-primary: #1f9d74;
  --color-primary-dark: #127557;
  --color-secondary: #f2b84b;
  --color-accent: #2f6fbe;
  --color-ink: #16201c;
  --color-muted: #5b6b64;
  --color-border: #dbe6df;
  --color-soft: #f2f8f5;
  --color-card: #ffffff;
  --color-page: #fbfdfb;
  --color-footer: #10251d;
  --shadow-soft: 0 18px 45px rgba(24, 49, 39, 0.11);
  --radius: 8px;
  --container: 1160px;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-page);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.section-pad {
  padding: 76px 0;
}

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--color-ink);
  color: #fff;
  clip: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 253, 251, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.header-call {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--color-muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--color-soft);
  color: var(--color-primary-dark);
}

.header-call {
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(242, 248, 245, 0.96), rgba(242, 248, 245, 0.72)),
    url("images/slider1.jpg") center/cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 52px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 5vw, 4.45rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.14rem;
}

.hero-text,
.section-head p,
.sticky-title p,
.support-grid p,
.cta-inner p,
.faq-layout p,
.contact-grid p,
.site-footer p {
  color: var(--color-muted);
}

.hero-text {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover,
.header-call:hover {
  background: var(--color-primary-dark);
}

.btn-whatsapp {
  background: #e5f7ed;
  color: #126b3c;
  border-color: #bfe8cf;
}

.btn-light {
  background: #fff;
  color: var(--color-ink);
  border-color: var(--color-border);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  min-height: 500px;
}

.hero-media img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-main {
  height: 440px;
}

.hero-small {
  position: absolute;
  width: 46%;
  height: 168px;
  border: 6px solid #fff;
}

.hero-small-one {
  left: -34px;
  bottom: 22px;
}

.hero-small-two {
  right: 22px;
  bottom: -20px;
}

.service-strip {
  background: var(--color-primary-dark);
  color: #fff;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.strip-grid a {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 620px;
}

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

.service-card,
.reason-grid article,
.detail-list article,
address,
.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  height: 188px;
  object-fit: cover;
  background: var(--color-soft);
}

.service-card div {
  padding: 20px;
}

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

.service-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.featured-card {
  grid-column: span 2;
  box-shadow: var(--shadow-soft);
}

.secondary-service {
  border-color: #d9d1be;
  background: #fffdf7;
}

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

.split-layout,
.support-grid,
.faq-layout,
.contact-grid,
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.sticky-title {
  position: sticky;
  top: 104px;
}

.sticky-title .btn {
  margin-top: 18px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.detail-list article {
  padding: 20px;
}

.detail-list p,
.reason-grid p,
.faq-panel p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.image-pair img {
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-pair img:last-child {
  margin-top: 48px;
}

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

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

.reason-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--color-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-grid img {
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-soft);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6) {
  grid-column: span 2;
}

.cta-band {
  background: var(--color-footer);
  color: #fff;
}

.cta-band .eyebrow,
.cta-band p {
  color: #c8e8da;
}

.cta-inner {
  align-items: center;
}

.cta-actions {
  justify-content: flex-end;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 16px 50px 16px 18px;
  border: 0;
  background: #fff;
  color: var(--color-ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-primary-dark);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.contact-section {
  background: #fff;
}

.contact-methods {
  margin-top: 24px;
}

.contact-methods a {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--color-soft);
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 800;
}

address {
  margin: 0;
  padding: 26px;
  font-style: normal;
  box-shadow: var(--shadow-soft);
}

address strong,
address span {
  display: block;
}

address strong {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

address span {
  color: var(--color-muted);
}

.site-footer {
  padding: 34px 0;
  background: #0b1b15;
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #c7d7d0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.float-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  gap: 10px;
}

.float-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.float-call {
  background: var(--color-accent);
}

.float-whatsapp {
  background: var(--color-primary);
}

:focus-visible {
  outline: 3px solid rgba(47, 111, 190, 0.35);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero-grid,
  .split-layout,
  .support-grid,
  .faq-layout,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-main {
    height: 340px;
  }

  .hero-small {
    display: none;
  }

  .strip-grid,
  .card-grid,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    grid-column: span 1;
  }

  .sticky-title {
    position: static;
  }

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

@media (max-width: 680px) {
  .section-pad {
    padding: 54px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(242, 248, 245, 0.97), rgba(242, 248, 245, 0.86)),
      url("images/slider_2.jpg") center/cover;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-main {
    height: 260px;
  }

  .strip-grid,
  .card-grid,
  .detail-list,
  .reason-grid,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .strip-grid a,
  .strip-grid a:last-child {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .image-pair img,
  .image-pair img:last-child {
    height: 250px;
    margin: 0;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(n) {
    grid-column: auto;
    height: 170px;
  }

  .footer-grid {
    display: block;
  }

  .site-footer nav {
    margin-top: 18px;
  }

  .float-actions {
    left: 12px;
    right: 12px;
  }

  .float-actions a {
    flex: 1;
  }
}
