:root {
  --ink: #243044;
  --muted: #6e7787;
  --line: rgba(36, 48, 68, 0.12);
  --paper: #fffdfa;
  --white: #ffffff;

  --pink: #f4a5bd;
  --coral: #f1997d;
  --mint: #8ccfc2;
  --aqua: #8fcdd2;
  --lavender: #b7a4d6;
  --yellow: #f5cd6a;
  --denim: #7ea6bd;
  --denim-dark: #456b80;

  --shadow: 0 24px 70px rgba(36, 48, 68, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --font-main: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 165, 189, 0.16), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(140, 207, 194, 0.16), transparent 26%),
    var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 250, 0.86);
  border-bottom: 1px solid rgba(36, 48, 68, 0.08);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  min-width: 150px;
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-size: 1.35rem;
  color: var(--denim-dark);
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  color: rgba(36, 48, 68, 0.78);
}

.nav-menu a:hover {
  color: var(--denim-dark);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--pink), var(--coral), var(--mint));
  box-shadow: 0 12px 28px rgba(241, 153, 125, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  border-radius: 2px;
}

.section,
.hero {
  padding: 96px 0;
}

.section-soft {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.decor {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.42;
}

.decor-1 {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(244, 165, 189, 0.45), rgba(245, 205, 106, 0.35));
  top: -120px;
  right: -90px;
}

.decor-2 {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(140, 207, 194, 0.45), rgba(183, 164, 214, 0.3));
  bottom: -80px;
  left: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--denim-dark);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.86);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-lead,
.section-heading p,
.split-copy p,
.personalizer-panel p,
.proof-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 650;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--denim-dark), var(--mint));
  box-shadow: 0 14px 30px rgba(69, 107, 128, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-light {
  background: var(--white);
  color: var(--denim-dark);
  box-shadow: 0 18px 40px rgba(36, 48, 68, 0.18);
  width: fit-content;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(36, 48, 68, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.main-card {
  padding: 16px;
  transform: rotate(1.5deg);
}

.main-card img,
.split-visual img,
.gallery-item img,
.mockup-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-card img {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
}

.floating-note {
  position: absolute;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 48, 68, 0.08);
  box-shadow: 0 18px 40px rgba(36, 48, 68, 0.12);
  font-weight: 900;
  color: var(--ink);
}

.note-top {
  top: 40px;
  right: -28px;
}

.note-bottom {
  left: -30px;
  bottom: 56px;
}

.intro-strip {
  padding: 26px 0;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--yellow), var(--mint), var(--aqua), var(--lavender));
}

.intro-strip-inner p {
  color: var(--white);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.4;
  text-align: center;
  font-weight: 950;
  margin: 0;
  text-shadow: 0 1px 12px rgba(36, 48, 68, 0.16);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 48, 68, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 260px;
  box-shadow: 0 16px 50px rgba(36, 48, 68, 0.07);
}

.benefit-card p,
.process-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
  font-weight: 650;
}

.icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  font-weight: 950;
}

.icon-bubble.mint { background: rgba(140, 207, 194, 0.28); color: #367f72; }
.icon-bubble.peach { background: rgba(241, 153, 125, 0.24); color: #b65c44; }
.icon-bubble.lavender { background: rgba(183, 164, 214, 0.26); color: #6d5a92; }
.icon-bubble.yellow { background: rgba(245, 205, 106, 0.26); color: #9b7417; }

.split-section {
  background: rgba(255, 255, 255, 0.52);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.split-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}

.split-visual img {
  min-height: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--denim-dark);
  font-weight: 950;
  text-decoration: none;
  border-bottom: 2px solid var(--mint);
}

.personalizer-section {
  padding: 72px 0;
}

.personalizer-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 205, 106, 0.34), transparent 23%),
    linear-gradient(135deg, var(--denim-dark), var(--mint), var(--lavender));
  box-shadow: var(--shadow);
}

.personalizer-panel h2 {
  max-width: 650px;
}

.personalizer-panel p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
}

.mockup {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 70px rgba(36, 48, 68, 0.22);
  transform: rotate(2deg);
}

.mockup-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: rgba(36, 48, 68, 0.06);
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pink);
}

.mockup-top span:nth-child(2) { background: var(--yellow); }
.mockup-top span:nth-child(3) { background: var(--mint); }

.mockup-body {
  aspect-ratio: 4 / 3;
  padding: 12px;
}

.mockup-body img {
  border-radius: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 265px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(36, 48, 68, 0.08);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.gallery-item span,
.footer-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.gallery-item strong {
  display: block;
  margin-top: 2px;
  font-size: 1.2rem;
  font-weight: 950;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.88));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(36, 48, 68, 0.08);
  box-shadow: 0 18px 50px rgba(36, 48, 68, 0.07);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--mint));
  color: var(--white);
  font-weight: 950;
}

