:root {
  --blue: #0b66d8;
  --blue-dark: #0b2a66;
  --blue-soft: #eaf4ff;
  --yellow: #ffd34d;
  --orange: #ff7a1a;
  --red: #ef4444;
  --green: #16a34a;
  --green-dark: #0d7c36;
  --cream: #fffaf0;
  --text: #263044;
  --muted: #677084;
  --card: #ffffff;
  --border: #dde7f3;
  --shadow: 0 18px 45px rgba(11, 42, 102, .12);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 6% 12%, rgba(255, 211, 77, .23), transparent 26rem),
    radial-gradient(circle at 95% 4%, rgba(11, 102, 216, .13), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 45%, #ffffff 100%);
}

body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,231,243,.8);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--blue-dark);
  min-width: max-content;
}

.brand-logo-img {
  display: block;
  width: 230px;
  height: 72px;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
  font-weight: 800;
  font-size: .95rem;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--blue-dark);
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transition: width .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(11, 102, 216, .18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 102, 216, .24);
  filter: brightness(1.03);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, var(--green));
  box-shadow: 0 14px 28px rgba(22, 163, 74, .24);
}

.header-cta {
  font-size: .92rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
  border-radius: 99px;
}

.section {
  padding: 78px 0;
}

.hero {
  padding: 38px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  min-height: 540px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff3c4;
  color: #9a4b00;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: .95;
  color: var(--blue-dark);
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 24px 0 30px;
}

.hero-image-wrap {
  position: relative;
}

.hero-single-image {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(11, 42, 102, .18);
}

.hero-single-image img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  height: auto;
  object-fit: cover;
}

.hero .hero-image-note {
  max-width: 100%;
  margin: 8px 12px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0.82;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(11, 102, 216, .14);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, .34), rgba(234, 244, 255, .97));
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(11, 42, 102, .08);
}

.section-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-icon-toys,
.section-icon-review {
  color: var(--orange);
  background:
    linear-gradient(135deg, rgba(255, 211, 77, .44), rgba(255, 250, 240, .98));
}

.section-icon-info,
.section-icon-summary {
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(234, 244, 255, .98), rgba(255, 255, 255, .96));
}

.section-icon-about,
.section-icon-steps {
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(234, 248, 239, .98), rgba(234, 244, 255, .92));
}

.section-heading h2 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.08rem;
}

.toys-section {
  padding-top: 48px;
  background: linear-gradient(180deg, transparent, rgba(234, 244, 255, .58), transparent);
}

.about-section {
  padding: 62px 0;
  background: rgba(255, 255, 255, .72);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.about-copy h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.about-highlights div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 42, 102, .07);
}

.about-highlights strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

.about-highlights span {
  color: var(--muted);
  line-height: 1.45;
}

.toy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.toy-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(11, 42, 102, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.toy-card img {
  width: calc(100% - 18px);
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 9px auto 0;
  object-fit: cover;
  border-radius: 21px;
  background: var(--blue-soft);
  box-shadow: 0 10px 22px rgba(11, 42, 102, .12);
  transition: transform .35s ease;
}

.zoomable-image {
  cursor: zoom-in;
}

.zoomable-image:focus-visible {
  outline: 4px solid rgba(11, 102, 216, .35);
  outline-offset: 4px;
}

.toy-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 24px;
  text-align: center;
}

.toy-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1.18;
}

.toy-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.35;
}

.toy-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

.toy-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.toy-action:hover,
.toy-action:focus-visible {
  transform: translateY(-1px);
}

.toy-detail-button:hover,
.toy-detail-button:focus-visible {
  background: var(--blue);
  color: #fff;
}

.steps-grid {
  display: grid;
  gap: 22px;
}

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

.step-card {
  position: relative;
  padding: 34px 26px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 14px 34px rgba(11, 42, 102, .07);
}

.step-number {
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 4px auto 16px;
  border: 1px solid rgba(11, 102, 216, .13);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, .24), rgba(234, 244, 255, .96));
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(11, 42, 102, .08);
}

.step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon-toys {
  color: var(--orange);
}

.step-icon-calendar {
  color: var(--blue);
}

.step-icon-delivery {
  color: var(--green);
}

.step-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.important-info {
  margin-top: 24px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(11, 42, 102, .07);
}

