:root {
  --red: #b1241a;
  --red-hover: #d43e30;
  --blue: #455f87;
  --brown: #5a413d;
  --green: #25d366;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  fill: currentColor;
  flex: 0 0 auto;
}
.inline-icon {
  vertical-align: -.2em;
  margin-right: 7px;
}
.shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 32px)); }
.section { padding: 80px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.section-head h2, .hero h1, .hub h2, .contact h2, .offer h2 { margin: 0; line-height: 1.1; letter-spacing: -.01em; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.lead { font-size: 18px; line-height: 1.65; color: var(--brown); }
.hidden { display: none !important; }
.accent-line { width: 96px; height: 6px; background: var(--red); border-radius: 999px; margin: 18px auto 0; }
.btn-icon { width: 18px; height: 18px; }
.icon-forward { transform: rotate(180deg); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--slate-200);
  backdrop-filter: blur(10px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--red); font-weight: 950; text-transform: uppercase; font-size: 24px; letter-spacing: -.03em; }
.brand span { color: var(--blue); }
.nav-menu { display: flex; align-items: center; gap: 26px; color: var(--brown); font-weight: 700; font-size: 14px; }
.nav-menu a:hover { color: var(--red); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--red); font-size: 28px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); }
.btn-light { background: var(--white); color: var(--red); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-sm { padding: 10px 18px; }
.btn-block { width: 100%; }

.hero {
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 950; }
.hero h1 em { color: var(--red); }
.promo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(177,36,26,.25);
  border-radius: 18px;
  padding: 14px 16px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
}
.promo-strip strong { color: var(--red); }
.promo-icon { width: 22px; height: 22px; color: var(--red); animation: gift-bounce 1.4s ease-in-out infinite; }
.countdown { background: var(--red); color: var(--white); padding: 6px 10px; border-radius: 8px; font-family: ui-monospace, SFMono-Regular, monospace; font-size: 12px; }
.social-proof { display: flex; align-items: center; gap: 18px; margin-top: 28px; color: var(--brown); }
.social-proof p { margin: 4px 0 0; color: var(--slate-500); font-size: 13px; }
.avatars { display: flex; margin-left: 12px; }
.avatars span { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--white); margin-left: -12px; display: grid; place-items: center; font-size: 11px; font-weight: 900; color: var(--white); background: var(--blue); }
.avatars span:nth-child(1) { background: #94a3b8; color: var(--slate-900); }
.avatars span:nth-child(4) { background: var(--red); }

.quote-card {
  background: var(--blue);
  color: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.quote-card h2 { margin: 0 0 6px; font-size: 28px; }
.quote-card > p { color: #e2e8f0; margin: 0 0 24px; }
.quote-form { display: grid; gap: 16px; }
.quote-form label { display: grid; gap: 7px; color: var(--white); font-size: 13px; font-weight: 750; }
.quote-form input, .quote-form select, .admin-card input, .admin-card select, .admin-card textarea {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--slate-900);
  outline: none;
}
.quote-form select {
  width: 100%;
  min-width: 0;
  height: 48px;
  line-height: 1.2;
  padding: 0 42px 0 14px;
  font-weight: 520;
  font-size: 14px;
  white-space: nowrap;
  appearance: auto;
  -webkit-appearance: menulist;
}
.quote-form select option {
  font-weight: 400;
  font-size: 15px;
}
.form-error { margin: 0; color: #fecaca; font-size: 13px; font-weight: 800; }
.form-success { background: rgba(6,95,70,.45); border: 1px solid rgba(110,231,183,.35); border-radius: 18px; padding: 24px; text-align: center; display: grid; gap: 10px; color: #dcfce7; }
.form-success strong { color: #86efac; font-size: 20px; }

.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card, .testimonial, .contact-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 30px rgba(15,23,42,.05);
}
.pillar-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(15,23,42,.05);
  transition: transform .24s ease, box-shadow .24s ease;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(15,23,42,.1); }
.pillar-card.recommended { border-top: 4px solid var(--red); }
.pillar-card .badge { position: absolute; right: 14px; top: 12px; background: rgba(177,36,26,.1); color: var(--red); border-radius: 999px; padding: 4px 9px; text-transform: uppercase; font-size: 10px; font-weight: 900; }
.round-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(177,36,26,.1);
  color: var(--red);
  font-size: 29px;
  transition: transform .25s ease, background .25s ease;
}
.round-icon .icon { width: 30px; height: 30px; }
.pillar-card:hover .round-icon { background: var(--red); transform: scale(1.08); }
.pillar-card:hover .round-icon { color: var(--white); }
.pillar-card h3 { margin: 0 0 10px; }
.pillar-card p { margin: 0; color: var(--brown); line-height: 1.6; font-size: 14px; }
.feature-card span { display: inline-flex; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.feature-card h3, .testimonial h3 { margin: 0 0 8px; }
.feature-card p, .testimonial p { color: var(--slate-600); line-height: 1.55; margin: 0; }

.capsules { background: var(--white); }
.intro-split { margin-bottom: 58px; }
.capsule-head { margin-top: 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.split h2 { font-size: clamp(30px, 4vw, 48px); margin: 0 0 16px; }
.split p { color: var(--slate-600); line-height: 1.6; }
.capsule-list { display: grid; gap: 14px; }
.capsule-list div { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 16px; padding: 18px; display: grid; gap: 4px; }
.capsule-list span { color: var(--slate-600); }
.capsule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.capsule-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.capsule-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15,23,42,.12); }
.capsule-icon { height: 64px; display: grid; place-items: center; background: var(--red); color: var(--white); transition: background .25s ease, transform .25s ease; }
.capsule-icon .icon { width: 28px; height: 28px; }
.capsule-card:hover .capsule-icon { background: var(--red-hover); transform: scale(1.03); }
.capsule-card h3 { margin: 20px 18px 8px; }
.capsule-card p { margin: 0 20px 24px; color: var(--brown); line-height: 1.55; font-size: 14px; }

.hub { background: var(--slate-900); color: var(--white); }
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hub h2 { font-size: clamp(34px, 4vw, 52px); }
.hub p { color: #cbd5e1; line-height: 1.65; }
.image-panel { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.image-panel { position: relative; }
.image-panel img { width: 100%; height: 480px; object-fit: cover; }
.image-panel::after { content: ""; position: absolute; inset: auto 0 0; height: 50%; background: linear-gradient(to top, rgba(2,6,23,.95), rgba(15,23,42,.3), transparent); }
.image-caption { position: absolute; left: 24px; bottom: 22px; z-index: 2; display: grid; gap: 7px; }
.image-caption span { background: var(--red); border-radius: 999px; padding: 5px 12px; font-size: 10px; font-weight: 900; text-transform: uppercase; width: fit-content; }
.image-caption strong { color: var(--white); }
.check-list { padding: 0; list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.check-list li::before { content: "✓"; color: #34d399; font-weight: 900; margin-right: 10px; }
.eyebrow.light { color: #ffb4a9; }
.hub-note { border-left: 4px solid var(--red); background: rgba(177,36,26,.1); border-radius: 0 16px 16px 0; padding: 16px; display: grid; gap: 5px; margin: 20px 0; }
.hub-note strong { color: #fecaca; }
.hub-note span { color: #fee2e2; font-size: 13px; }

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 980px;
}
.price-table colgroup col:nth-child(1) { width: 13%; }
.price-table colgroup col:nth-child(2) { width: 52%; }
.price-table colgroup col:nth-child(3) { width: 18%; }
.price-table colgroup col:nth-child(4) { width: 17%; }
.price-table th {
  background: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .07em;
  text-align: left;
  padding: 28px 24px;
  line-height: 1.15;
}
.price-table th:first-child { border-top-left-radius: 22px; }
.price-table th:last-child { border-top-right-radius: 22px; text-align: center; }
.price-table td {
  padding: 30px 24px;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: middle;
  background: var(--white);
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr.is-offer td { background: #fff6f6; }
.size-cell strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
  display: inline-block;
}
.size-cell small {
  display: block;
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-style: italic;
  font-weight: 800;
  margin-top: 7px;
  white-space: nowrap;
}
.size-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.offer-badge {
  background: #00873c;
  color: var(--white);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ideal-cell {
  color: #1e293b;
  font-size: 18px;
  line-height: 1.45;
}
.ideal-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-dot {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 2px solid #10b981;
  color: #00873c;
  background: #ecfdf5;
  font-size: 12px;
  font-weight: 950;
  margin-top: 4px;
}
.check-dot .icon { width: 13px; height: 13px; }
.promo-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #00873c;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  gap: 6px;
}
.promo-pill .icon { width: 16px; height: 16px; }
.price-cell {
  text-align: center;
}
.price-cell strong {
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.price-cell span {
  display: block;
}
.action-cell {
  text-align: center;
}
.quote-pill {
  border: 0;
  border-radius: 999px;
  min-width: 138px;
  padding: 12px 20px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.quote-pill .icon {
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}
.quote-pill:hover {
  transform: translateY(-1px);
  background: #e2e8f0;
}
.quote-pill.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(177,36,26,.22);
}
.quote-pill.primary:hover { background: var(--red-hover); }
.calculator {
  margin: 34px auto 0;
  max-width: 1030px;
  background: var(--slate-900);
  color: var(--white);
  border-radius: 26px;
  padding: 38px 42px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .28);
}
.calculator-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(148, 163, 184, .22);
}
.calculator-title {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 auto;
}
.calculator-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 28px;
  font-weight: 950;
}
.calculator-icon .icon { width: 32px; height: 32px; }
.calculator-title h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
  white-space: nowrap;
}
.calculator-title p {
  margin: 7px 0 0;
  color: #94a3b8;
  font-size: 15px;
}
.promo-active {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  border: 1px solid rgba(177, 36, 26, .55);
  background: rgba(177, 36, 26, .14);
  color: #ffb4a9;
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 950;
  font-size: 14px;
  white-space: nowrap;
}
.promo-active span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
  animation: promo-pulse 1.35s ease-out infinite;
}
.calculator-body {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 34px;
  align-items: center;
  padding-top: 34px;
}
.calculator p, .capacity { color: #cbd5e1; line-height: 1.38; }
.range-label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin: 0 0 10px;
  color: #cbd5e1;
  font-weight: 900;
  font-size: 16px;
}
.range-label input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--red);
  cursor: pointer;
}
.range-label input::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: #1e293b;
}
.range-label input::-webkit-slider-thumb {
  width: 30px;
  height: 30px;
  margin-top: -10px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  appearance: none;
}
.range-label input::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: #1e293b;
}
.range-label input::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}
.range-label strong {
  color: #ffb4a9;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}
.range-marks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 14px 0 26px;
}
.range-marks button {
  background: transparent;
  border: 0;
  color: #64748b;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.range-marks strong {
  display: block;
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}
.range-marks span {
  display: block;
  color: #64748b;
  font-size: 11px;
  margin-top: 2px;
}
.range-marks button.active strong,
.range-marks button.active span {
  color: #ffb4a9;
}
.capacity {
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 16px;
  padding: 20px 22px;
}
.capacity-kicker {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 11px;
}
.capacity h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
}
.capacity p {
  margin: 0 0 16px;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.35;
}
.capacity-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
}
.capacity-items span {
  color: #cbd5e1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.32;
}
.capacity-items span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
}
.price-box {
  background: #020617;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 300px;
}
.price-box > span {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 800;
}
.price-box strong {
  color: #66ff8e;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  font-weight: 950;
}
.price-box small { color: var(--slate-500); font-size: 14px; }
.price-box p {
  border-top: 1px solid rgba(148, 163, 184, .2);
  margin: 14px 0 6px;
  padding-top: 20px;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.38;
}