.social-proof {
  padding: 70px 0;
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  background: rgba(255, 255, 255, 0.48);
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(36, 48, 68, 0.08);
  box-shadow: 0 14px 40px rgba(36, 48, 68, 0.06);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  text-align: center;
}

.final-cta-inner {
  border-radius: 38px;
  padding: 62px 28px;
  background:
    radial-gradient(circle at 12% 28%, rgba(244, 165, 189, 0.22), transparent 24%),
    radial-gradient(circle at 90% 22%, rgba(140, 207, 194, 0.22), transparent 26%),
    var(--white);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 26px;
}

.site-footer {
  padding: 54px 0 28px;
  background: #1f2633;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 42px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.footer-grid a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-weight: 750;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  text-decoration: none;
  background: #25d366;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  z-index: 900;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .personalizer-panel,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .note-top {
    right: 10px;
  }

  .note-bottom {
    left: 10px;
  }

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

  .gallery-item.large {
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid rgba(36, 48, 68, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .section,
  .hero {
    padding: 76px 0;
  }

  .hero-grid {
    gap: 38px;
  }

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

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .floating-note {
    position: static;
    margin: 12px auto 0;
    max-width: none;
    text-align: center;
  }

  .main-card {
    transform: none;
  }

  .personalizer-panel {
    padding: 34px 22px;
  }

  .gallery-grid,
  .looks-grid,
  .benefit-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
  }

  .split-visual,
  .split-visual img {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 3rem;
  }

  .btn {
    width: 100%;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
  }
}

.looks-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 205, 106, 0.14), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(244, 165, 189, 0.13), transparent 26%),
    rgba(255, 255, 255, 0.58);
}

.looks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.look-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.look-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.look-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.look-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
  line-height: 1.25;
}


/* --- Ajustes comerciales PazKids --- */

.site-header {
  background: rgba(255, 253, 250, 0.92);
}

.nav-menu {
  gap: 20px;
}

.nav-menu a {
  font-size: 0.9rem;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}

.gallery-feature,
.product-tile,
.more-products article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(36, 48, 68, 0.08);
}

.gallery-feature {
  min-height: 640px;
}

.gallery-feature img,
.product-tile img,
.more-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature div,
.product-tile div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.gallery-feature span,
.product-tile span,
.more-products span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.gallery-feature strong,
.product-tile strong {
  display: block;
  margin-top: 3px;
  font-size: 1.15rem;
  line-height: 1.22;
  font-weight: 950;
}

.gallery-feature p {
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.product-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 309px;
  gap: 16px;
}

.more-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.more-products article {
  aspect-ratio: 1 / 1.12;
}

.more-products span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.community-panel {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 42px;
  align-items: center;
}

.community-copy p {
  max-width: 650px;
}

.instagram-actions {
  display: grid;
  gap: 16px;
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.18);
}

.instagram-card strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 950;
}

.instagram-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.ig-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.ig-mark::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid #fff;
  border-radius: 10px;
}

.ig-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: -9px 9px 0 2px transparent;
}

.final-cta.compact {
  padding: 58px 0;
}

.final-cta.compact .final-cta-inner {
  padding: 42px 24px;
  border-radius: 30px;
}

.final-cta.compact h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.site-footer {
  padding: 36px 0 20px;
}

.footer-grid {
  gap: 26px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
}

@media (max-width: 980px) {
  .gallery-showcase,
  .community-panel {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    min-height: 520px;
  }

  .product-mosaic,
  .more-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-mosaic {
    grid-auto-rows: 320px;
  }
}

@media (max-width: 760px) {
  .nav {
    height: 72px;
  }

  .brand-logo {
    height: 52px;
  }

  .nav-menu {
    top: 82px;
  }

  .gallery-feature {
    min-height: 460px;
  }

  .product-mosaic,
  .more-products {
    grid-template-columns: 1fr;
  }

  .product-mosaic {
    grid-auto-rows: 360px;
  }

  .more-products article {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    height: 48px;
  }
}


/* --- Header final: logo protagonista pero franja fina --- */
.nav {
  height: 76px;
}

.brand {
  min-width: 150px;
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

@media (max-width: 760px) {
  .nav {
    height: 72px;
  }

  .brand-logo {
    height: 52px;
  }

  .nav-menu {
    top: 82px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    height: 48px;
  }
}



/* --- Frente y espalda definitivo PazKids --- */
.front-back-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 165, 189, 0.12), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(140, 207, 194, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.56);
}

.front-back-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(940px, 100%);
  margin: 0 auto;
}

.front-back-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.front-back-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-back-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.front-back-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.front-back-card strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  line-height: 1.32;
  font-size: 1rem;
  font-weight: 950;
}

/* --- Biblioteca ligera definitiva PazKids --- */
.gallery-showcase {
  align-items: stretch;
}

