:root {
  --verde-bosque: #12382E;
  --verde-vivo: #1F7A4D;
  --verde-vivo-hover: #18633E;
  --ambar: #C5922C;
  --crema: #F6F4EF;
  --blanco: #FFFFFF;
  --grafito: #1A2332;
  --gris: #5C6B7A;
  --header-height: 136px;
  --font: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: var(--font);
  color: var(--grafito);
  background: var(--crema);
}

h1,
h2,
p,
a,
button,
li {
  font-family: var(--font);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 8px 12px;
  background: var(--verde-bosque);
  color: var(--blanco);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: var(--blanco);
  border-bottom: 1px solid rgba(18, 56, 46, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1160px;
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 12px 24px;
}

.logo-slot {
  display: block;
  flex: 0 0 280px;
  width: 280px;
  height: 112px;
}

.logo-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--grafito);
  border-radius: 8px;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--verde-bosque);
  background: rgba(18, 56, 46, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--verde-vivo);
  color: var(--blanco);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--verde-vivo-hover);
}

.header-cta--menu {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--verde-bosque);
  border-radius: 2px;
}

@media (max-width: 900px) {
  body {
    padding-top: 88px;
  }

  .header-bar {
    position: relative;
    justify-content: flex-end;
    min-height: 88px;
    padding-right: 1.5cm;
    padding-left: 1.5cm;
  }

  .logo-slot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 64px;
  }

  .logo-slot img {
    object-position: center;
  }

  .header-cta--bar {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
    margin-left: 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 16px 1.5cm 28px;
    background: var(--blanco);
    border-bottom: 1px solid rgba(18, 56, 46, 0.08);
    box-shadow: 0 18px 32px rgba(18, 56, 46, 0.08);
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-list a {
    padding: 16px 0;
  }

  .header-cta--menu {
    display: flex;
    margin: 22px 0 0;
  }
}

.hero {
  background: var(--crema);
  padding: 36px 24px 64px;
}

.hero-stage {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-photo {
  width: min(72%, 820px);
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(18, 56, 46, 0.14);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 40%;
}

.hero-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(480px, 46%);
  padding: 40px 36px 36px;
  transform: translateY(-50%);
  background: var(--verde-bosque);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.28);
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--ambar);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 16px;
  color: var(--crema);
  font-family: var(--font);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--crema);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-cta {
  background: var(--crema);
  color: var(--verde-bosque);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--blanco);
}

@media (max-width: 900px) {
  .hero {
    padding: 16px 1cm 40px;
  }

  .hero-photo {
    width: 100%;
  }

  .hero-photo img {
    height: 280px;
    object-position: center 30%;
  }

  .hero-card {
    position: relative;
    top: auto;
    width: auto;
    margin: -56px 0 0;
    transform: none;
    padding: 28px 22px 24px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 17px;
  }
}

.terms {
  background: var(--blanco);
  padding: 72px 24px 104px;
}

.terms-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.terms-head {
  max-width: 34rem;
  margin-bottom: 52px;
}

