:root {
  --bg: #f7f7f1;
  --ink: #111816;
  --muted: #66706c;
  --green: #064b2f;
  --green-2: #0b7a47;
  --yellow: #ffc145;
  --red: #df1f2d;
  --line: rgba(17, 24, 22, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 75, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  padding: 12px clamp(16px, 5vw, 70px);
  background: rgba(247, 247, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 6px 10px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 75, 47, 0.1);
}

.brand img {
  width: 132px;
  height: auto;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 72px) clamp(16px, 7vw, 92px);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 193, 69, 0.42), transparent 26%),
    linear-gradient(135deg, #fbfbf5 0%, #f4f6eb 45%, #e7f1e8 100%);
}

.hero-content {
  min-width: 0;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 5.4vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

.title-mobile {
  display: none;
}

.subtitle {
  max-width: 640px;
  margin-bottom: 0;
  color: #3d4944;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.5;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 900;
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(6, 75, 47, 0.18);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 193, 69, 0.22);
}

.hero-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  grid-template-areas:
    "main kit"
    "panel panel";
  gap: 14px;
  align-self: center;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main {
  grid-area: main;
  aspect-ratio: 16 / 9;
}

.photo-small {
  grid-area: kit;
  display: grid;
  align-content: stretch;
  min-height: 100%;
}

.photo-small img {
  height: 100%;
}

.photo-small figcaption {
  display: grid;
  align-items: center;
  min-height: 60px;
  padding: 12px;
  color: var(--green);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

.action-panel {
  grid-area: panel;
  border-radius: 24px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.action-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.choice {
  display: grid;
  gap: 5px;
  min-height: 96px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fbfbf7;
}

.choice strong {
  color: var(--green);
  font-size: 1.08rem;
}

.choice span {
  color: var(--muted);
  font-weight: 700;
}

.choice:hover {
  border-color: rgba(11, 122, 71, 0.35);
  background: #eef8ef;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof article {
  padding: clamp(28px, 5vw, 54px) clamp(16px, 5vw, 48px);
  background: var(--white);
}

.proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.2rem;
}

.proof p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(54px, 8vw, 96px) clamp(16px, 7vw, 92px);
  background: #ffffff;
}

.reviews h2,
.map-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--green);
  font-size: clamp(1.9rem, 3.6vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

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

.review-cards article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: var(--bg);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

.review-head strong,
.review-head small {
  display: block;
}

.review-head strong {
  color: var(--ink);
  line-height: 1.2;
}

.review-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.stars {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.review-cards p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
  font-weight: 600;
}

.google-link {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--green);
  background: var(--yellow);
  font-weight: 900;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(54px, 8vw, 96px) 16px;
  text-align: center;
  color: var(--white);
  background: var(--green);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
  padding: clamp(48px, 7vw, 82px) clamp(16px, 7vw, 92px);
  background: var(--bg);
}

.map-section p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.map-section iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.final-cta p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.final-cta .btn-primary {
  color: var(--green);
  background: var(--yellow);
}

.sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.sticky a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  color: var(--white);
  background: #19b75b;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.sticky svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-side {
    max-width: 680px;
  }

  .action-panel {
    max-width: 640px;
  }

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

  .reviews,
  .map-section {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .google-link {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .header {
    min-height: 62px;
    padding: 8px 12px;
  }

  .header > * {
    min-width: 0;
  }

  .brand {
    padding: 5px 8px;
  }

  .brand img {
    width: 94px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 34px 18px 26px;
  }

  .hero-content,
  .hero-side {
    width: min(calc(100vw - 36px), 340px);
    max-width: min(calc(100vw - 36px), 340px);
    min-width: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    line-height: 1.25;
    letter-spacing: 0.06em;
  }

  h1 {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: clamp(2.1rem, 9vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  .subtitle {
    max-width: min(calc(100vw - 36px), 340px);
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .cta-row {
    display: grid;
    width: min(calc(100vw - 36px), 340px);
    max-width: min(calc(100vw - 36px), 340px);
  }

  .btn {
    max-width: 100%;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .trust-line {
    display: none;
  }

  .hero-side {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "panel"
      "kit";
    gap: 12px;
  }

  .photo-main {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .photo-small {
    grid-template-columns: 96px 1fr;
    min-height: 88px;
    border-radius: 18px;
  }

  .photo-small img {
    height: 88px;
  }

  .photo-small figcaption {
    padding: 12px;
    font-size: 0.9rem;
  }

  .action-panel {
    border-radius: 20px;
    padding: 16px;
  }

  .choice {
    min-height: auto;
    padding: 16px;
  }

  .sticky {
    right: 14px;
    bottom: 76px;
    left: auto;
  }

  .sticky a {
    width: 48px;
    height: 48px;
  }

  .sticky svg {
    width: 27px;
    height: 27px;
  }

  .reviews h2,
  .map-section h2,
  .final-cta h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.04;
  }

  .map-section iframe {
    min-height: 320px;
    border-radius: 20px;
  }
}