.gallery-feature {
  min-height: 650px;
}

.product-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 310px;
  gap: 16px;
}

.product-tile {
  min-height: 0;
}

.product-tile img {
  object-fit: cover;
}

@media (max-width: 980px) {
  .front-back-grid {
    grid-template-columns: 1fr;
  }

  .front-back-card {
    min-height: 420px;
  }

  .gallery-feature {
    min-height: 520px;
  }

  .product-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }
}

@media (max-width: 760px) {
  .front-back-card {
    min-height: 360px;
  }

  .product-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }
}


/* --- Ajuste sección comunidad PazKids --- */
.community-panel {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: center;
}

.community-copy p {
  max-width: 660px;
}

.instagram-actions {
  display: grid;
  gap: 14px;
  align-content: center;
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.instagram-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  border-color: rgba(255, 255, 255, 0.65);
}

.instagram-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.instagram-card small {
  display: block;
  margin-top: 3px;
  color: rgba(58, 71, 95, 0.8);
  font-size: 0.92rem;
  font-weight: 800;
}

.ig-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 15px;
  position: relative;
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 78%, #515bd4);
  box-shadow: 0 10px 24px rgba(131, 52, 175, 0.25);
}

.ig-mark::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2.5px solid #fff;
  border-radius: 9px;
}

.ig-mark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 980px) {
  .community-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* --- Preguntas frecuentes con imagen PazKids --- */
.faq-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(244, 165, 189, 0.12), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(140, 207, 194, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.58);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 56px;
  align-items: start;
}

.faq-visual {
  position: sticky;
  top: 104px;
  margin: 0;
}

.faq-visual img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.faq-visual-note {
  width: calc(100% - 34px);
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(36, 48, 68, 0.12);
}

.faq-visual-note span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.faq-visual-note strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 950;
}

.faq-content .section-heading {
  text-align: left;
  margin-left: 0;
  margin-bottom: 28px;
}

.faq-content .section-heading p {
  max-width: 700px;
}

.faq-groups {
  display: grid;
  gap: 24px;
}

.faq-group {
  display: grid;
  gap: 11px;
}

.faq-group h3 {
  margin: 0 0 4px;
  color: var(--denim-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 950;
}

.faq-list {
  width: 100%;
}

.faq-group details {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(36, 48, 68, 0.08);
  box-shadow: 0 12px 30px rgba(36, 48, 68, 0.055);
}

.faq-group summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  font-weight: 950;
}

.faq-group summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--denim-dark);
  background: rgba(140, 207, 194, 0.18);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-group details[open] summary::after {
  content: "–";
}

.faq-group details p,
.faq-price {
  padding: 0 20px 18px;
}

.faq-group details p {
  margin: 0;
}

.faq-price p {
  padding: 0;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}

.price-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.86);
  border: 1px solid rgba(36, 48, 68, 0.08);
}

.price-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 950;
}

.price-card p {
  margin-bottom: 7px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-visual {
    position: relative;
    top: auto;
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .faq-content .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .faq-visual img {
    aspect-ratio: 4 / 4.55;
  }
}


/* --- CTA final PazKids por país --- */
.final-cta.compact {
  padding: 62px 0;
}

.final-cta.compact .final-cta-inner {
  width: min(920px, 100%);
  padding: 48px 28px;
  text-align: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 28%, rgba(244, 165, 189, 0.18), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(140, 207, 194, 0.20), transparent 28%),
    rgba(255, 255, 255, 0.86);
}

.final-cta.compact h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.final-cta.compact p {
  max-width: 680px;
  margin: 0 auto 28px;
}

.final-actions {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.btn-design-main {
  min-width: min(420px, 100%);
  min-height: 56px;
  padding: 16px 32px;
  font-size: 1.02rem;
}

.quote-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
}

.btn-country {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(36, 48, 68, 0.10);
  box-shadow: 0 14px 32px rgba(36, 48, 68, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-country::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.btn-country:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 48, 68, 0.12);
}

.btn-country span,
.btn-country strong {
  position: relative;
  z-index: 1;
  display: block;
}

.btn-country span {
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(36, 48, 68, 0.70);
}

.btn-country strong {
  margin-top: 3px;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 950;
}

.btn-panama::before {
  background:
    linear-gradient(90deg, #ffffff 0 25%, #d21034 25% 50%, #ffffff 50% 75%, #005293 75% 100%);
}

.btn-colombia::before {
  background:
    linear-gradient(180deg, #fcd116 0 50%, #003893 50% 75%, #ce1126 75% 100%);
}

@media (max-width: 640px) {
  .quote-actions {
    grid-template-columns: 1fr;
  }

  .btn-design-main {
    min-width: 100%;
  }

  .final-cta.compact .final-cta-inner {
    padding: 36px 18px;
  }
}
