:root {
  --green: #17a673;
  --green-dark: #0c6f54;
  --green-soft: #e9f8f2;
  --blue: #104c8a;
  --blue-dark: #0a2d52;
  --ink: #10202f;
  --muted: #607080;
  --line: #dce8e4;
  --surface: #f6fbf8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 32, 47, 0.12);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(23, 166, 115, 0.25), transparent 32rem),
    linear-gradient(145deg, #f5fbf8 0%, #ffffff 58%, #eef8ff 100%);
}

.section-pad,
.nav,
.footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 88px 0;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(23, 166, 115, 0.3);
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 10px 15px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 64px;
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  padding: 13px 22px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(23, 166, 115, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-whatsapp {
  background: #25d366;
  color: var(--white);
}

.text-link {
  align-self: center;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(23, 166, 115, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 9px 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 12px solid var(--white);
  border-radius: 42px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(16, 32, 47, 0.18);
  padding: 16px 18px;
}

.hero-card-badge strong {
  color: var(--blue-dark);
  font-size: 1.25rem;
}

.hero-card-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: end;
}

.intro p:last-child {
  font-size: 1.12rem;
}

.features,
.price-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.features {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
}

.features article,
.price-card,
.steps-grid article,
.contact-form,
.faq details,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 32, 47, 0.06);
}

.features article {
  padding: 28px;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--green-soft);
  font-size: 1.4rem;
}

.section-surface {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(180deg, rgba(233, 248, 242, 0.8), rgba(255, 255, 255, 0.95)),
    var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.price-card:hover,
.price-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 32, 47, 0.1);
}

.price-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.price-card p {
  flex: 1;
}

.price-card strong {
  color: var(--green-dark);
  font-size: 2.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card strong span {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.price-card small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.price-card.highlighted {
  border-color: rgba(23, 166, 115, 0.4);
  background: var(--blue-dark);
}

.price-card.highlighted h3,
.price-card.highlighted strong {
  color: var(--white);
}

.price-card.highlighted p,
.price-card.highlighted small,
.price-card.highlighted strong span {
  color: rgba(255, 255, 255, 0.74);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid article {
  padding: 28px;
}

.steps-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.location,
.contact {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.details-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.details-list div {
  border-left: 4px solid var(--green);
  padding-left: 16px;
}

.details-list dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.details-list dd {
  margin: 0;
  color: var(--muted);
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
}

.contact {
  align-items: start;
}

.contact-form {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label,
.checkbox-row {
  color: var(--blue-dark);
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfefd;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 166, 115, 0.14);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 8px 0 20px;
  font-size: 0.93rem;
  line-height: 1.5;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-row a {
  color: var(--green-dark);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.form-feedback {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-feedback:empty {
  display: none;
}

.form-feedback--success {
  color: var(--green-dark);
  font-weight: 700;
}

.form-feedback--error {
  color: #b42318;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

.legal-header {
  background:
    radial-gradient(circle at top right, rgba(23, 166, 115, 0.2), transparent 28rem),
    var(--surface);
}

.legal-title {
  padding-top: 60px;
  padding-bottom: 72px;
}

.legal-title h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-main {
  display: grid;
  max-width: 860px;
  gap: 34px;
}

.legal-main section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.legal-main section:last-child {
  border-bottom: 0;
}

.legal-main a {
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .features,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section-pad {
    padding: 64px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 82px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav-links.is-open,
  .nav-links-static {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links-static {
    position: static;
    flex-direction: row;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero,
  .intro,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
    padding-top: 34px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section-pad,
  .nav,
  .footer {
    width: min(var(--max-width), calc(100% - 28px));
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    border-width: 8px;
    border-radius: 30px;
  }

  .hero-card-badge {
    right: 14px;
    bottom: 14px;
  }

  .price-grid,
  .steps-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .contact-form {
    padding: 22px;
  }

  .nav-links-static {
    display: none;
  }
}