.important-info-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.important-info-heading .section-icon {
  margin: 0;
}

.important-info h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.important-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.important-info li {
  position: relative;
  padding-left: 30px;
  color: #3d4759;
  font-weight: 800;
  line-height: 1.45;
}

.important-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.final-cta {
  padding: 82px 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 32px;
  align-items: center;
  padding: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 211, 77, .22), transparent 16rem),
    radial-gradient(circle at 4% 98%, rgba(11, 102, 216, .34), transparent 18rem),
    linear-gradient(135deg, #061630 0%, #082450 55%, #0b3f88 100%);
  box-shadow: 0 30px 78px rgba(6, 22, 48, .28);
  overflow: hidden;
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.final-cta p {
  margin: 0 0 24px;
  color: rgba(234, 244, 255, .9);
  font-size: 1.15rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.final-cta-primary {
  background: #fff;
  color: var(--blue-dark);
  border: 2px solid rgba(255, 211, 77, .72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.final-cta-primary:hover,
.final-cta-primary:focus-visible {
  color: var(--blue-dark);
  background: #fff3c4;
}

.final-cta .btn-whatsapp {
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 16px 34px rgba(3, 80, 40, .28);
}

.cta-gentle-pulse {
  animation: budgetCtaPulse 4.6s ease-in-out infinite;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(234, 244, 255, .12);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.contact-list li {
  margin: 14px 0;
  font-size: 1.05rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: #fff3c4;
}

.site-footer {
  padding: 36px 0;
  text-align: center;
  color: rgba(234, 244, 255, .78);
  background:
    radial-gradient(circle at 14% 0%, rgba(11, 102, 216, .22), transparent 18rem),
    linear-gradient(135deg, #061630 0%, #071f45 100%);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  display: grid;
  gap: 14px;
}

.footer-copyright {
  color: #fff;
  font-weight: 900;
}

.footer-company {
  display: grid;
  gap: 5px;
  color: rgba(234, 244, 255, .78);
  font-size: .94rem;
  line-height: 1.45;
}

.footer-contact-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.footer-company a,
.footer-legal-links a {
  color: #fff3c4;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-company a:hover,
.footer-company a:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #fff;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .94rem;
  font-weight: 900;
}

.legal-body {
  min-height: 100vh;
  background: #f4f8fd;
}

.legal-header-inner {
  justify-content: space-between;
}

.legal-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.legal-back-link {
  min-height: 44px;
  padding: 0 18px;
}

.legal-main {
  padding: 48px 0 72px;
}

.legal-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 28px;
  border-bottom: 1px solid #c8daf0;
}

.legal-hero h1 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.04;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.legal-content {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 38px 42px;
  border: 1px solid #c8daf0;
  border-radius: 24px;
  background: #fff;
}

.legal-content section + section {
  margin-top: 30px;
  padding-top: 2px;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 1.4rem;
  line-height: 1.25;
}

.legal-content p {
  margin: 0 0 12px;
  color: #3d4759;
  line-height: 1.65;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 8px 0 0;
  padding-left: 22px;
  color: #3d4759;
}

.legal-content li {
  margin: 8px 0;
  line-height: 1.55;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--blue-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #22c55e, var(--green));
  box-shadow: 0 16px 35px rgba(22, 163, 74, .36);
  font-size: 30px;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 70;
  width: min(342px, calc(100vw - 32px));
  max-height: calc(100vh - 126px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(22, 163, 74, .2);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(11, 42, 102, .22);
}

.whatsapp-widget[hidden] {
  display: none;
}

.whatsapp-widget::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #22c55e, var(--green-dark));
}

.whatsapp-widget-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.whatsapp-widget-close:hover,
.whatsapp-widget-close:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
}

.whatsapp-widget strong {
  display: block;
  margin: 4px 44px 10px 0;
  color: var(--green-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.whatsapp-widget p {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.45;
}

.whatsapp-widget ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.whatsapp-widget li {
  display: flex;
  gap: 8px;
  margin: 8px 0;
  line-height: 1.35;
}

.whatsapp-widget li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green-dark);
  font-size: .78rem;
}

.whatsapp-widget-actions {
  display: grid;
  gap: 10px;
}

.whatsapp-widget-actions .btn {
  width: 100%;
}

.btn-outline {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blue);
  color: #fff;
}

.quote-body {
  min-height: 100vh;
  background: #f4f8fd;
}

.quote-header-inner {
  justify-content: space-between;
}

.quote-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  font-weight: 900;
}

.quote-nav a:not(.btn) {
  color: var(--blue-dark);
  text-decoration: none;
}

.quote-nav a:not(.btn):hover,
.quote-nav a:not(.btn):focus-visible {
  color: var(--blue);
}

.quote-nav-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: .92rem;
}

.quote-page {
  background: #f4f8fd;
}

.quote-hero {
  padding: 42px 0 22px;
}

.quote-hero-inner {
  max-width: none;
  padding: 34px 38px 30px;
  border-radius: 28px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 42px rgba(11, 102, 216, .18);
}

.quote-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 4.35rem);
  line-height: .98;
  letter-spacing: 0;
}

