:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #5b6472;
  --primary: #c2272d;
  --primary-dark: #951a1f;
  --accent: #d7a54a;
  --ok: #128c7e;
  --shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(215, 165, 74, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(194, 39, 45, 0.1), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6rem;
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary-dark);
  background: rgba(194, 39, 45, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-whatsapp {
  background: var(--ok);
  color: #fff;
}

.btn-whatsapp:hover {
  opacity: 0.92;
}

.btn-outline {
  border: 1px solid #d0d5dd;
  background: #fff;
  color: var(--text);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ebe6dd;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand span {
  color: var(--primary);
}

.nav {
  display: none;
  gap: 0.9rem;
  align-items: center;
}

.nav a {
  font-size: 0.92rem;
  color: #2f3642;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-wrap {
  display: grid;
  gap: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.1rem);
}

.hero p {
  max-width: 56ch;
}

.hero-image {
  min-height: 260px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(140deg, rgba(194, 39, 45, 0.88), rgba(149, 26, 31, 0.86)),
    url("https://images.unsplash.com/photo-1518391846015-55a9cc003b25?auto=format&fit=crop&w=1200&q=60") center/cover;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(0, 0, 0, 0.35));
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 1;
  font-size: 0.85rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.feature-list,
.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.feature-list li::before {
  content: "✦";
  color: var(--accent);
  font-weight: 700;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 1rem;
}

.cards-3 .card h3,
.cards-4 .card h3 {
  margin-bottom: 0.4rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: rgba(194, 39, 45, 0.14);
  color: var(--primary-dark);
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery .ph {
  border-radius: var(--radius-sm);
  min-height: 120px;
  background: linear-gradient(135deg, #ecdcc0, #f2ece1);
  box-shadow: var(--shadow);
}

.faq-item {
  border: 1px solid #e8dfd3;
  border-radius: var(--radius-sm);
  background: #fff;
}

.faq-q {
  width: 100%;
  border: 0;
  padding: 1rem;
  background: transparent;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-item.active .faq-a {
  display: block;
}

.cta-band {
  background: #fff5ef;
  border: 1px solid #f1d9cc;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.trust-pill {
  background: #fff;
  border: 1px solid #ead8c8;
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th, td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #f0ece5;
}

th {
  background: #f8f4ee;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #d7dce3;
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  background: #211f25;
  color: #f8f6f2;
  padding: 2rem 0;
}

.footer a {
  color: #f8f6f2;
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.wa-float span {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .hero-wrap {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section {
    padding: 4.4rem 0;
  }

  .wa-float {
    width: auto;
    height: auto;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    gap: 0.45rem;
    font-size: 1rem;
  }

  .wa-float span {
    display: inline;
    font-weight: 700;
    font-size: 0.92rem;
  }
}
