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

:root {
  --green: #2c6b36;
  --green-deep: #204f2b;
  --mint: #16bf73;
  --orange: #f08322;
  --blue: #30465a;
  --footer: #2f465d;
  --ink: #161616;
  --muted: #69716c;
  --line: #cdd5cf;
  --paper: #ffffff;
  --soft: #f4f6f3;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sen", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

p,
li {
  font-size: 16px;
  line-height: 1.6;
}

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

.section__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  background-image: url("../assets/images/hero/hero-garden-new.webp");
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .16) 62%, rgba(0, 0, 0, .1));
}

.topbar {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 64px;
}

.hero h1 {
  display: grid;
  gap: 4px;
  margin: 0 0 32px;
  max-width: 720px;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.hero-title__line {
  display: block;
}

.hero-title__line--one {
  color: #fff;
  font: inherit;
}

.hero-title__line--two {
  color: var(--orange);
  font: inherit;
}

.hero-title__line--three {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 2px solid currentColor;
  font-weight: 600;
  font-family: "Sen", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

.btn--outline-dark {
  color: #fff;
  border-color: var(--orange);
  background: rgba(0, 0, 0, .18);
}

.btn--outline-light {
  color: var(--orange);
  border-color: var(--orange);
}

.btn--solid {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
}

.intro-panels {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(920px, calc(100% - 48px));
  margin: -78px auto 0;
}

.intro-card {
  position: relative;
  min-height: 152px;
  padding: 32px 38px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
}

.intro-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.intro-card__world {
  position: absolute;
  top: 50%;
  width: 128px;
  height: 128px;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.intro-card--orange .intro-card__world {
  left: 18px;
}

.intro-card--green .intro-card__world {
  right: 18px;
}

.intro-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.intro-card span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.intro-card--orange {
  padding-left: 168px;
  color: #151515;
  background: var(--orange);
}

.intro-card--green {
  padding-right: 168px;
  background: #476644;
}

.section {
  position: relative;
  padding: 78px 0 84px;
}

h2 {
  margin: 0;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
}

h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 30px auto 28px;
}

.problem-card {
  display: grid;
  place-items: center;
  min-height: 142px;
  padding: 22px 14px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--orange);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.problem-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.problem-card p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.section-note {
  margin: 0 0 20px;
  text-align: center;
  font-size: 26px;
}

.problems .btn,
.solutions .btn {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

.why {
  padding: 100px 0;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, .66), rgba(0, 0, 0, .66)), url("../assets/images/sections/por-que-acrocarpus.webp");
  background-size: cover;
  background-position: center center;
}

.why__grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  align-items: center;
  gap: 90px;
  margin-top: 44px;
}

.why #why-title {
  color: var(--orange);
  text-align: center;
}

.why h3 {
  margin: 0 0 20px;
  max-width: 530px;
  font-size: 26px;
  line-height: 1.25;
}

.why p {
  max-width: 560px;
  margin: 0 0 16px;
  font-weight: 400;
}

.why__brand {
  text-align: right;
}

.why__brand img {
  width: 170px;
  margin: 0 0 8px auto;
}

.why__brand p {
  margin-left: auto;
}

.solutions {
  padding: 108px 0 96px;
  overflow: hidden;
}

.section-kicker {
  margin: 14px 0 44px;
  color: var(--orange);
  text-align: center;
  font-size: 26px;
  line-height: 1.6;
  font-weight: 400;
}

.solutions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 920px;
  margin: 0 auto 34px;
}

.solutions ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.solutions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--mint);
  border-radius: 50%;
  font-size: 15px;
}

.side-word {
  position: absolute;
  z-index: 0;
  color: rgba(48, 70, 90, .22);
  font-size: clamp(88px, 7.8vw, 116px);
  font-weight: 800;
  line-height: 1;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.side-word--left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.side-word--right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.side-word--left.side-word--reversed {
  transform: translateY(-50%);
}

.side-word--right.side-word--reversed {
  transform: translateY(-50%) rotate(180deg);
}

.services {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background-image: linear-gradient(rgba(255, 255, 255, .66), rgba(255, 255, 255, .72)), url("../assets/images/sections/por-que-confiar.webp");
  background-size: cover;
  background-position: center;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 44px;
}

#servicios-title,
#galeria-title,
#proceso-title {
  text-align: center;
}

.service-card {
  min-width: 0;
  color: #fff;
  text-align: center;
  background: var(--blue);
}

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

.service-card h3 {
  margin: 15px 8px 0;
  font-size: 24px;
  line-height: 1.05;
}

