:root {
  --bg: #f4f7fb;
  --ink: #10253c;
  --soft: #607488;
  --brand: #3c0d16;
  --brand2: #c0283a;
  --accent: #f2b315;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
h1, h2, h3, h4, p { margin-top: 0; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar { background: #250811; color: #f1d5da; font-size: .88rem; }
.topbar-inner { min-height: 40px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar p { margin: 0; }

.header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(15,30,45,.08); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { text-decoration: none; color: var(--brand); font-weight: 800; letter-spacing: .08em; }
.logo span { color: var(--brand2); }
.brand-logo {
  display: block;
  width: clamp(190px, 23vw, 250px);
  height: auto;
}
.brand-logo--footer {
  width: clamp(170px, 22vw, 230px);
}
.brand-logo--drawer {
  width: clamp(180px, 64vw, 230px);
}
.menu { display: flex; gap: 1.2rem; }
.menu a {
  text-decoration: none;
  color: var(--soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.menu a:hover { color: var(--brand2); }
.menu-ico {
  width: 1.15rem;
  text-align: center;
  flex: 0 0 auto;
}
.menu-toggle {
  display: none;
  border: 0;
  background: #f6e8eb;
  color: #7d1b2b;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.hero {
  color: var(--white);
  background: linear-gradient(145deg, #3b0f18, #bf2639);
  padding: 4.4rem 0;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.3rem; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; margin-bottom: .85rem; }
.hero p { color: #dcebfa; margin-bottom: .85rem; }
.hero img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 20px 36px rgba(0,0,0,.35); }
.ext-link {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.badge { display: inline-block; padding: .42rem .85rem; border-radius: 999px; background: rgba(255,255,255,.18); font-size: .84rem; margin-bottom: .8rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .55rem; }
.btn { text-decoration: none; border-radius: 999px; padding: .72rem 1.05rem; font-weight: 800; }
.btn-main { background: var(--accent); color: #372603; }
.btn-ghost { border: 1px solid rgba(255,255,255,.6); color: #fff; }
.btn-ghost-dark { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.trust-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .95rem; }
.trust-pills span {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .32rem .72rem;
  font-size: .82rem;
  color: #e7f3ff;
}

.section { padding: 4rem 0; }
.section-alt { background: linear-gradient(180deg, #f8fbff, #edf3f9); }
.intro { max-width: 75ch; color: #55697c; margin-bottom: 1.1rem; }
.texture-lines {
  position: relative;
  overflow: hidden;
}
.texture-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(165deg, rgba(180,35,52,.1) 1px, transparent 1px);
  background-size: 320px 320px, 220px 220px;
  pointer-events: none;
}
.texture-dots {
  position: relative;
  overflow: hidden;
}
.texture-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(190,40,58,.16) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.section > .container,
.section-alt > .container,
.strip > .container {
  position: relative;
  z-index: 1;
}
.section-separator {
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(4,22,40,.02), rgba(4,22,40,.06), rgba(4,22,40,.02));
}
.section-separator span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #c0283a;
  background: #fff;
  box-shadow: 0 8px 18px rgba(8,22,37,.12);
}
.strip { background: #2c0b14; color: #f7dde2; padding: 1.4rem 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.strip-grid article { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: .8rem; }
.strip-grid h3 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.strip-grid p { font-size: .9rem; margin: 0; color: #f2cfd5; }

.cards { display: grid; gap: 1rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(8,22,37,.12);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(8,22,37,.16);
}
.card img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: .8rem; }
.card.feature img { height: 260px; }
.card ul { margin: 0; padding-left: 1.1rem; color: #355168; }
.card.small p { font-size: .93rem; }
.card-tag {
  display: inline-block;
  margin: 0 0 .6rem;
  background: #eaf4ff;
  color: #a02131;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .78rem;
  font-weight: 700;
}
.card-link {
  display: inline-block;
  margin-top: .8rem;
  text-decoration: none;
  color: #0d5f92;
  font-weight: 700;
}
.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  margin-top: .9rem;
  text-decoration: none;
  background: linear-gradient(135deg, #24c664, #25d366);
  color: #ffffff;
  border-radius: 999px;
  padding: .58rem .82rem;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 10px 18px rgba(13, 135, 67, .26);
  transition: transform .2s ease, filter .2s ease;
  min-height: 38px;
  min-width: 182px;
  justify-content: center;
}
.cta-wa-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.cta-wa-btn--small {
  font-size: .83rem;
  padding: .5rem .72rem;
  min-width: 170px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: center; }
.two-col img { width: 100%; border-radius: 16px; min-height: 320px; object-fit: cover; }

.narrow { max-width: 780px; }
details { background: #fff; border-radius: 12px; padding: .85rem .95rem; margin-bottom: .7rem; box-shadow: 0 10px 20px rgba(8,22,37,.08); }
summary { cursor: pointer; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.clean-list { list-style: none; margin: 0 0 .8rem; padding: 0; display: grid; gap: .42rem; }
.clean-list a { color: var(--brand2); text-decoration: none; }
iframe { width: 100%; min-height: 290px; border: 0; border-radius: 14px; }
.form-card { background: #fff; border-radius: 16px; padding: 1rem; box-shadow: 0 12px 26px rgba(8,22,37,.12); }
.site-form { display: grid; gap: .72rem; }
.site-form label { display: grid; gap: .3rem; font-size: .92rem; font-weight: 600; }
.site-form input, .site-form select, .site-form textarea {
  width: 100%;
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  padding: .64rem .76rem;
  font: inherit;
}
.site-form button { border: 0; border-radius: 999px; background: var(--brand2); color: #fff; font-weight: 700; padding: .72rem 1rem; cursor: pointer; }
.hp { position: absolute; left: -9999px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.step-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(8,22,37,.1);
  transition: transform .35s ease, box-shadow .35s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(8,22,37,.15);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #c0283a;
  color: #fff;
  font-weight: 800;
  margin-bottom: .45rem;
}
.advice-list { margin: 0; padding-left: 1.1rem; }
.advice-list li { margin-bottom: .5rem; }
.highlight-card {
  background: linear-gradient(160deg, #3c0d16, #c0283a);
  color: #deecfb;
  border-radius: 16px;
  padding: 1rem;
}
.highlight-card h3 { color: #fff; }
.highlight-card p { margin-bottom: .45rem; }

.quote-card {
  border-top: 4px solid #c0283a;
}
.quote-stars {
  color: #f2b315;
  font-size: 1.05rem;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.quote-author {
  margin: .8rem 0 0;
  color: #4f677c;
  font-weight: 700;
  font-size: .9rem;
}

.cta-band {
  background: linear-gradient(145deg, #3b0f18, #bf2639);
  color: #d8ebff;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: center;
}
.cta-kicker {
  font-weight: 700;
  opacity: .95;
  margin-bottom: .4rem;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: .4rem;
}
.cta-band p {
  margin-bottom: 0;
}
.cta-actions {
  display: grid;
  gap: .7rem;
  justify-items: start;
}

.footer { background: #2a0a13; color: #f1d5da; padding: 2rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 1rem; }
.footer h4 { margin-bottom: .5rem; color: #fff; }
.footer-logo { display: inline-block; margin-bottom: .35rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.footer a { color: #dce9f6; text-decoration: none; }
.footer-copy { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: transparent;
  color: #072e1a;
  text-decoration: none;
  font-weight: 800;
  display: grid;
  justify-items: end;
  gap: .45rem;
  align-items: end;
}
.wa-bubble {
  background: #fff;
  color: #2b3b4b;
  border-radius: 12px;
  padding: .6rem .78rem;
  font-size: .78rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  position: relative;
  margin-right: 4px;
  transform: translateX(0);
}
.wa-bubble::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background: #fff;
}
.wa-fab {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 30%, #38f296, #16b968 70%);
  box-shadow:
    0 0 0 12px rgba(32,197,91,.12),
    0 16px 30px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .25s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover .wa-fab {
  transform: scale(1.05);
}
.wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.wa-copy { display: grid; line-height: 1.1; }
.wa-copy strong { font-size: .9rem; }
.wa-copy small { font-size: .72rem; font-weight: 600; opacity: .86; }
.wa-logo {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-logo svg {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.16));
}
.wa-notify {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: .7rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 2px solid #fff;
}
@keyframes pulse { 0%{transform:scale(1)} 50%{transform:scale(1.06)} 100%{transform:scale(1)} }

.form-notice {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  text-align: center;
  padding: .7rem .9rem;
  background: #d7efdc;
  color: #0d5720;
  font-weight: 700;
}
.form-notice--error { background: #f9d9d9; color: #731b1b; }

.modal-root[hidden] { display: none !important; }
.modal-root { position: fixed; inset: 0; z-index: 85; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2,10,18,.64); }
.modal-shell { position: relative; z-index: 2; width: min(760px, 100%); max-height: 88vh; overflow: auto; background: #fff; border-radius: 14px; padding: 1rem; }
.modal-close { position: absolute; right: 10px; top: 10px; width: 34px; height: 34px; border: 0; border-radius: 999px; background: #e6edf4; cursor: pointer; font-size: 1.2rem; }
.modal-panel { display: none !important; }
.modal-panel.modal-panel--active { display: block !important; }
.modal-note { color: #5f7387; font-size: .92rem; margin-bottom: .8rem; }

.mobile-drawer[aria-hidden="true"] {
  display: none;
}
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 75;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 24, .58);
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  padding: 1rem;
  box-shadow: -10px 0 30px rgba(0,0,0,.2);
  display: grid;
  align-content: start;
  gap: .8rem;
  animation: drawerIn .25s ease;
}
@keyframes drawerIn {
  from { transform: translateX(18px); opacity: .5; }
  to { transform: translateX(0); opacity: 1; }
}
.drawer-close {
  justify-self: end;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #edf3f9;
  font-size: 1.3rem;
  cursor: pointer;
}
.drawer-brand {
  text-decoration: none;
  display: inline-block;
  margin-top: -.25rem;
}
.mobile-menu {
  display: grid;
  gap: .35rem;
}
.mobile-menu a {
  text-decoration: none;
  color: #2d465d;
  font-weight: 600;
  border-radius: 10px;
  padding: .55rem .65rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.mobile-menu a:hover {
  background: #eff5fb;
}
.drawer-cta {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  background: #25d366;
  color: #083621;
  border-radius: 999px;
  padding: .7rem .9rem;
  font-weight: 800;
}
.drawer-contact {
  margin-top: .2rem;
  padding-top: .7rem;
  border-top: 1px solid #e4ebf3;
  display: grid;
  gap: .42rem;
}
.drawer-contact-title {
  margin: 0 0 .2rem;
  font-size: .85rem;
  font-weight: 800;
  color: #4d667e;
}
.drawer-contact a {
  text-decoration: none;
  color: #2d465d;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 8px;
  padding: .32rem .12rem;
}
.drawer-contact a:hover {
  color: #b02436;
}
.cards .cta-wa-btn {
  margin-top: auto;
  align-self: flex-start;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .strip-grid { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .cards.two, .cards.three, .cards.four, .two-col, .contact-grid, .footer-grid, .steps-grid { grid-template-columns: 1fr; }
  .menu { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .topbar-inner { flex-direction: column; justify-content: center; padding: .45rem 0; }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    gap: .35rem;
  }
  .cta-band-inner {
    grid-template-columns: 1fr;
  }
  .wa-fab {
    width: 62px;
    height: 62px;
  }
  .wa-logo {
    width: 30px;
    height: 30px;
  }
  .wa-bubble {
    font-size: .72rem;
    padding: .52rem .64rem;
    margin-right: 6px;
  }
}