.terms-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-head h2 {
  margin: 0 0 12px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.terms-head p {
  margin: 0;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.55;
}

.terms-head .terms-kicker {
  color: var(--ambar);
}

.terms-list {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 28px;
  align-items: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-list li {
  min-height: 240px;
  padding: 32px 28px;
  background: var(--crema);
  border-radius: 24px;
}

.terms-list li.terms-list__focus {
  min-height: 300px;
  background: var(--verde-bosque);
  color: var(--crema);
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.22);
  transform: translateY(-24px);
}

.terms-list span,
.terms-list em {
  display: block;
  font-style: normal;
}

.terms-list span {
  margin-bottom: 16px;
  color: var(--gris);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.terms-list li.terms-list__focus span {
  color: var(--ambar);
}

.terms-list strong {
  display: block;
  color: var(--verde-bosque);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.terms-list li.terms-list__focus strong {
  margin-top: 8px;
  color: var(--crema);
  font-size: 72px;
  line-height: 1;
}

.terms-list em {
  margin-top: 12px;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.4;
}

.terms-list li.terms-list__focus em {
  margin-top: 16px;
  color: var(--crema);
  font-size: 22px;
}

@media (max-width: 900px) {
  .terms {
    padding: 48px 1cm 56px;
  }

  .terms-head h2 {
    font-size: 32px;
  }

  .terms-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .terms-list li,
  .terms-list li.terms-list__focus {
    min-height: 0;
    transform: none;
    padding: 14px 8px 16px;
    border-radius: 16px;
    box-shadow: none;
  }

  .terms-list span {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.03em;
    line-height: 1.3;
  }

  .terms-list strong {
    font-size: 18px;
    line-height: 1.15;
  }

  .terms-list li.terms-list__focus strong {
    margin-top: 4px;
    font-size: 28px;
    color: var(--crema);
  }

  .terms-list em {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
  }

  .terms-list li.terms-list__focus em {
    margin-top: 8px;
    font-size: 13px;
    color: var(--crema);
  }
}

.about {
  background: var(--crema);
  padding: 88px 24px;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.about-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 18px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.6;
}

.about-copy .about-kicker {
  color: var(--ambar);
}

.about-panel {
  padding: 40px 36px;
  background: var(--verde-bosque);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.18);
}

.about-panel__lead {
  margin: 0 0 24px;
  color: var(--crema);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.about-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  padding: 14px 0;
  border-top: 1px solid rgba(246, 244, 239, 0.28);
  color: var(--crema);
  font-size: 18px;
}

.about-panel li:last-child {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .about {
    padding: 56px 1cm;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-copy h2 {
    font-size: 32px;
  }

  .about-copy p {
    font-size: 17px;
  }

  .about-panel {
    padding: 28px 22px;
  }

  .about-panel__lead {
    font-size: 28px;
  }
}

.quotes {
  background: var(--blanco);
  padding: 88px 24px;
}

.quotes-inner,
.faq-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.quotes-kicker,
.faq-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quotes-head h2,
.faq-head h2 {
  margin: 0 0 12px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.quotes-head p,
.faq-head p {
  margin: 0;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.55;
}

.quotes-head .quotes-kicker,
.faq-head .faq-kicker {
  color: var(--ambar);
}

.quotes-head,
.faq-head {
  max-width: 36rem;
  margin-bottom: 40px;
}

.quotes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quotes-list li {
  display: flex;
  min-height: 280px;
  padding: 28px 24px;
  background: var(--crema);
  border-radius: 24px;
}

.quotes-list li.quotes-list__focus {
  min-height: 320px;
  background: var(--verde-bosque);
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.2);
  transform: translateY(-20px);
}

.quotes-list blockquote {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0;
}

.quotes-list blockquote p {
  margin: 0;
  color: var(--grafito);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
}

.quotes-list footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 24px;
}

.quotes-list strong {
  color: var(--verde-bosque);
  font-size: 18px;
}

.quotes-list footer span {
  color: var(--gris);
  font-size: 14px;
}

.quotes-list li.quotes-list__focus p,
.quotes-list li.quotes-list__focus strong,
.quotes-list li.quotes-list__focus footer span {
  color: var(--crema);
}

.faq {
  background: var(--crema);
  padding: 88px 24px;
}

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

.faq-list details {
  background: var(--blanco);
  border-radius: 18px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--verde-bosque);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--ambar);
  content: "+";
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--grafito);
  font-size: 17px;
  line-height: 1.55;
}

.faq-list a {
  color: var(--verde-vivo);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .quotes,
  .faq {
    padding: 56px 1cm;
  }

  .quotes-head h2,
  .faq-head h2 {
    font-size: 32px;
  }

  .quotes-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quotes-list li,
  .quotes-list li.quotes-list__focus {
    min-height: 0;
    transform: none;
  }

  .faq-list summary {
    padding: 18px 16px;
    font-size: 17px;
  }

  .faq-list details p {
    padding: 0 16px 18px;
  }
}

