:root {
  color-scheme: light;
  --bg: #fbfaf6;
  --surface: #ffffff;
  --surface-soft: #f4f1ea;
  --ink: #152026;
  --muted: #66736d;
  --line: #e5ded2;
  --green: #1f8f52;
  --green-dark: #126638;
  --green-soft: #e5f4ea;
  --terracotta: #bd6245;
  --brass: #b8874d;
  --shadow: 0 20px 50px rgba(34, 30, 24, 0.12);
  --shadow-soft: 0 12px 28px rgba(34, 30, 24, 0.09);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 143, 82, 0.05), transparent 34%, rgba(189, 98, 69, 0.04)),
    radial-gradient(circle at 16% 5%, rgba(184, 135, 77, 0.12), transparent 28%);
  z-index: -1;
}

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

img,
svg {
  display: block;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn svg,
.floating-wa svg {
  fill: currentColor;
  stroke: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(229, 222, 210, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-elevated {
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 12px 30px rgba(34, 30, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #1b2b28, #1f8f52);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(31, 143, 82, 0.22);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.1;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: #2d3a3a;
  font-size: 0.94rem;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 143, 82, 0.24);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(31, 143, 82, 0.3);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #cabda7;
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: clamp(30px, 4vw, 56px) clamp(18px, 4vw, 56px) 34px;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  max-width: 600px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 650px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-lede {
  max-width: 550px;
  margin-bottom: 28px;
  color: #41504d;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #455450;
  font-size: 0.92rem;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.preview-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  perspective: 1200px;
}

.site-preview {
  overflow: hidden;
  border: 1px solid rgba(90, 75, 55, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-preview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.preview-large {
  grid-row: span 2;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 10px;
  border-bottom: 1px solid #ece6dc;
  background: #fffaf1;
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8cdbc;
}

.preview-photo {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 24, 24, 0.08), rgba(18, 24, 24, 0.72)),
    var(--photo) center / cover;
}

.preview-large .preview-photo {
  min-height: 292px;
}

.preview-photo.pale {
  color: #142127;
  background:
    linear-gradient(90deg, rgba(247, 251, 252, 0.94), rgba(247, 251, 252, 0.42)),
    var(--photo) center / cover;
}

.preview-photo small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-photo strong {
  display: block;
  max-width: 270px;
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.preview-photo em {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-style: normal;
}

.mini-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #eee5d8;
}

.mini-services span {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #fff;
  color: #40514b;
  font-size: 0.8rem;
  text-align: center;
}

.feature-strip,
.pricing-section,
.addons,
.notes,
.process,
.faq,
.final-cta,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px, 4.8vw, 64px) clamp(18px, 4vw, 32px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2,
.section-heading p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.feature-item {
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #2f3e3b;
  text-align: center;
  font-weight: 720;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.pricing-section {
  padding-top: clamp(26px, 4vw, 48px);
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.pricing-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 438px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(34, 30, 24, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: #cdbfaa;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: rgba(31, 143, 82, 0.6);
  background: linear-gradient(180deg, #fff, #f6fbf7);
  box-shadow: 0 18px 42px rgba(31, 143, 82, 0.15);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 152px;
  padding: 7px 13px;
  border-radius: 0 0 8px 8px;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.price-card.featured h3 {
  margin-top: 10px;
}

.price {
  margin: 0 0 18px;
  color: #103f28;
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
}

.price span {
  margin-right: 6px;
  color: #64706b;
  font-size: 1rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: #34433f;
}

.price-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) center / 6px 2px no-repeat,
    var(--green);
  box-shadow: inset 0 0 0 4px var(--green);
}

.btn-card {
  margin-top: auto;
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: rgba(31, 143, 82, 0.18);
}

.btn-card:hover {
  border-color: rgba(31, 143, 82, 0.36);
}

.btn-card-strong {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.pricing-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #e3d7c4;
  border-radius: 8px;
  background: #fff8ed;
  color: #4e463a;
}

.addons {
  padding-top: 26px;
}

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

.addon-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.addon-list span {
  color: #33413d;
  font-weight: 720;
}

.addon-list strong {
  min-width: max-content;
  color: var(--green-dark);
  font-size: 1.12rem;
}

.notes {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.note-panel {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background: #152620;
  color: #fff;
  overflow: hidden;
}

.note-panel + .note-panel {
  background: #efe7da;
  color: var(--ink);
}

.note-panel p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.note-panel + .note-panel p:last-child {
  color: #59645f;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 22px;
  border-top: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.62);
}

.process-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
  color: #24332f;
  font-weight: 780;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(21, 38, 32, 0.94), rgba(24, 77, 48, 0.94)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=82") center / cover;
  color: #fff;
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(31, 143, 82, 0.34);
}

.floating-wa svg {
  width: 27px;
  height: 27px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .pricing-intro,
  .notes,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .preview-large {
    grid-column: span 2;
  }

  .preview-large .preview-photo {
    min-height: 300px;
  }

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

  .pricing-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 11px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .site-header .btn-whatsapp {
    min-width: 44px;
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .site-header .btn-whatsapp svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.05rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .preview-wall,
  .pricing-grid,
  .addon-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .preview-wall .site-preview:not(.preview-large) {
    display: none;
  }

  .preview-large {
    grid-column: auto;
  }

  .preview-large .preview-photo,
  .preview-photo {
    min-height: 240px;
  }

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

  .feature-item {
    min-height: 94px;
    justify-items: center;
    gap: 9px;
    padding: 14px 10px;
    font-size: 0.9rem;
    text-align: center;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
  }

  .addon-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .final-cta {
    margin-bottom: 22px;
    padding: 34px 22px;
  }

  .floating-wa {
    display: grid;
  }
}