.quote-hero p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.35;
}

.quote-builder {
  padding-top: 12px;
}

.quote-builder-inner {
  display: grid;
  min-width: 0;
  gap: 32px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-width: 0;
  gap: 30px;
  align-items: start;
}

.quote-main {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.quote-panel,
.quote-summary-card {
  border: 1px solid #c8daf0;
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}

.quote-panel {
  padding: 28px 34px;
}

.quote-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.quote-panel-heading .section-icon {
  flex: 0 0 auto;
  margin: 0;
}

.quote-panel-heading h2,
.quote-summary-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.08;
}

.quote-panel-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 800;
}

.quote-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 0 34px;
}

.quote-filter {
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.quote-filter:hover,
.quote-filter:focus-visible,
.quote-filter.is-active {
  outline: 0;
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.quote-toy-list {
  display: grid;
  gap: 12px;
}

.quote-toy-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 10px 14px;
  border: 1px solid #d1e2f6;
  border-radius: 18px;
  background: #f8fbff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.quote-toy-card.is-selected {
  border-color: rgba(22, 163, 74, .52);
  background: #f8fbff;
  box-shadow: none;
}

.quote-toy-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11, 42, 102, .1);
}

.quote-toy-card img {
  width: 58px;
  height: 48px;
  object-fit: cover;
  border-radius: 13px;
  background: var(--blue-soft);
}

.quote-toy-card h3 {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.18;
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quote-tags span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.quote-toggle {
  min-height: 36px;
  padding: 0 18px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.quote-toy-card.is-selected .quote-toggle {
  background: var(--green);
  color: #fff;
}

.quote-toggle:hover,
.quote-toggle:focus-visible {
  outline: 3px solid rgba(11, 102, 216, .18);
  filter: brightness(1.04);
}

.quote-summary {
  position: sticky;
  top: 104px;
}

.quote-summary-card {
  padding: 28px 34px 32px;
}

.quote-summary-card .section-icon {
  margin-bottom: 12px;
}

.quote-count {
  margin: 14px 0 22px;
  padding: 14px 18px;
  border: 1px solid #b7e7c6;
  border-radius: 16px;
  background: #eaf8ef;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
}

.quote-selected-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-selected-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid #d1e2f6;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--blue-dark);
  font-weight: 900;
}

.quote-selected-list button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c7372f;
  cursor: pointer;
  font: inherit;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 4px 8px;
  line-height: 1;
}

.quote-empty {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.45;
}

.quote-message {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 16px;
  background: #fff1f2;
  color: #991b1b;
  font-weight: 900;
  line-height: 1.4;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.quote-summary-form {
  margin-top: 28px;
}

.quote-summary-form h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.15;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 900;
}

.quote-form label span {
  font-size: .84rem;
}

.quote-form small {
  color: var(--muted);
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
}

.quote-form .btn {
  width: 100%;
  margin-top: 8px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(11, 102, 216, .18);
  border-color: var(--blue);
}

.quote-form input.is-invalid,
.quote-form textarea.is-invalid {
  border-color: #ef4444;
  background: #fff7f7;
}

.quote-review {
  display: grid;
  gap: 14px;
}

.quote-review h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1.18rem;
}

.quote-review ul {
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.7;
}

.quote-review dl {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.quote-review dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.quote-review dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.quote-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 42, 102, .56);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none;
}

