:root {
  --bg: #f7f8fa;
  --bg-elevated: #ffffff;
  --ink: #1a2332;
  --ink-soft: #4a5568;
  --ink-muted: #6b778a;
  --line: #e4e8ef;
  --orange: #f29c11;
  --orange-deep: #e08a00;
  --orange-soft: #fff4e0;
  --navy: #1d2533;
  --whatsapp: #1fa855;
  --whatsapp-deep: #18964a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(26, 35, 50, 0.06);
  --shadow-strong: 0 16px 40px rgba(26, 35, 50, 0.1);
  --font: "Outfit", system-ui, sans-serif;
  --max: 1100px;
  --header-offset: 11.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(242, 156, 17, 0.16), transparent 60%),
    radial-gradient(700px 420px at 100% 8%, rgba(255, 214, 102, 0.22), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 45%, #eef2f7 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 232, 239, 0.8);
}

.brand img {
  width: min(200px, 42vw);
  height: auto;
}

.nav {
  display: flex;
  gap: 1.35rem;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--orange-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 156, 17, 0.28);
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.btn-outline {
  width: 100%;
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-deep);
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
}

.btn-header {
  padding: 0.55rem 1.05rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.hero {
  padding: 3.5rem 0 3rem;
  text-align: center;
  animation: rise 0.7s ease both;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.brand-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}

.hero-line {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}

.hero-line::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffd166);
  animation: grow 0.8s 0.25s ease both;
}

.hero-lead {
  max-width: 34rem;
  margin: 1.25rem auto 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.section {
  padding: 2.5rem 0;
  animation: rise 0.7s ease both;
  scroll-margin-top: var(--header-offset);
}

.section:nth-of-type(2) {
  animation-delay: 0.08s;
}

.section:nth-of-type(3) {
  animation-delay: 0.14s;
}

.section:nth-of-type(4) {
  animation-delay: 0.2s;
}

.section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: #d7dde8;
}

.price-card--featured {
  border-color: rgba(242, 156, 17, 0.45);
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 42%),
    var(--bg-elevated);
  position: relative;
}

.badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  margin: 0;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.card-desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  min-height: 2.8em;
}

.price {
  margin: 1.1rem 0 0.85rem;
}

.amount {
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
}

.features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 0.55rem;
}

.features li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--orange), #ffc857) center / 100% 100% no-repeat;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.features li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.52rem;
  width: 0.35rem;
  height: 0.2rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.pricing-note {
  text-align: center;
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.condition-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.condition-list li {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.condition-list li:last-child {
  border-bottom: none;
}

.cond-label {
  font-weight: 600;
  color: var(--navy);
}

.cond-value {
  color: var(--ink-soft);
}

.cond-value--no {
  color: #b54708;
  font-weight: 600;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
}

.contact-block {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
}

.contact-block h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.contact-block p {
  margin: 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.phone-rows {
  display: grid;
  gap: 1rem;
}

.phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.phone-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phone-row:first-child {
  padding-top: 0;
}

.phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--navy);
}

.phone-number:hover {
  color: var(--orange-deep);
}

.phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .price-card--featured {
    order: -1;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
    padding: 0.7rem 1rem 0.85rem;
  }

  .brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: min(260px, 78vw);
  }

  .nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.35rem;
    padding-top: 0.15rem;
    border-top: 1px solid var(--line);
  }

  .nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 999px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--orange-soft);
    color: var(--orange-deep);
  }

  .hero {
    padding: 2rem 0 2.25rem;
  }

  .brand-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-line {
    font-size: clamp(1.1rem, 4.6vw, 1.35rem);
  }

  .hero-lead {
    font-size: 0.98rem;
    padding: 0 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 2rem 0;
  }

  .section-head {
    margin-bottom: 1.35rem;
  }

  .pricing-grid {
    max-width: none;
    gap: 0.85rem;
  }

  .price-card {
    padding: 1.25rem 1.15rem 1.15rem;
  }

  .amount {
    font-size: 2.25rem;
  }

  .card-desc {
    min-height: 0;
  }

  .condition-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.9rem 1.05rem;
  }

  .contact-block {
    padding: 1.2rem 1.1rem;
  }

  .phone-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .phone-number {
    font-size: 1.05rem;
  }

  .phone-actions {
    width: 100%;
  }

  .phone-actions .btn {
    flex: 1;
    min-height: 44px;
  }

  main {
    padding: 0 1rem 3rem;
  }

  .site-footer {
    padding: 1.25rem 1rem 2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .nav {
    gap: 0.15rem;
  }

  .nav a {
    padding: 0.4rem 0.55rem;
    font-size: 0.85rem;
  }

  .phone-actions {
    flex-direction: column;
  }

  .phone-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero,
  .section,
  .hero-line::after,
  .price-card,
  .btn {
    animation: none !important;
    transition: none !important;
  }

  .price-card:hover,
  .btn:hover {
    transform: none;
  }
}