.contact {
  background: var(--blanco);
  padding: 88px 24px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy h2 {
  margin: 0 0 16px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.contact-copy p {
  margin: 0 0 28px;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.6;
}

.contact-copy .contact-kicker {
  color: var(--ambar);
}

.contact-data {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.contact-data li {
  margin-bottom: 16px;
}

.contact-data span {
  display: block;
  margin-bottom: 4px;
  color: var(--gris);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-data strong,
.contact-data a {
  color: var(--verde-bosque);
  font-size: 18px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--crema);
  border-radius: 24px;
}

.contact-form__title {
  margin: 0;
  color: var(--verde-bosque);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form abbr {
  margin-left: 2px;
  color: var(--ambar);
  text-decoration: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--verde-bosque);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(18, 56, 46, 0.18);
  border-radius: 10px;
  background: var(--blanco);
  color: var(--grafito);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--verde-vivo);
  border-color: transparent;
}

.contact-form__note {
  margin: 0;
  color: var(--verde-bosque);
  font-size: 15px;
  line-height: 1.45;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form .contact-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--verde-vivo);
}

.contact-form .contact-consent label {
  display: block;
  color: var(--grafito);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-submit {
  justify-self: start;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--verde-vivo);
  color: var(--blanco);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--verde-vivo-hover);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .contact {
    padding: 56px 1cm;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-copy h2 {
    font-size: 32px;
  }

  .contact-copy p,
  .contact-data strong,
  .contact-data a {
    font-size: 17px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-form__title {
    display: none;
  }
}

.thanks {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 72px 24px;
  background: var(--crema);
}

.thanks-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 48px 40px 40px;
  background: var(--verde-bosque);
  border-radius: 28px;
  box-shadow: 0 28px 56px rgba(18, 56, 46, 0.28);
}

.thanks-mark {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  color: var(--ambar);
}

.thanks-mark circle,
.thanks-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-mark circle {
  stroke-width: 3.5;
}

.thanks-mark path {
  stroke-width: 4;
}

.thanks-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thanks-card h1 {
  margin: 0 0 16px;
  color: var(--crema);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.thanks-card p {
  margin: 0 0 28px;
  color: var(--crema);
  font-size: 18px;
  line-height: 1.6;
}

.thanks-card .thanks-kicker {
  color: var(--ambar);
}

.thanks-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.thanks-next li {
  padding: 16px 14px;
  background: rgba(246, 244, 239, 0.08);
  border-radius: 16px;
  color: var(--crema);
  font-size: 16px;
  line-height: 1.4;
}

.thanks-next span {
  display: block;
  margin-bottom: 8px;
  color: var(--ambar);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.thanks-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.thanks-card .header-cta {
  gap: 8px;
  background: var(--crema);
  color: var(--verde-bosque);
}

.thanks-card .header-cta:hover,
.thanks-card .header-cta:focus-visible {
  background: var(--blanco);
}

.thanks-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: transparent;
  color: var(--crema);
  font-size: 16px;
  font-weight: 700;
}

.thanks-back:hover,
.thanks-back:focus-visible {
  background: rgba(246, 244, 239, 0.12);
}

@media (max-width: 900px) {
  .thanks {
    min-height: auto;
    padding: 40px 1cm 56px;
  }

  .thanks-card {
    padding: 32px 1cm 28px;
  }

  .thanks-card h1 {
    font-size: 34px;
  }

  .thanks-card p {
    font-size: 17px;
  }

  .thanks-next {
    grid-template-columns: 1fr;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thanks-card .header-cta,
  .thanks-back {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .thanks-mark circle,
  .thanks-mark path {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: thanks-draw 0.7s ease forwards;
  }

  .thanks-mark path {
    animation-delay: 0.28s;
  }

  .thanks-next li {
    animation: thanks-step 0.5s ease both;
  }

  .thanks-next li:nth-child(1) {
    animation-delay: 0.25s;
  }

  .thanks-next li:nth-child(2) {
    animation-delay: 0.38s;
  }

  .thanks-next li:nth-child(3) {
    animation-delay: 0.51s;
  }
}

@keyframes thanks-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes thanks-step {
  from {
    opacity: 0;
    translate: 0 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.sim {
  background: var(--crema);
  padding: 88px 24px;
}

.sim-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sim-kicker,
.sim-example__kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sim-head h2 {
  margin: 0 0 12px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.sim-head p {
  margin: 0;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.55;
}

.sim-head .sim-kicker {
  color: var(--ambar);
}

.sim-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 36px;
}

.sim-controls {
  display: grid;
  gap: 28px;
  align-content: center;
  padding: 32px;
  background: var(--blanco);
  border-radius: 24px;
}

.sim-controls label {
  display: grid;
  gap: 10px;
  color: var(--verde-bosque);
  font-size: 16px;
  font-weight: 700;
}

.sim-controls label span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sim-controls small {
  color: var(--gris);
  font-size: 13px;
  font-weight: 400;
}

.sim-controls input[type="range"] {
  width: 100%;
  accent-color: var(--verde-vivo);
}

.sim-apply {
  justify-self: start;
}

.sim-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  background: var(--verde-bosque);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.2);
}

.sim-result p {
  margin: 0 0 8px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sim-result strong {
  color: var(--crema);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.sim-result ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sim-result li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(246, 244, 239, 0.28);
  color: var(--crema);
  font-size: 16px;
}

.sim-result b {
  font-weight: 700;
  text-align: right;
}

.sim-result .sim-result__note {
  margin: 18px 0 0;
  color: var(--crema);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.sim-example {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--blanco);
  border-radius: 24px;
}

.sim-example p {
  margin: 0 0 12px;
  color: var(--grafito);
  font-size: 17px;
  line-height: 1.55;
}

.sim-example strong {
  color: var(--verde-bosque);
}

.sim-example__note {
  margin-bottom: 0;
  color: var(--gris);
  font-size: 14px;
}

.sim-example .sim-example__kicker {
  color: var(--ambar);
}

@media (max-width: 900px) {
  .sim {
    padding: 56px 1cm;
  }

  .sim-head h2 {
    font-size: 32px;
  }

  .sim-panel {
    grid-template-columns: 1fr;
  }

  .sim-controls,
  .sim-result,
  .sim-example {
    padding: 22px 18px;
  }

  .sim-result strong {
    font-size: 40px;
  }
}

.reqs {
  background: var(--blanco);
  padding: 88px 24px 96px;
}

.reqs-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.reqs-head {
  max-width: 36rem;
  margin-bottom: 40px;
}

.reqs-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reqs-head h2 {
  margin: 0 0 12px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.reqs-head p {
  margin: 0;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.55;
}

.reqs-head .reqs-kicker {
  color: var(--ambar);
}

.reqs-head .reqs-note {
  color: var(--verde-bosque);
  font-weight: 700;
}

.reqs-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reqs-list > li {
  overflow: hidden;
  background: var(--crema);
  border-radius: 24px;
}

.reqs-list img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 20%;
}

.reqs-list div {
  padding: 22px 22px 26px;
}

.reqs-list h3 {
  margin: 0 0 14px;
  color: var(--verde-bosque);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.reqs-list ol {
  margin: 0;
  padding-left: 1.15em;
  color: var(--grafito);
  font-size: 16px;
  line-height: 1.45;
}

.reqs-list ol li {
  margin: 0 0 10px;
  padding: 0;
}

.reqs-list ol li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .reqs {
    padding: 56px 1cm;
  }

  .reqs-head h2 {
    font-size: 32px;
  }

  .reqs-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reqs-list ol {
    font-size: 16px;
  }

  .reqs-list img {
    height: 200px;
  }
}

.steps {
  background: var(--crema);
  padding: 88px 24px;
}

.steps-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.steps-head {
  max-width: 36rem;
  margin-bottom: 40px;
}

.steps-kicker {
  margin: 0 0 12px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-head h2 {
  margin: 0 0 12px;
  color: var(--verde-bosque);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

.steps-head p {
  margin: 0;
  color: var(--grafito);
  font-size: 18px;
  line-height: 1.55;
}

.steps-head .steps-kicker {
  color: var(--ambar);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps-list li {
  min-height: 250px;
  padding: 28px 22px;
  background: var(--blanco);
  border-radius: 24px;
}

.steps-list li.steps-list__focus {
  min-height: 290px;
  background: var(--verde-bosque);
  color: var(--crema);
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.2);
  transform: translateY(-20px);
}

.steps-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.steps-list h3 {
  margin: 0 0 10px;
  color: var(--verde-bosque);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.steps-list p {
  margin: 0;
  color: var(--grafito);
  font-size: 16px;
  line-height: 1.5;
}

.steps-list li.steps-list__focus h3,
.steps-list li.steps-list__focus p {
  color: var(--crema);
}

@media (max-width: 900px) {
  .steps {
    padding: 56px 1cm;
  }

  .steps-head h2 {
    font-size: 32px;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-list li,
  .steps-list li.steps-list__focus {
    min-height: 0;
    transform: none;
  }

  .steps-list h3 {
    font-size: 24px;
  }
}

.site-footer {
  background: var(--verde-bosque);
  color: var(--crema);
  padding: 64px 24px 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto 40px;
}

.footer-logo {
  display: block;
  width: 220px;
  height: 88px;
  padding: 8px 12px;
  object-fit: contain;
  background: var(--crema);
  border-radius: 16px;
}

.footer-brand p {
  max-width: 28rem;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.footer-label {
  margin: 0 0 14px;
  color: var(--ambar);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--crema);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ambar);
}

.footer-contact p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
}

.footer-contact .footer-label {
  margin-bottom: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 244, 239, 0.28);
  color: var(--crema);
  font-size: 14px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--crema);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--ambar);
}

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 1cm 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand a {
    display: flex;
    justify-content: center;
  }

  .footer-brand p,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    margin-left: 2cm;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .nav-list a,
  .header-cta,
  .contact-submit,
  .site-footer a,
  .thanks-back,
  .faq-list summary {
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .contact-form input,
  .contact-form textarea {
    transition: border-color 0.2s ease;
  }

  .hero-photo {
    animation: hero-photo-in 0.8s ease both;
  }

  .hero-card {
    animation: hero-card-in 0.75s ease 0.12s both;
  }

  .js .reveal {
    opacity: 0;
    translate: 0 14px;
    transition: opacity 0.6s ease, translate 0.6s ease;
  }

  .js .reveal.is-in {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes hero-photo-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    translate: 0 16px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (hover: hover) and (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .js .terms-list > li.reveal:hover,
  .js .steps-list > li.reveal:hover,
  .js .quotes-list > li.reveal:hover,
  .js .reqs-list > li.reveal:hover,
  .js .sim-result.reveal:hover,
  .js .sim-example.reveal:hover,
  .js .about-panel.reveal:hover {
    translate: 0 -6px;
  }
}

.wa-float {
  position: fixed;
  right: 1cm;
  bottom: 1cm;
  z-index: 30;
  display: block;
  width: 68px;
  height: 68px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 12px 28px rgba(18, 56, 46, 0.28);
}

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

.wa-float:hover,
.wa-float:focus-visible {
  background: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  .wa-float {
    animation: wa-beat 1.6s ease-in-out infinite;
  }
}

@keyframes wa-beat {
  0%,
  48%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.14);
  }

  24% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.08);
  }
}

.wa-popup,
.info-dialog {
  border: 0;
  color: var(--grafito);
  background: var(--crema);
  font-family: var(--font);
}

.wa-popup {
  position: fixed;
  right: 1cm;
  bottom: calc(1cm + 76px);
  left: auto;
  width: min(320px, calc(100vw - 2cm));
  margin: 0;
  padding: 22px 20px 20px;
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(18, 56, 46, 0.24);
}

.wa-popup h2,
.info-dialog h2 {
  margin: 0 0 10px;
  color: var(--verde-bosque);
  font-size: 26px;
  line-height: 1.2;
}

.wa-popup p,
.info-dialog p,
.info-dialog li {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
}

.wa-popup .popup-kicker,
.info-dialog .popup-kicker {
  margin: 0 0 8px;
  color: var(--ambar);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--verde-bosque);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.info-dialog {
  width: min(640px, calc(100vw - 2cm));
  max-height: calc(100vh - 2cm);
  margin: auto;
  padding: 32px 28px 24px;
  overflow: auto;
  border-radius: 24px;
}

.info-dialog ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.info-dialog::backdrop {
  background: rgba(18, 56, 46, 0.55);
}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .main-nav {
    display: block;
    visibility: hidden;
    opacity: 0;
    translate: 0 -8px;
    pointer-events: none;
    transition: opacity 0.25s ease, translate 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    translate: 0 0;
    pointer-events: auto;
  }
}

