* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6f4ef;
  color: #1d2520;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1152px;
  padding: 1rem 1.25rem;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.logo-box {
  align-items: center;
  background: white;
  border-radius: 0.6rem;
  box-shadow: 0 10px 22px rgba(24, 33, 28, 0.12);
  display: flex;
  height: 4rem;
  justify-content: center;
  padding: 0.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  width: 5rem;
}

.logo-box:hover {
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.16);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  color: #425048;
}

.nav-call,
.button,
.contact-actions a {
  align-items: center;
  border-radius: 0.45rem;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.45rem;
}

.nav-call,
.button.primary {
  background: #1f6f54;
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 37, 32, 0.2);
}

.hero {
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-photo {
  animation: hero-drift 18s ease-in-out infinite alternate;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, #f6f4ef 0%, rgba(246, 244, 239, 0.86) 52%, rgba(246, 244, 239, 0.18) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-content: center;
  display: grid;
  margin: 0 auto;
  max-width: 1152px;
  min-height: 720px;
  padding: 4rem 1.25rem;
  position: relative;
}

.hero-content > * {
  max-width: 42rem;
}

.eyebrow {
  color: #1f6f54;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  color: #18211c;
  font-size: clamp(2.5rem, 7vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.section h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.hero-copy,
.section p,
.contact p {
  color: #546158;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-band {
  background: #22312a;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: white;
}

.grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1152px;
  padding: 1.5rem 1.25rem;
}

.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-band p {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 0.75rem;
  margin: 0;
}

.trust-band span {
  animation: soft-pulse 2.4s ease-in-out infinite;
  background: #d8b15f;
  border-radius: 999px;
  height: 0.65rem;
  width: 0.65rem;
}

.section {
  margin: 0 auto;
  max-width: 1152px;
  padding: 5rem 1.25rem;
}

.section.white,
.section.muted {
  max-width: none;
}

.section.white > *,
.section.muted > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1152px;
}

.white {
  background: white;
}

.muted {
  background: #eef2ec;
}

.section-head,
.split {
  align-items: end;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 0.82fr 1.18fr;
}

.cards,
.steps,
.image-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.6rem;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.step,
.image-card,
.wizard {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.55rem;
  box-shadow: 0 10px 22px rgba(24, 33, 28, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card,
.step {
  padding: 1.6rem;
}

.card:hover,
.step:hover,
.image-card:hover,
.wizard:hover {
  border-color: rgba(31, 111, 84, 0.35);
  box-shadow: 0 22px 55px rgba(24, 33, 28, 0.12);
  transform: translateY(-5px);
}

.card strong {
  align-items: center;
  background: #e5f0ea;
  border-radius: 0.45rem;
  color: #1f6f54;
  display: flex;
  font-size: 1.1rem;
  height: 2.7rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 2.7rem;
}

.card h3,
.step h3,
.image-card h3 {
  color: #18211c;
  font-size: 1.28rem;
  margin: 0;
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 650ms ease;
  width: 100%;
}

.image-card:hover img {
  transform: scale(1.055);
}

.image-card div {
  padding: 1.5rem;
}

.step b {
  color: #1f6f54;
  display: block;
  margin-bottom: 1.2rem;
}

.split {
  grid-template-columns: 1fr 0.9fr;
}

.split aside {
  background: #22312a;
  border-radius: 0.55rem;
  box-shadow: 0 22px 55px rgba(24, 33, 28, 0.13);
  color: white;
  padding: 2rem;
}

.split aside h3 {
  font-size: 1.9rem;
  margin: 1rem 0;
}

.split aside p {
  color: rgba(255, 255, 255, 0.78);
}

.gold {
  color: #d8b15f;
}

.center {
  text-align: center;
}

.wizard {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 242, 0.98));
  margin-top: 2.4rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.progress {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin: 0 auto 2rem;
}

.progress button {
  background: rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 999px;
  height: 0.4rem;
  width: 1.8rem;
}

.progress button.active {
  background: #1f6f54;
  width: 2.4rem;
}

.wizard h3 {
  color: #18211c;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin: 0 auto 0.8rem;
  text-align: center;
}

.wizard h3::after {
  background: #d8b15f;
  border-radius: 999px;
  content: "";
  display: block;
  height: 0.22rem;
  margin: 0.95rem auto 0;
  width: 4.5rem;
}

.choice-grid,
.field-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.choice-grid.objects {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice,
.pill {
  background: #fbfaf6;
  border: 1.5px solid rgba(31, 111, 84, 0.24);
  border-radius: 0.45rem;
  color: #18211c;
  cursor: pointer;
  font-weight: 800;
  min-height: 4rem;
  padding: 0.9rem 1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.choice {
  align-items: center;
  aspect-ratio: 1 / 1.05;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

.choice svg {
  color: #1f6f54;
  height: 4.8rem;
  margin-bottom: 1rem;
  width: 4.8rem;
}

.choice.active,
.pill.active,
.choice:hover,
.pill:hover {
  background: #1f6f54;
  border-color: #1f6f54;
  color: white;
  transform: translateY(-2px);
}

.choice.active svg,
.choice:hover svg {
  color: white;
}

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

.field {
  color: #425048;
  display: grid;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.55rem;
}

.field.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: #fffefa;
  border: 1px solid rgba(24, 33, 28, 0.18);
  border-radius: 0.45rem;
  color: #18211c;
  font: inherit;
  font-weight: 600;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1f6f54;
  box-shadow: 0 0 0 4px rgba(31, 111, 84, 0.13);
  outline: none;
}

.consent {
  align-items: flex-start;
  color: #546158;
  display: flex;
  font-size: 0.92rem;
  gap: 0.75rem;
  line-height: 1.55;
  margin-top: 1.2rem;
}

.consent input {
  accent-color: #1f6f54;
  min-height: auto;
}

.wizard-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.4rem;
}

.back,
.next {
  border: 0;
  border-radius: 0.45rem;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 3.2rem;
  padding: 0.8rem 1.4rem;
}

.back {
  background: #eeeeee;
  color: #606060;
}

.next {
  background: #1f6f54;
  color: white;
  min-width: min(100%, 360px);
}

.back:disabled,
.next:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.form-message {
  border-radius: 0.45rem;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
}

.form-message:empty {
  display: none;
}

.form-message.success {
  background: #e5f0ea;
  color: #1f6f54;
}

.contact {
  align-items: center;
  background: #1f6f54;
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  padding: 4rem max(1.25rem, calc((100vw - 1152px) / 2));
}

.contact h2,
.contact p {
  color: white;
}

.contact p {
  opacity: 0.82;
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
}

.contact-actions a:first-child {
  background: white;
  color: #1f6f54;
}

.contact-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}

.footer {
  background: #18211c;
  color: rgba(255, 255, 255, 0.72);
  padding: 1.8rem 1.25rem;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1152px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.footer-brand img {
  background: white;
  border-radius: 0.45rem;
  height: 2.5rem;
  object-fit: contain;
  padding: 0.2rem;
  width: 3rem;
}

.whatsapp {
  align-items: center;
  animation: whatsapp-breathe 2.8s ease-in-out infinite;
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  bottom: 1.35rem;
  box-shadow: 0 18px 45px rgba(24, 33, 28, 0.22);
  color: white;
  display: inline-flex;
  height: 4rem;
  justify-content: center;
  position: fixed;
  right: 1.35rem;
  width: 4rem;
  z-index: 50;
}

.whatsapp svg {
  height: 2.15rem;
  width: 2.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, 0.8%, 0);
  }
}

@keyframes soft-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes whatsapp-breathe {
  0%, 100% {
    box-shadow: 0 18px 45px rgba(24, 33, 28, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.28);
  }

  50% {
    box-shadow: 0 22px 52px rgba(24, 33, 28, 0.24), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 660px;
  }

  .four,
  .cards,
  .steps,
  .image-grid,
  .section-head,
  .split,
  .contact,
  .field-grid,
  .choice-grid.objects,
  .choice-grid.three,
  .choice-grid.four {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .wizard-actions {
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
