:root {
  --bg: #ecf5f2;
  --bg-soft: #f6fbfa;
  --surface: rgba(247, 253, 251, 0.8);
  --surface-strong: #fcfffd;
  --text: #10211d;
  --muted: #4f6661;
  --line: rgba(16, 33, 29, 0.12);
  --accent: #0f766e;
  --accent-deep: #0b4f4a;
  --accent-soft: #d7efe2;
  --shadow: 0 24px 60px rgba(16, 69, 63, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.2), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(232, 163, 23, 0.18), transparent 20%),
    linear-gradient(180deg, #f6fbfa 0%, #ecf5f2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 60px;
}

.hero,
.section,
.trust-strip {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: 32px;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
}

.brand-name,
.brand-copy,
.eyebrow,
.plan-name,
.card-label {
  margin: 0;
}

.brand-name {
  font-weight: 800;
}

.brand-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.menu-button {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  padding: 52px 8px 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-deep);
}

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

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  margin: 16px 0;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.lead,
.section-heading p,
.info-card p,
.timeline p,
.price-card p,
.faq-list p,
.contact-card p,
.hero-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #0c615a;
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.button-whatsapp {
  background: #1f9d55;
  color: #fff;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #188347;
}

.price-card ul {
  padding-left: 18px;
  color: var(--text);
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-weight: 800;
}

.price-card li {
  margin-bottom: 10px;
}

.hero-points li {
  margin-bottom: 10px;
}

.card-label {
  font-weight: 800;
  color: var(--accent-deep);
  margin-bottom: 10px;
}

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

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-art {
  position: relative;
  min-height: 360px;
}

.art-browser {
  position: absolute;
  inset: 26px 20px 42px 34px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(11, 79, 74, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 238, 0.88));
  box-shadow: 0 24px 42px rgba(16, 69, 63, 0.12);
}

.art-browser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(232, 163, 23, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(15, 118, 110, 0.04), transparent 42%);
}

.art-browser-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(11, 79, 74, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.art-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 79, 74, 0.22);
}

.art-browser-top span:nth-child(1) {
  background: rgba(232, 163, 23, 0.85);
}

.art-browser-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 18px;
}

.art-sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
}

.art-sidebar span {
  display: block;
  height: 42px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.1);
}

.art-content {
  display: grid;
  gap: 14px;
}

.art-content-hero {
  min-height: 138px;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(11, 79, 74, 0.92), rgba(15, 118, 110, 0.68)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}

.art-content-lines {
  display: grid;
  gap: 10px;
}

.art-content-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.16);
}

.art-content-lines span:nth-child(1) {
  width: 86%;
}

.art-content-lines span:nth-child(2) {
  width: 100%;
}

.art-content-lines span:nth-child(3) {
  width: 72%;
}

.art-badge {
  position: absolute;
  display: grid;
  gap: 6px;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(16, 69, 63, 0.14);
}

.art-badge-gold {
  top: 0;
  right: 8px;
  width: 146px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(215, 239, 226, 0.98), rgba(188, 226, 209, 0.96));
}

.art-badge-gold span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 79, 74, 0.72);
}

.art-badge-gold span:nth-child(2) {
  width: 68%;
  background: rgba(11, 79, 74, 0.26);
}

.art-badge-dark {
  left: 4px;
  bottom: 16px;
  width: 140px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(11, 79, 74, 0.98), rgba(15, 118, 110, 0.92));
}

.art-badge-dark span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.art-badge-dark span:nth-child(2) {
  width: 72%;
}

.trust-strip,
.section {
  margin-top: 22px;
  border-radius: 28px;
}

.trust-strip {
  padding: 18px 24px;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 34px;
}

.section-alt {
  background: rgba(255, 249, 241, 0.95);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

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

.info-card,
.price-card,
.faq-list article {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.faq-centered {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
}

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

.price-card.featured {
  background: linear-gradient(180deg, #f6fffb 0%, #dbf0e8 100%);
  transform: translateY(-8px);
}

.plan-name {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

.price-card h3 {
  font-size: 2.4rem;
  margin: 14px 0 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fffc, #e3f3ec);
  border: 1px solid rgba(11, 79, 74, 0.15);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.botcheck {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(30, 29, 26, 0.12);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.contact-form button {
  width: fit-content;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 961px) {
  .faq-centered {
    width: auto;
    max-width: calc(50% - 9px);
    justify-self: center;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .timeline,
  .pricing,
  .contact-card,
  .cards,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 280px;
  }

  .art-browser {
    inset: 18px 12px 26px 18px;
  }

  .art-browser-layout {
    grid-template-columns: 62px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .art-content-hero {
    min-height: 112px;
  }

  .art-badge-gold {
    right: 0;
    padding: 14px 14px 12px;
  }

  .art-badge-dark {
    left: 0;
    bottom: 8px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .section,
  .trust-strip {
    border-radius: 22px;
  }

  .hero {
    padding: 18px;
  }

  .menu-button {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 14px;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
  }

  .menu {
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .topbar {
    position: relative;
  }

  .section {
    padding: 24px;
  }
}