.service-card p {
  margin: 4px 10px 20px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.service-card--blue { background: #30465a; }
.service-card--green { background: #2c6b36; }
.service-card--mint { background: #07a862; }
.service-card--orange { background: #f08322; }
.service-card--slate { background: #4b6a67; }

.gallery-section {
  position: relative;
  padding: 104px 0 120px;
  overflow: hidden;
}

.gallery-wrap {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 34px;
  max-width: 1060px;
  margin: 0 auto;
}

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

.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.68 / 1;
  object-fit: cover;
}

.circle-btn {
  width: 32px;
  height: 32px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  color: var(--mint);
  background: #fff;
  font-size: 28px;
  line-height: 22px;
  cursor: pointer;
}

.process {
  position: relative;
  padding: 112px 0 124px;
  color: #fff;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .62)), url("../assets/images/sections/proceso-de-trabajo.webp");
  background-size: cover;
  background-position: center 62%;
}

.process h2 {
  color: #fff;
  text-align: center;
}

.process .section-kicker {
  margin-bottom: 54px;
}

.process .side-word {
  color: rgba(255, 255, 255, .58);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, 190px);
  justify-content: center;
  gap: 18px;
  justify-items: center;
}

.process-row article {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 190px;
  height: 190px;
  min-height: 190px;
  padding: 42px 28px 38px;
  text-align: center;
  border-radius: 50%;
  isolation: isolate;
  overflow: hidden;
}

.process-ring {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 190px;
  height: 190px;
  object-fit: contain;
  max-width: none;
}

.process-row strong {
  color: #fff;
  font-size: 17px;
  line-height: 1;
}

.process-row span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.12;
  font-weight: 800;
}

.contact {
  position: relative;
  padding: 112px 0 120px;
  overflow: hidden;
  background-image: url("../assets/images/contact/contact-garden.webp");
  background-size: cover;
  background-position: center;
}

.contact__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: start;
}

.contact h3 {
  text-align: left;
  font-size: 26px;
}

.contact p {
  max-width: 530px;
  font-weight: 400;
}

.quote-form {
  padding: 28px 32px 30px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #859084;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.quote-form p {
  margin: 0 0 18px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #5F7C78;
  border-radius: 0;
  padding: 9px 11px;
  color: var(--ink);
  background: #f7fbfb;
  font: 400 16px "Sen", Arial, Helvetica, sans-serif;
}

textarea {
  grid-row: span 3;
  min-height: 138px;
  resize: vertical;
}

.quote-form .btn {
  display: flex;
  margin: 18px 0 0 auto;
}

.quote-form .btn:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.form-message--success {
  color: #237143;
}

.form-message--error {
  color: #b63d2f;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr 1px .7fr 1px 1.6fr;
  gap: 34px;
  padding: 58px 0 46px;
  align-items: start;
}

.footer p,
.footer span {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.footer address {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.footer strong {
  color: #fff;
  font-size: 16px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .9);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.socials a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-contact {
  justify-items: start;
}

.footer-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
}

.footer-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-icon--location img {
  width: 24px;
  height: 30px;
}

.footer-separator {
  width: 3px;
  height: 128px;
  object-fit: fill;
  align-self: center;
}

.footer-locations {
  gap: 18px;
}

.footer-location {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.footer-location .footer-icon {
  margin-top: 1px;
}

.footer-location div {
  display: grid;
  gap: 4px;
}

.footer__bar {
  height: 48px;
  background: #6c907f;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  overflow: visible;
}

.whatsapp-float__bubble {
  position: absolute;
  right: 74px;
  bottom: 10px;
  width: max-content;
  max-width: 210px;
  padding: 9px 14px;
  color: #1d3b2a;
  background: #fff;
  border: 1px solid rgba(37, 211, 102, .45);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.whatsapp-float__bubble::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 14px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid rgba(37, 211, 102, .45);
  border-bottom: 1px solid rgba(37, 211, 102, .45);
  transform: rotate(-45deg);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, .82);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(0, 0, 0, .28);
  font-size: 34px;
  line-height: 38px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
  }

  .intro-panels,
  .why__grid,
  .solutions__grid,
  .contact__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-separator {
    display: none;
  }

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

  .service-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-row {
    grid-template-columns: repeat(2, 190px);
    max-width: 560px;
    margin: 0 auto;
  }

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

  .circle-btn {
    display: none;
  }

  .side-word {
    opacity: .45;
  }

  .whatsapp-float__bubble {
    display: none;
  }
}

@media (max-width: 620px) {
  .section__inner,
  .topbar,
  .hero__content,
  .intro-panels {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    width: 138px;
  }

  .hero {
    min-height: 620px;
    background-position: 58% top;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-title__line--three {
    font-size: 20px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 26px;
  }

  .hero__content {
    padding-top: 52px;
  }

  .intro-panels {
    margin-top: -54px;
  }

  .intro-card {
    padding: 24px;
    min-height: 150px;
  }

  .intro-card--orange {
    padding-left: 132px;
  }

  .intro-card--green {
    padding-right: 132px;
  }

  .intro-card__world {
    width: 104px;
    height: 104px;
  }

  .intro-card--orange .intro-card__world {
    left: 12px;
  }

  .intro-card--green .intro-card__world {
    right: 12px;
  }

  .problem-grid,
  .service-row,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: 190px;
  }

  .side-word {
    display: none;
  }

  .process-row article {
    margin: 0 auto;
  }
}
