:root {
  --bg: #f5ede4;
  --sand: #ecded1;
  --light: #f7f7f5;
  --grey: #e9e8e6;
  --text: #242424;
  --muted: #767676;
  --orange: #f26e21;
  --yellow: #f7c400;
  --green: #c4cea0;
  --dark: #2c2f36;
  --white: #ffffff;
  --border: rgba(36, 36, 36, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.section {
  padding: 5.5rem 0;
}

.section--grey {
  background: var(--grey);
}

.section--sand {
  background: var(--sand);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--orange {
  color: var(--orange);
}

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

h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  color: var(--text);
}

.hero {
  overflow: hidden;
  padding: 3rem 0 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  min-height: 88vh;
}

.hero__lead {
  max-width: 34rem;
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero__actions,
.btn {
  display: inline-flex;
  align-items: center;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(36, 36, 36, 0.18);
}

.btn--block {
  width: 100%;
  margin-top: 1.5rem;
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
}

.hero__visual {
  position: relative;
  min-height: 720px;
}

.shape,
.wave {
  position: absolute;
}

.shape--green {
  inset: 8% 18% 18% 4%;
  background: var(--green);
  border-radius: 42% 58% 42% 58% / 42% 41% 59% 58%;
}

.shape--yellow {
  inset: 0 0 12% 18%;
  background: var(--yellow);
  border-radius: 34% 66% 46% 54% / 41% 36% 64% 59%;
}

.wave {
  pointer-events: none;
}

.wave::before,
.wave::after {
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-top-color: var(--white);
  border-radius: 50%;
  width: 320px;
  height: 120px;
}

.wave--left {
  left: 2%;
  top: 43%;
  width: 340px;
  height: 160px;
}

.wave--left::before {
  transform: rotate(-18deg);
}

.wave--left::after {
  transform: rotate(-18deg) translate(38px, 42px);
}

.wave--right {
  right: -4%;
  top: 26%;
  width: 360px;
  height: 170px;
}

.wave--right::before {
  transform: rotate(12deg);
}

.wave--right::after {
  transform: rotate(12deg) translate(42px, 40px);
}

.hero__image {
  position: absolute;
  right: 2%;
  bottom: -2%;
  width: min(100%, 640px);
  max-height: 95%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.12));
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.split__content p {
  max-width: 43rem;
}

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

.blob {
  position: absolute;
  border-radius: 40% 60% 45% 55% / 44% 40% 60% 56%;
}

.blob--green {
  inset: 20% 20% 6% 0;
  background: var(--green);
}

.blob--yellow {
  inset: 0 0 0 24%;
  background: var(--yellow);
}

.lines,
.lines::before,
.lines::after {
  position: absolute;
  content: "";
  border-right: 4px solid var(--white);
  border-radius: 50%;
}

.lines {
  right: 7%;
  bottom: 5%;
  width: 210px;
  height: 390px;
}

.lines::before {
  inset: -12px 18px 12px -18px;
}

.lines::after {
  inset: 18px 36px 36px -36px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin: 2rem 0 2.5rem;
}

.benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(36, 36, 36, 0.08);
  border-radius: 20px;
  padding: 1.4rem;
}

.benefit__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--orange);
  font-size: 1.35rem;
}

.benefit h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.section__intro {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section__intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
}

.card__badge {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  color: var(--text);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.card__header {
  padding: 2.2rem 1.5rem 1.75rem;
  background: rgba(0, 0, 0, 0.04);
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card--featured .card__header {
  background: var(--yellow);
  padding-top: 3.5rem;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.6rem 1.6rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.price {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price span {
  font-size: 1.6rem;
  font-weight: 400;
}

.price__meta {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 700;
}

.pricing-note {
  margin: 1.4rem auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--muted);
}

.footer {
  padding: 1.8rem 0 2.2rem;
  background: #f0e5d7;
  border-top: 1px solid rgba(36, 36, 36, 0.08);
}

.footer__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer p,
.footer a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 26, 0.5);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: min(calc(100% - 1.5rem), 760px);
  margin: 4vh auto;
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.2);
  max-height: 92vh;
  overflow: auto;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}

.modal__close span {
  display: block;
  transform: translateY(-1px);
}

.modal__intro {
  color: var(--muted);
  max-width: 40rem;
}

.form {
  margin-top: 1.5rem;
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #faf9f7;
  color: var(--text);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(242, 110, 33, 0.18);
  border-color: var(--orange);
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

@media (max-width: 1100px) {
  .hero__grid,
  .split,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__visual {
    min-height: 620px;
    order: -1;
  }

  .split__art {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero__lead {
    font-size: 1.15rem;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero__visual {
    min-height: 440px;
  }

  .shape--green {
    inset: 9% 18% 18% 2%;
  }

  .shape--yellow {
    inset: 0 0 8% 16%;
  }

  .wave {
    display: none;
  }

  .hero__image {
    width: 100%;
    right: 0;
    bottom: 0;
    max-height: 100%;
  }

  .benefits,
  .form__grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    grid-template-columns: 44px 1fr;
    padding: 1.1rem;
  }

  .benefit__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .card__header {
    font-size: 1.2rem;
    padding: 1.35rem 1.25rem;
  }

  .card--featured .card__header {
    padding-top: 3rem;
  }

  .card__body {
    padding: 1.6rem 1.25rem 1.25rem;
  }

  .card__badge {
    top: -1rem;
    font-size: 0.95rem;
    padding: 0.45rem 1rem;
  }

  .pricing-note {
    text-align: left;
  }

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

  .modal__dialog {
    padding: 1.25rem;
    margin: 2vh auto;
    border-radius: 22px;
  }

  .form__actions {
    flex-direction: column;
  }

  .form__actions .btn {
    width: 100%;
  }
}


.modal__close {
  color: var(--dark);
}

@media (max-width: 767px) {
  .hero__actions {
    display: none;
  }

  .footer__inner {
    justify-content: center;
    text-align: center;
  }
}
