:root {
  --bg-body: #ffffff;
  --bg-section: #f8fafc;
  --bg-card: #ffffff;
  --border-card: #e5e7eb;
  --text-main: #1f2937;
  --text-dim: #4b5563;
  --brand: #1e3a8a;
  --brand-soft: #e0e7ff;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --radius-lg: 1.25rem;
  --radius-md: .75rem;
  --radius-sm: .5rem;
  --shadow-card: 0 24px 48px rgb(0 0 0 / 0.06);
  --max-width: 1280px;
  --gap-section: clamp(3rem, 2vw + 2rem, 4rem);
  --gap-block: 1rem;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Roboto", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 600;
  margin-top: 0;
}

p {
  color: var(--text-dim);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-main);
  font-weight: 400;
}

.container {
  max-width: var(--max-width);
  padding: 0 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* HERO */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--accent-soft) 0%, #fff 60%);
  padding: var(--gap-section) 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  background-color: var(--accent);
  color: #fff;
  padding: .4rem .6rem;
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
}

.hero-text h1 {
  font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--brand);
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--text-main);
  font-size: .95rem;
}
.trust-points li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
}

.hero-media .hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--accent-soft);
  object-fit: cover;
  width: 100%;
  max-height: 360px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .95rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn.block {
  width: 100%;
}
.btn.primary {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn.primary:hover {
  filter: brightness(1.05);
}
.btn.secondary {
  background-color: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn.secondary:hover {
  filter: brightness(1.1);
}
.btn.ghost {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn.ghost:hover {
  background-color: var(--accent-soft);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

/* SECTIONS */
.section {
  padding: var(--gap-section) 0;
}

.section.light {
  background-color: var(--bg-section);
}

/* GRID 2 COLS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.grid-2.reverse {
  display: grid;
}
@media(min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .grid-2.reverse {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2.reverse > :first-child {
    order: 2;
  }
  .grid-2.reverse > :last-child {
    order: 1;
  }
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  font-size: .95rem;
  color: var(--text-main);
}
.feature-list li {
  margin-bottom: .75rem;
}
.feature-list strong {
  color: var(--text-main);
  font-weight: 600;
}

/* CARD HIGHLIGHTS */
.card.highlights {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
.card.highlights h3 {
  margin-top: 0;
  color: var(--brand);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: .95rem;
  color: var(--text-main);
}
.check-list li {
  margin-bottom: .5rem;
  padding-left: 1.25rem;
  position: relative;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .9rem;
  line-height: 1.2;
  color: var(--accent);
  font-weight: 600;
}
.note {
  font-size: .85rem;
  background-color: var(--accent-soft);
  padding: .75rem .75rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  border: 1px solid var(--accent);
  margin-bottom: 1rem;
}

/* IMAGE BLOCKS */
.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--brand-soft);
  object-fit: cover;
  width: 100%;
  max-height: 360px;
}

/* PILLS */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.pill {
  display: inline-block;
  background-color: var(--brand-soft);
  color: var(--brand);
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem .75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand);
  line-height: 1.2;
}

/* FAQ */
.faq h2 {
  color: var(--brand);
}
.faq details {
  background-color: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem 1rem .5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
}
.faq p {
  font-size: .95rem;
  color: var(--text-dim);
  margin-top: .75rem;
}

/* CONTACT SECTION */
.contacto {
  background: radial-gradient(circle at 80% 10%, var(--brand-soft) 0%, #fff 60%);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
.contact-card h2 {
  color: var(--brand);
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.contact-lead {
  margin-bottom: 1.5rem;
  font-size: .95rem;
  color: var(--text-main);
  font-weight: 500;
}

.lead-form label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: .75rem;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  padding: .6rem .75rem;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text-main);
  background-color: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.03) inset;
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.info-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box.soft {
  background-color: var(--bg-section);
  border-style: dashed;
}
.info-box h3 {
  margin-top: 0;
  color: var(--brand);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.info-box p {
  font-size: .9rem;
  margin-bottom: .75rem;
  color: var(--text-main);
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  font-size: .9rem;
  color: var(--text-main);
}
.mini-list li {
  margin-bottom: .4rem;
  padding-left: 1.25rem;
  position: relative;
}
.mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--brand);
  font-weight: 600;
}

/* FOOTER */
.footer {
  background-color: #79ad3a;
  color: #fff;
  margin-top: var(--gap-section);
  padding-top: var(--gap-section);
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer p,
.footer li,
.footer a {
  color: #ffffff;
  font-size: .85rem;
  line-height: 1.5;
  margin: 0 0 .75rem;
  text-decoration: none;
}
.footer .brand {
  color: #fff;
  font-size: .95rem;
  line-height: 1.4;
  font-weight: 500;
}
.footer .legal {
  font-size: .8rem;
  color: #94a3b8;
  line-height: 1.4;
}
.foot-heading {
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: .4rem;
}
.small {
  font-size: .75rem;
  color: #94a3b8;
}
.subfooter {
  border-top: 1px solid #1e293b;
  padding: 1rem 0 2rem;
  margin-top: 2rem;
}
.subfooter-inner {
  display: grid;
  gap: 1rem;
}
@media(min-width: 900px) {
  .subfooter-inner {
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
}