.offer { padding: 48px 0; }
.offer-box {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background:
    linear-gradient(110deg, rgba(177, 36, 26, .97) 0%, rgba(177, 36, 26, .92) 43%, rgba(52, 79, 120, .92) 100%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .2), transparent 34%);
  color: var(--white);
  border-radius: 28px;
  padding: 46px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}
.offer-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .16), transparent 34%),
    linear-gradient(135deg, transparent 0 68%, rgba(255, 255, 255, .08) 68% 100%);
  pointer-events: none;
}
.offer-copy,
.offer-cta {
  position: relative;
  z-index: 1;
}
.offer-copy {
  max-width: 740px;
  flex: 1 1 auto;
  min-width: 0;
}
.offer h2 {
  max-width: 780px;
  font-size: clamp(28px, 3.25vw, 40px);
  line-height: 1.05;
}
.offer p {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  margin-top: 18px;
}
.offer .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.offer .eyebrow span,
.offer .eyebrow .icon {
  color: #ffd84a;
  width: 17px;
  height: 17px;
}
.offer-cta {
  flex: 0 0 auto;
  min-width: 360px;
  min-height: 64px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  color: var(--red);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .28);
}
.offer-cta strong {
  display: inline-grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
}
.offer-cta strong .icon { width: 23px; height: 23px; }

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 56px;
}
.testimonial-head h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}
.review-open {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(52, 79, 120, .22);
  white-space: nowrap;
}
.review-open .icon { width: 19px; height: 19px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}
.testimonial {
  min-height: 305px;
  padding: 34px;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  display: grid;
  align-content: space-between;
  gap: 28px;
  position: relative;
  animation: review-fade .35s ease both;
}
.testimonial.featured {
  min-height: 350px;
  background: var(--red);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 22px 46px rgba(177, 36, 26, .22);
}
.testimonial-stars {
  color: var(--red);
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}
.testimonial.featured .testimonial-stars {
  color: #ffd84a;
}
.quote-mark {
  position: absolute;
  right: 34px;
  top: 24px;
  color: rgba(255, 255, 255, .22);
  font-size: 72px;
  line-height: 1;
  font-weight: 950;
}
.testimonial p {
  color: #5f4b46;
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}
.testimonial.featured p {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, .16);
}
.testimonial-author strong {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #eef2f7;
  color: var(--blue);
  border-radius: 50%;
  font-size: 20px;
}
.testimonial.featured .testimonial-author strong {
  background: rgba(255, 255, 255, .22);
  color: var(--white);
}
.testimonial h3 {
  margin: 0 0 4px;
  color: var(--slate-900);
  font-size: 18px;
}
.testimonial.featured h3 {
  color: var(--white);
}
.testimonial span {
  color: #6d5a55;
  font-weight: 700;
  font-size: 14px;
}
.testimonial.featured span {
  color: rgba(255, 255, 255, .8);
}
.rating-summary {
  width: min(430px, 100%);
  margin: 42px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: #f8fafc;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
}
.rating-summary strong {
  color: var(--slate-900);
  font-size: 42px;
  line-height: 1;
}
.rating-summary span {
  color: #f4b400;
  font-size: 34px;
  padding-right: 18px;
  border-right: 1px solid var(--slate-200);
}
.rating-summary p {
  margin: 0;
  color: var(--slate-600);
  font-weight: 750;
  line-height: 1.25;
}
.review-panel {
  margin-top: 36px;
}
.review-form {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
  display: grid;
  gap: 20px;
}
.review-form h3 {
  margin: 0 0 6px;
  font-size: 26px;
}
.review-form p {
  margin: 0;
  color: var(--slate-600);
}
.review-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-fields label {
  display: grid;
  gap: 7px;
  color: var(--slate-900);
  font-weight: 900;
  font-size: 13px;
}
.review-fields label:last-child {
  grid-column: 1 / -1;
}
.review-fields input,
.review-fields select,
.review-fields textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
}
.faq details { background: var(--white); border: 1px solid var(--slate-200); border-radius: 14px; padding: 18px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 900; display: flex; align-items: center; gap: 10px; }
.faq p { color: var(--slate-600); line-height: 1.55; }
.summary-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(177,36,26,.1); color: var(--red); display: inline-grid; place-items: center; flex: 0 0 auto; }
.summary-icon .icon { width: 17px; height: 17px; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: stretch; }
.contact h2 { font-size: clamp(34px, 4vw, 52px); }
.contact-lead {
  color: var(--brown);
  font-size: 18px;
  line-height: 1.45;
  max-width: 560px;
}
.contact-card { margin: 22px 0; border-left: 7px solid var(--red); }
.contact-card p { color: var(--slate-600); line-height: 1.55; }
.contact-info-card {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 28px 34px;
  box-shadow: none;
  display: grid;
  gap: 24px;
}
.contact-info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}
.contact-info-row + .contact-info-row {
  padding-top: 24px;
  border-top: 1px solid #dbe3ee;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--red);
  background: #fbe8e8;
}
.contact-info-icon .icon { width: 22px; height: 22px; }
.contact-info-icon.small {
  width: 32px;
  height: 32px;
}
.contact-info-icon.small .icon { width: 18px; height: 18px; }
.contact-info-card h3 {
  margin: 0 0 6px;
  color: var(--slate-900);
  font-size: 17px;
}
.contact-info-card p {
  margin: 0;
  color: var(--brown);
  font-size: 14px;
}
.contact-info-card small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}
.contact-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #bbf7d0;
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #dbe3ee;
}
.contact-mini {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.contact-mini small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #94a3b8;
}
.contact-mini strong {
  display: block;
  color: var(--slate-900);
  font-size: 13px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.contact-whatsapp {
  min-height: 64px;
  font-size: 18px;
  box-shadow: 0 16px 30px rgba(37, 211, 102, .24);
}
.contact-whatsapp .icon { width: 22px; height: 22px; }
.map-panel {
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  display: grid;
  place-items: center;
  border: 1px solid var(--slate-200);
  position: relative;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
}
.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-bottom: 4px solid var(--red);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
  width: min(320px, calc(100% - 32px));
}
.map-card h3 { margin: 0 0 6px; }
.map-card p { margin: 0 0 6px; color: var(--brown); font-size: 13px; }
.map-card strong { display: block; color: var(--red); font-size: 12px; margin-bottom: 10px; }
.map-card a { color: var(--blue); font-weight: 900; font-size: 12px; }