.toy-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(980px, 100%);
  max-height: min(90vh, 780px);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(221,231,243,.95);
  box-shadow: 0 30px 80px rgba(11, 42, 102, .28);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(11, 42, 102, .12);
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.toy-modal-main {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1.12fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 28px;
  min-height: 0;
  overflow: hidden;
  padding: 30px;
}

.toy-modal-media {
  align-self: start;
  display: grid;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.toy-modal-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  background: var(--blue-soft);
  box-shadow: 0 14px 34px rgba(11, 42, 102, .12);
}

#toy-modal-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.toy-modal #toy-modal-image.zoomable-image:hover {
  filter: brightness(.98);
}

.toy-mobile-carousel {
  display: none;
}

.toy-mobile-carousel[hidden] {
  display: none;
}

.toy-gallery-thumbs {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.toy-gallery-thumbs[hidden] {
  display: none;
}

.toy-gallery-thumb {
  flex: 0 0 74px;
  width: 74px;
  aspect-ratio: 4 / 3;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 42, 102, .1);
  opacity: .72;
  transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease, transform .18s ease;
}

.toy-gallery-thumb:hover,
.toy-gallery-thumb:focus-visible {
  opacity: 1;
  border-color: rgba(11, 102, 216, .45);
  transform: translateY(-1px);
}

.toy-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(11, 102, 216, .22);
}

.toy-gallery-thumb[hidden] {
  display: none;
}

.toy-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.toy-modal-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 4px 4px;
  scrollbar-gutter: stable;
}

.toy-modal-content {
  padding: 0 4px;
}

.modal-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .86rem;
  font-weight: 900;
}

.toy-modal h2 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.modal-description p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.modal-tags[hidden] {
  display: none;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.modal-tag-alert {
  color: #a51f3d;
  background: #fff0f3;
  border-color: rgba(225, 29, 72, .22);
}

.modal-tag-info {
  color: #0b4da2;
  background: #eaf4ff;
  border-color: rgba(11, 102, 216, .18);
}

.modal-tag-success {
  color: #0d7a3b;
  background: #eafaf1;
  border-color: rgba(22, 163, 74, .2);
}

.modal-tag-neutral {
  color: #4b5a70;
  background: #f3f6fa;
  border-color: rgba(91, 110, 132, .18);
}

.modal-tag-warning {
  color: #8a4f00;
  background: #fff7df;
  border-color: rgba(255, 138, 31, .26);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
}

.detail-list dt {
  color: var(--blue-dark);
  font-weight: 900;
}

.detail-list dd {
  margin: -8px 0 0;
  color: #3d4759;
  line-height: 1.45;
}

.detail-list ul {
  margin: 0;
  padding-left: 20px;
}

.detail-list li {
  margin: 4px 0;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .78);
}

.image-lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 0;
}

#lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

