:root {
  --primary: #D72323;
  --white: #ffffff;
  --bg: #f6f7f9;
  --text: #303236;
  --muted: #6a6f76;
  --dark: #0f1115;
  --border: #e6e8eb;
  --shadow: 0 10px 30px rgba(15, 17, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.topbar__info, .topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .badge {
  background: var(--primary);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 8px;
}

.topbar .sep {
  opacity: 0.5;
  margin: 0 8px;
}

.topbar .link {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  margin-right: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 8px 14px;
  font-weight: 600;
}

.btn--lg {
  padding: 14px 22px;
  font-size: 18px;
}

.btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
}

.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo__mark {
  color: var(--white);
  background: var(--primary);
  padding: 2px 6px;
  border-radius: 6px;
  margin-right: 6px;
}

.logo__img {
  height: 32px;
  width: auto;
  display: inline-block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.nav__toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  margin: 4px auto;
}

.hero {
  background: linear-gradient(180deg, var(--white), #fffafa);
  padding: 48px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--dark);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 12px 0 8px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 18px;
}

.hero__bullets li {
  position: relative;
  padding-left: 26px;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin: 10px 0 14px;
}

.hero__trust {
  display: flex;
  gap: 16px;
}

.trust {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 10px;
}

.icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(215, 35, 35, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.hero__card .quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.quote-card h3 {
  margin: 0 0 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  margin: 10px 0;
}

input, select, textarea {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
}

.checkbox {
  grid-auto-flow: column;
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.small {
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 48px 0;
}

.section--alt {
  background: #ffffff;
}

.section--cta {
  background: var(--primary);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 24px;
}

.section__header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--dark);
}

.section--cta .section__header h2 {
  color: var(--white);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.plan--highlight {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.plan__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}

.plan h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.plan__price {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 28px;
  color: var(--dark);
}

.plan__price span {
  font-weight: 700;
}

.plan__price .period {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
}

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 8px;
}

.plan__features li {
  position: relative;
  padding-left: 22px;
}

.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: rgba(215, 35, 35, 0.3);
  border-radius: 2px;
}

.disclaimer {
  text-align: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.benefit__icon {
  font-size: 28px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.testimonial .author {
  margin-top: 10px;
  font-weight: 700;
}

.testimonial .meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}



.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.section--cta .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer {
  background: var(--dark);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 28px 0 14px;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer__links, .footer__contact {
  display: grid;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 22px;
  font-size: 14px;
}

.social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-left: 6px;
}

.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  font-size: 22px;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .section--cta .container {
    grid-template-columns: 1fr;
  }
  .hero__card {
    max-width: 560px;
  }
}

@media (max-width: 880px) {
  .plans, .benefits, .testimonials, .gallery, .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav__toggle {
    display: inline-block;
  }
  .nav__links {
    position: absolute;
    right: 16px;
    top: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
    display: none;
    z-index: 100;
    width: calc(100% - 32px);
  }
  .nav.open .nav__links {
    display: flex;
  }
  .nav__links a {
    padding: 8px 6px;
    border-radius: 8px;
  }
}

@media (max-width: 580px) {
  .plans, .benefits, .testimonials, .gallery, .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero__photos {
    grid-template-columns: 1fr;
  }
  .hero__photos img {
    height: 140px;
  }
  .plan--highlight {
    transform: none;
  }
  .section--cta .container, .cta__actions {
    justify-content: center;
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .logo__img {
    height: 28px;
  }
  .topbar .container {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .topbar__info, .topbar__cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero__grid {
    justify-items: center;
  }
  .hero__copy {
    text-align: center;
  }
  .hero__cta {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
    flex-wrap: wrap;
  }
  .plans > .plan {
    max-width: 560px;
    margin: 0 auto;
  }
  .footer__grid {
    justify-items: center;
    text-align: center;
  }
}