.footer { background: var(--slate-900); color: #cbd5e1; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 40px; }
.footer a { display: block; margin: 8px 0; }
.footer .btn { display: inline-flex; }
.footer-brand { color: var(--white); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--slate-800); color: var(--slate-500); font-size: 13px; }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  font-weight: 900;
  isolation: isolate;
  animation: whatsapp-attention 2.2s ease-in-out infinite;
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .18);
  z-index: -1;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}
.floating-whatsapp .icon { width: 26px; height: 26px; }

.modal-open { overflow: hidden; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(4px);
}
.quote-modal-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .3);
  display: grid;
  gap: 14px;
  border-top: 5px solid var(--red);
}
.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--slate-600);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.quote-modal-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(177, 36, 26, .1);
  color: var(--red);
}
.quote-modal-icon .icon { width: 30px; height: 30px; }
.quote-modal-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: 28px;
}
.quote-modal-card > p:not(.eyebrow):not(.form-error) {
  margin: 0 0 4px;
  color: var(--slate-600);
  line-height: 1.45;
}
.quote-modal-card label {
  display: grid;
  gap: 7px;
  color: var(--slate-900);
  font-size: 13px;
  font-weight: 850;
}
.quote-modal-card input {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--slate-900);
  outline: none;
}
.quote-modal-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(69, 95, 135, .14);
}
.quote-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.admin-page { background: var(--slate-100); min-height: 100vh; }
.admin-header { background: var(--slate-950); color: var(--white); padding: 22px 0; }
.admin-header .shell { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.admin-main { padding: 30px 0; display: grid; gap: 24px; }
.admin-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}
.admin-tabs button {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--slate-600);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 14px;
}
.admin-tabs button.active {
  background: var(--blue);
  color: var(--white);
}
.admin-panel {
  display: none;
  gap: 24px;
}
.admin-panel.active {
  display: grid;
}
.admin-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: 18px; padding: 22px; box-shadow: 0 8px 30px rgba(15,23,42,.05); }
.login-box { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--slate-950); }
.login-box .admin-card { width: min(420px, 100%); }
.login-box label, .settings-grid label { display: grid; gap: 7px; margin-bottom: 14px; font-weight: 800; font-size: 13px; color: var(--slate-600); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric strong { display: block; font-size: 26px; margin-top: 4px; }
.filters, .settings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: end; }
.lead-list { display: grid; gap: 14px; }
.lead-item { border: 1px solid var(--slate-200); border-radius: 16px; padding: 16px; display: grid; gap: 12px; }
.lead-top { display: flex; justify-content: space-between; gap: 16px; }
.status-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.status-buttons button { border: 0; border-radius: 8px; padding: 8px 10px; cursor: pointer; font-weight: 800; }
.status-buttons button.active { background: var(--red); color: var(--white); }
.note-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.lead-admin-meta {
  display: grid;
  gap: 6px;
  color: var(--slate-500);
  font-size: 13px;
  word-break: break-word;
}
.muted { color: var(--slate-500); }
.admin-message { font-weight: 800; color: #047857; }
.admin-error { font-weight: 800; color: #b91c1c; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 20px;
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .split, .hub-grid, .calculator-body, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .calculator { padding: 28px 18px; border-radius: 22px; }
  .calculator-head { flex-direction: column; align-items: flex-start; }
  .calculator-title { align-items: flex-start; }
  .calculator-title h3 { white-space: normal; }
  .promo-active { white-space: normal; }
  .range-label { grid-template-columns: 1fr; }
  .range-marks { grid-template-columns: repeat(2, 1fr); }
  .capacity-items { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .card-grid.three, .metric-grid, .filters, .settings-grid, .capsule-grid, .testimonial-grid, .review-fields { grid-template-columns: 1fr; }
  .testimonial-head { flex-direction: column; align-items: flex-start; margin-bottom: 34px; }
  .testimonial-head h2 { font-size: clamp(30px, 9vw, 40px); }
  .review-open { width: 100%; justify-content: center; }
  .testimonial, .testimonial.featured { min-height: auto; padding: 28px; }
  .rating-summary { grid-template-columns: auto auto; }
  .rating-summary p { grid-column: 1 / -1; }
  .offer-box { flex-direction: column; align-items: flex-start; padding: 34px 24px; gap: 28px; }
  .offer p { font-size: 17px; }
  .offer-cta { width: 100%; min-width: 0; min-height: 62px; padding: 0 22px; font-size: 15px; }
  .contact-info-card { padding: 24px 20px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .map-panel { min-height: 420px; }
  .quote-modal-card { padding: 26px 20px; }
  .quote-modal-actions { flex-direction: column-reverse; }
  .quote-modal-actions .btn { width: 100%; }
  .lead-top { flex-direction: column; }
}

@keyframes gift-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  45% { transform: translateY(-4px) rotate(-7deg); }
  70% { transform: translateY(1px) rotate(5deg); }
}

@keyframes review-fade {
  from { opacity: .72; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes promo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .42); opacity: .8; }
  55% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); opacity: 1; }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); opacity: .82; }
}

@keyframes whatsapp-pulse {
  0% { transform: scale(.78); opacity: .72; }
  60% { transform: scale(1.18); opacity: .18; }
  100% { transform: scale(1.28); opacity: 0; }
}

@keyframes whatsapp-attention {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.04); }
}