#lightbox-caption {
  max-width: 90vw;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .42);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 221;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(0, 0, 0, .52);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .72);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 221;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(0, 0, 0, .52);
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .72);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-nav[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .56s ease, transform .56s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes budgetCtaPulse {
  0%, 68%, 100% {
    box-shadow: 0 12px 24px rgba(11, 102, 216, .18);
  }
  82% {
    box-shadow: 0 0 0 6px rgba(255, 211, 77, .16), 0 18px 34px rgba(11, 42, 102, .2);
  }
}

@media (min-width: 981px) {
  .toy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .toy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(11, 42, 102, .13);
    border-color: rgba(11, 102, 216, .3);
  }

  .toy-card:hover img {
    transform: scale(1.015);
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: var(--blue-soft);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .final-cta-inner,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }

  .quote-layout {
    gap: 22px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-single-image {
    border-width: 8px;
    border-radius: 34px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .important-info ul {
    grid-template-columns: 1fr;
  }

  .toy-modal-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
  }

  .toy-modal-media {
    justify-self: center;
    width: min(100%, 520px);
  }
}

@media (max-width: 768px) {
  .quote-header-inner {
    min-height: 70px;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 4px 0;
  }

  .quote-header .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .quote-header .brand-logo-img {
    width: 200px;
    height: 62px;
  }

  .quote-nav {
    width: auto;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 0;
    margin-left: auto;
  }

  .quote-nav-primary {
    white-space: nowrap;
    font-size: .9rem;
  }

  .quote-nav-secondary,
  .quote-whatsapp {
    display: none;
  }

  .toy-modal-image-frame .zoomable-image {
    cursor: pointer;
  }

  .toy-mobile-carousel:not([hidden]) {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    pointer-events: none;
  }

  .toy-mobile-nav {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 10px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: rgba(0, 0, 0, .34);
    color: #fff;
    cursor: pointer;
    font-size: 2.1rem;
    line-height: 1;
    pointer-events: auto;
  }

  .toy-mobile-prev {
    justify-self: start;
  }

  .toy-mobile-next {
    justify-self: end;
  }

  .toy-mobile-counter {
    align-self: start;
    justify-self: center;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .48);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 54px 0;
  }

  .about-section {
    padding: 46px 0;
  }

  .hero {
    padding: 26px 0 24px;
  }

  .brand-logo-img {
    width: min(188px, calc(100vw - 96px));
    height: 54px;
  }

  .hero-content {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  .hero p {
    max-width: 36rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
    line-height: 1.5;
  }

  .section-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 15px;
  }

  .section-icon svg {
    width: 22px;
    height: 22px;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }

  .btn {
    width: 100%;
  }

  .toys-section {
    padding-top: 38px;
  }

  .toy-grid {
    grid-template-columns: 1fr;
  }

  .toy-card-actions {
    grid-template-columns: 1fr;
  }

  .important-info {
    padding: 22px;
    border-radius: 22px;
  }

  .important-info-heading {
    align-items: flex-start;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
  }

  .legal-nav {
    margin-left: 0;
  }

  .legal-nav .btn {
    width: auto;
  }

  .legal-main {
    padding: 34px 0 52px;
  }

  .legal-hero {
    padding-bottom: 22px;
  }

  .legal-content {
    margin-top: 20px;
    padding: 26px 20px;
    border-radius: 20px;
  }

  .legal-content section + section {
    margin-top: 25px;
  }

  .footer-contact-line {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .footer-contact-line span {
    display: none;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal-links span {
    display: none;
  }

  .quote-header-inner {
    min-height: 62px;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
  }

  .quote-nav {
    width: auto;
    flex-wrap: nowrap;
    margin-left: auto;
  }

  .quote-nav-primary {
    font-size: .82rem;
  }

  .quote-hero {
    padding: 44px 0 28px;
  }

  .quote-hero-inner {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .quote-builder-inner {
    gap: 20px;
  }

  .quote-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    max-width: 100%;
    padding: 0;
    overflow: visible;
  }

  .quote-filter {
    flex: 0 0 auto;
  }

  .quote-panel,
  .quote-summary-card {
    border-radius: 24px;
    padding: 18px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-toy-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .quote-toy-card img {
    width: 58px;
    height: 52px;
    border-radius: 14px;
  }

  .quote-toggle {
    grid-column: 1 / -1;
    width: 100%;
  }

  .quote-review dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .quote-review dd {
    margin-bottom: 10px;
  }

  .quote-review-actions .btn {
    width: 100%;
  }

  .hero-single-image,
  .final-cta-inner {
    border-radius: 28px;
  }

  .hero-single-image {
    border-width: 6px;
    box-shadow: 0 18px 42px rgba(11, 42, 102, .14);
  }

  .hero .hero-image-note {
    margin: 8px 4px 0;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .final-cta-inner {
    padding: 28px 22px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-widget {
    right: 11px;
    bottom: 82px;
    width: calc(100vw - 22px);
    max-height: calc(100vh - 104px);
    padding: 20px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 10px;
  }

  .toy-modal {
    width: 100%;
    max-height: 90vh;
    border-radius: 24px;
  }

  .toy-modal-main {
    gap: 18px;
    padding: 18px;
  }

  .toy-modal-media {
    width: min(100%, 346px);
  }

  .toy-modal-image-frame {
    border-radius: 20px;
  }

  .toy-gallery-thumb {
    flex-basis: 64px;
    width: 64px;
    border-radius: 12px;
  }

  .toy-modal-scroll {
    padding: 0;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }

  .image-lightbox {
    padding: 12px;
  }

  #lightbox-image {
    max-width: 95vw;
    max-height: 80vh;
    border-radius: 18px;
  }

  #lightbox-caption {
    max-width: 95vw;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 2.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
