
/* =========================================================
   RINCÓN DE SUEÑOS · WEBSITE STYLE SYSTEM
   Edita colores principales aquí si después quieres ajustar.
   ========================================================= */

:root{
  --logo-blue:#0d4b83;
  --navy:#083568;
  --royal:#135b9e;
  --sky:#d8ecfb;
  --sky-2:#eef8ff;
  --pastel-blue:#b9ddf6;
  --pastel-yellow:#ffe58f;
  --soft-yellow:#fff4c8;
  --white:#ffffff;
  --cloud:#f7fbff;
  --ink:#12345d;
  --muted:#5f7895;
  --line:rgba(13,75,131,.16);
  --shadow:0 24px 70px rgba(8,53,104,.13);
  --soft-shadow:0 14px 36px rgba(8,53,104,.09);
  --radius-xl:36px;
  --radius-lg:26px;
  --radius-md:18px;
  --max:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(216,236,251,.75), transparent 28%),
    radial-gradient(circle at 100% 2%, rgba(255,229,143,.32), transparent 22%),
    linear-gradient(180deg,#ffffff 0%, #f7fbff 48%, #ffffff 100%);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(255,229,143,.35) 0 2px, transparent 2.5px),
    radial-gradient(circle at 70% 12%, rgba(21,99,170,.16) 0 2px, transparent 2.5px),
    radial-gradient(circle at 90% 55%, rgba(255,229,143,.25) 0 2px, transparent 2.5px);
  background-size:120px 120px, 160px 160px, 140px 140px;
  opacity:.7;
  z-index:-3;
}

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

a{text-decoration:none;color:inherit}

button,input,textarea,select{
  font-family:inherit;
}

.page-shell{
  min-height:100vh;
  position:relative;
}

.particle-canvas{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:-2;
}

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

/* ================= HEADER ================= */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(13,75,131,.08);
}

.navbar{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:240px;
}

.logo-img{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:10px;
  mix-blend-mode:multiply;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:.88;
}

.brand-title{
  font-family:"Playfair Display", Georgia, serif;
  font-size:34px;
  color:var(--navy);
  letter-spacing:-.045em;
  font-weight:700;
}

.brand-subtitle{
  font-size:9px;
  letter-spacing:.18em;
  font-weight:800;
  color:var(--muted);
  margin-top:8px;
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:5px;
}

.nav-link{
  font-size:14px;
  color:var(--ink);
  opacity:.9;
  font-weight:700;
  padding:12px 12px;
  border-radius:999px;
  transition:.22s ease;
  position:relative;
}

.nav-link:hover,
.nav-link.active{
  color:var(--royal);
  background:rgba(216,236,251,.58);
}

.nav-link.active::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:6px;
  height:2px;
  border-radius:999px;
  background:var(--logo-blue);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 18px;
  border:0;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:.22s ease;
  line-height:1;
  white-space:nowrap;
}

.btn-primary{
  background:linear-gradient(135deg,var(--navy),var(--royal));
  color:white;
  box-shadow:0 16px 34px rgba(8,53,104,.22);
}

.btn-primary:hover{transform:translateY(-2px); box-shadow:0 22px 44px rgba(8,53,104,.28)}

.btn-secondary{
  background:rgba(255,255,255,.88);
  color:var(--navy);
  border:1px solid rgba(13,75,131,.24);
  box-shadow:0 8px 20px rgba(8,53,104,.06);
}

.btn-secondary:hover{background:var(--sky-2); transform:translateY(-2px)}

.btn-yellow{
  background:linear-gradient(135deg,var(--pastel-yellow),#fff4ba);
  color:var(--navy);
  box-shadow:0 16px 34px rgba(255,229,143,.35);
}

.btn-small{
  min-height:38px;
  padding:10px 14px;
  font-size:13px;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid var(--line);
  background:white;
  color:var(--navy);
  font-size:22px;
}

/* ================= SHARED ================= */

.section{
  padding:72px 0;
  position:relative;
}

.section.compact{padding:48px 0}

.section-title{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(34px, 4vw, 58px);
  line-height:1.04;
  letter-spacing:-.045em;
  color:var(--navy);
}

.section-kicker{
  color:var(--royal);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:12px;
}

.section-copy{
  color:var(--muted);
  line-height:1.7;
  font-size:16px;
  max-width:620px;
}

.star{
  color:var(--pastel-yellow);
  filter:drop-shadow(0 0 7px rgba(255,229,143,.65));
}

.moon-decoration{
  position:absolute;
  width:88px;
  height:88px;
  border-radius:50%;
  right:7%;
  top:12%;
  box-shadow:-22px 4px 0 0 rgba(255,255,255,.95), 0 0 28px rgba(255,229,143,.55);
  border:1px solid rgba(255,229,143,.48);
  opacity:.75;
  pointer-events:none;
}

.cloud-row{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:62px;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}

.cloud-row::before,
.cloud-row::after{
  content:"";
  position:absolute;
  width:240px;
  height:90px;
  background:var(--sky);
  border-radius:100px 100px 0 0;
  opacity:.55;
}

.cloud-row::before{left:-60px;bottom:-48px;box-shadow:120px 20px 0 18px var(--sky), 250px 32px 0 -5px var(--sky)}
.cloud-row::after{right:-70px;bottom:-48px;box-shadow:-120px 20px 0 18px var(--sky), -250px 32px 0 -5px var(--sky)}

.image-slot{
  border:1.5px dashed rgba(13,75,131,.24);
  background:
    radial-gradient(circle at 20% 10%, rgba(216,236,251,.65), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(239,248,255,.66));
  min-height:240px;
  border-radius:var(--radius-lg);
  display:grid;
  place-items:center;
  color:var(--muted);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.image-slot::before{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:calc(var(--radius-lg) - 9px);
  border:1px dashed rgba(13,75,131,.18);
}

.image-slot > span{
  position:relative;
  z-index:1;
  display:grid;
  gap:10px;
  justify-items:center;
  font-weight:800;
}

.image-slot svg{width:42px;height:42px;color:var(--logo-blue);opacity:.75}

.card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(13,75,131,.11);
  border-radius:var(--radius-lg);
  box-shadow:var(--soft-shadow);
}

/* ================= HOME ================= */

.hero{
  padding:54px 0 90px;
  min-height:760px;
  position:relative;
  display:grid;
  align-items:center;
}

.hero-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:center;
  position:relative;
  z-index:1;
}

.hero h1{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:clamp(48px, 6vw, 82px);
  line-height:.98;
  letter-spacing:-.065em;
  max-width:680px;
}

.hero p{
  margin-top:22px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  max-width:530px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:30px;
}

.hero-slot{
  min-height:410px;
  border-radius:36px;
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,229,143,.28), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(238,248,255,.75));
}

.hero-slot::after{
  content:"";
  position:absolute;
  inset:auto -20px 18px 0;
  height:3px;
  background:linear-gradient(90deg, transparent, rgba(255,229,143,.75), transparent);
  filter:blur(1px);
  transform:rotate(-7deg);
}

.benefits{
  margin-top:-46px;
  position:relative;
  z-index:2;
}

.benefits-card{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:22px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(13,75,131,.12);
  border-radius:28px;
  box-shadow:var(--soft-shadow);
  backdrop-filter:blur(14px);
}

.benefit{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 18px;
  border-right:1px solid rgba(13,75,131,.12);
}

.benefit:last-child{border-right:0}

.icon-line{
  width:48px;
  height:48px;
  flex:0 0 auto;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:var(--logo-blue);
  background:rgba(216,236,251,.48);
  border:1px solid rgba(13,75,131,.12);
}

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

.benefit strong{
  display:block;
  color:var(--navy);
  font-weight:900;
  margin-bottom:4px;
}

.benefit span{
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
  display:block;
}

/* Path cards */

.path-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.path-card{
  min-height:245px;
  overflow:hidden;
  display:grid;
  grid-template-columns:.9fr 1fr;
  transition:.22s ease;
}

.path-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.path-text{
  padding:28px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:space-between;
  background:linear-gradient(180deg,rgba(216,236,251,.75),rgba(255,255,255,.68));
}

.path-card:nth-child(2) .path-text{
  background:linear-gradient(180deg,rgba(255,229,143,.75),rgba(255,255,255,.68));
}

.path-text h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.04em;
}

.path-text p{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.round-arrow{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(13,75,131,.18);
  background:white;
  color:var(--logo-blue);
  display:grid;
  place-items:center;
  font-weight:900;
  margin-top:18px;
}

.path-slot{
  min-height:245px;
  border-radius:0;
  border-top-left-radius:0;
  border-bottom-left-radius:0;
  background:linear-gradient(145deg, rgba(255,255,255,.7), rgba(216,236,251,.5));
}

/* Project before after */

.feature-project{
  display:grid;
  grid-template-columns:.34fr .66fr;
  gap:24px;
  align-items:stretch;
}

.project-copy{
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(238,248,255,.74));
}

.project-copy h2{
  font-family:"Playfair Display", Georgia, serif;
  font-size:42px;
  line-height:1.05;
  color:var(--navy);
  letter-spacing:-.045em;
}

.project-copy p{margin:14px 0 22px;color:var(--muted);line-height:1.6}

.before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  overflow:hidden;
  position:relative;
}

.before-after .image-slot{
  min-height:320px;
  border-radius:0;
  border:0;
}

.before-after .image-slot:first-child{border-radius:var(--radius-lg) 0 0 var(--radius-lg)}
.before-after .image-slot:last-child{border-radius:0 var(--radius-lg) var(--radius-lg) 0}

.label-pill{
  position:absolute;
  top:16px;
  z-index:3;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:var(--navy);
  background:white;
  box-shadow:0 8px 18px rgba(8,53,104,.12);
}

.label-pill.before{left:16px}
.label-pill.after{right:16px;background:var(--pastel-yellow)}

.split-control{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:white;
  border:1px solid rgba(13,75,131,.18);
  display:grid;
  place-items:center;
  color:var(--logo-blue);
  font-weight:900;
  z-index:4;
  box-shadow:0 14px 30px rgba(8,53,104,.14);
}

/* Essence */

.essence-grid{
  display:grid;
  grid-template-columns:.7fr repeat(4,1fr);
  gap:0;
  overflow:hidden;
}

.essence-item{
  padding:26px;
  border-right:1px solid rgba(13,75,131,.11);
  min-height:170px;
}

.essence-item:last-child{border-right:0}

.essence-item h3,
.essence-intro h2{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  letter-spacing:-.04em;
}

.essence-intro h2{font-size:34px;line-height:1.05}
.essence-item h3{font-size:22px;margin:12px 0 8px}

.essence-item p,
.essence-intro p{
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}

/* Process */

.process-line{
  display:grid;
  grid-template-columns:.65fr repeat(5,1fr);
  gap:18px;
  align-items:center;
  padding:26px;
  position:relative;
}

.process-title h2{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:34px;
  line-height:1.05;
}

.step{
  text-align:center;
  position:relative;
}

.step:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-22px;
  top:28px;
  width:44px;
  border-top:1.5px dashed rgba(13,75,131,.25);
}

.step-num{
  margin:auto;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--pastel-yellow);
  color:var(--navy);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:13px;
}

.step .icon-line{
  margin:10px auto 8px;
  width:44px;
  height:44px;
}

.step strong{
  display:block;
  color:var(--navy);
  font-weight:900;
  margin-bottom:4px;
}

.step span{
  display:block;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}

/* Testimonials */

.testimonial-row{
  display:grid;
  grid-template-columns:.55fr repeat(3,1fr);
  gap:18px;
  align-items:stretch;
}

.testimonial-title{
  padding:26px;
}

.testimonial-title h2{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:34px;
  line-height:1.05;
}

.testimonial-card{
  padding:18px;
  display:grid;
  grid-template-columns:92px 1fr;
  gap:15px;
  align-items:center;
  min-height:145px;
}

.testimonial-card .image-slot{
  min-height:92px;
  border-radius:18px;
}

.testimonial-card .image-slot::before{inset:8px;border-radius:12px}

.quote{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:18px;
  line-height:1.22;
}

.author{
  display:block;
  margin-top:8px;
  color:var(--royal);
  font-weight:900;
  font-size:12px;
}

/* Footer CTA */

.cta-footer{
  margin:60px 0 28px;
  background:
    radial-gradient(circle at 85% 35%, rgba(255,229,143,.34), transparent 22%),
    linear-gradient(135deg,#062852,#0e5796);
  color:white;
  border-radius:34px;
  padding:34px;
  display:grid;
  grid-template-columns:170px 1fr auto;
  gap:24px;
  align-items:center;
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow);
}

.cta-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,229,143,.9) 0 1.5px, transparent 2px);
  background-size:62px 62px, 94px 94px;
  opacity:.28;
}

.cta-logo{
  position:relative;
  z-index:1;
  width:130px;
  height:130px;
  border-radius:28px;
  background:rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  padding:14px;
  border:1px solid rgba(255,255,255,.14);
}

.cta-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  mix-blend-mode:screen;
  filter:brightness(2.5) grayscale(.1);
}

.cta-footer h2{
  position:relative;
  z-index:1;
  font-family:"Playfair Display", Georgia, serif;
  font-size:38px;
  letter-spacing:-.035em;
  line-height:1.05;
}

.cta-footer p{
  position:relative;
  z-index:1;
  margin-top:6px;
  color:rgba(255,255,255,.8);
}

.cta-footer .btn{
  position:relative;
  z-index:1;
}

.footer-bar{
  padding:0 0 44px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}

/* ================= SUBPAGES ================= */

.subhero{
  padding:64px 0 44px;
  position:relative;
  min-height:440px;
  display:grid;
  align-items:center;
}

.subhero-grid{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:center;
}

.subhero h1{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:clamp(45px,5vw,76px);
  line-height:1;
  letter-spacing:-.055em;
}

.subhero p{
  color:var(--muted);
  line-height:1.65;
  margin:20px 0 28px;
  max-width:560px;
  font-size:17px;
}

.subhero .image-slot{min-height:340px;box-shadow:var(--shadow)}

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

.collection-grid.three{grid-template-columns:repeat(3,1fr)}
.collection-grid.two{grid-template-columns:repeat(2,1fr)}

.collection-card{
  overflow:hidden;
  transition:.22s ease;
}

.collection-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}

.collection-card .image-slot{
  min-height:190px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  border-left:0;border-right:0;border-top:0;
}

.collection-body{
  padding:20px;
}

.collection-body h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:25px;
  line-height:1.1;
  letter-spacing:-.035em;
}

.collection-body p{
  margin-top:8px;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}

.collection-body .link-arrow{
  margin-top:14px;
  display:inline-flex;
  gap:8px;
  color:var(--royal);
  font-weight:900;
  font-size:13px;
}

.filters{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 28px;
}

.filter-btn{
  border:1px solid rgba(13,75,131,.22);
  background:rgba(255,255,255,.8);
  color:var(--navy);
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
}

.filter-btn.active{
  background:var(--navy);
  color:white;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
  align-items:start;
}

.product-card{
  overflow:hidden;
  background:white;
  transition:.22s ease;
  border-radius:26px;
}

.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}

.product-card .image-slot{
  min-height:150px;
  max-height:150px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  border-left:0;border-right:0;border-top:0;
}

.product-card .collection-body{
  padding:16px 16px 18px;
}

.product-card h3{
  font-size:22px;
  line-height:1.08;
}

.product-card p{
  font-size:13px;
  line-height:1.45;
}

.product-price{
  margin-top:8px;
  color:var(--royal);
  font-weight:900;
}

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

.form-card{
  padding:28px;
}

.form-card h2{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:34px;
  margin-bottom:8px;
}

.form-card p{color:var(--muted);line-height:1.55;margin-bottom:18px}

.form-fields{
  display:grid;
  gap:14px;
}

.input{
  min-height:48px;
  border:1px solid rgba(13,75,131,.17);
  border-radius:16px;
  background:white;
  padding:13px 15px;
  color:var(--ink);
  outline:0;
}

.input:focus{
  border-color:var(--logo-blue);
  box-shadow:0 0 0 4px rgba(216,236,251,.8);
}

textarea.input{min-height:130px;resize:vertical}

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

.contact-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  padding:16px;
  border:1px solid rgba(13,75,131,.12);
  border-radius:18px;
  background:rgba(255,255,255,.75);
}

.contact-item strong{display:block;color:var(--navy)}
.contact-item span{display:block;color:var(--muted);font-size:13px;margin-top:3px}

.map-placeholder{
  min-height:280px;
  background:
    linear-gradient(90deg, rgba(13,75,131,.08) 1px, transparent 1px),
    linear-gradient(rgba(13,75,131,.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(216,236,251,.42));
  background-size:34px 34px;
  border-radius:var(--radius-lg);
  display:grid;
  place-items:center;
  color:var(--navy);
  font-weight:900;
  border:1px solid rgba(13,75,131,.12);
}

@media (max-width:1280px){
  .product-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media (max-width:1020px){
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .product-card .image-slot,
  .product-real-image,
  .product-real-image img{min-height:145px;max-height:145px;height:145px}
}

@media (max-width:720px){
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-card .collection-body{padding:14px 14px 16px}
}

@media (max-width:520px){
  .product-grid{grid-template-columns:1fr}
}

/* Toast */

.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%) translateY(18px);
  background:var(--navy);
  color:white;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:999;
  font-weight:800;
}

.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1020px){
  .menu-toggle{display:grid;place-items:center}
  .nav-links{
    position:fixed;
    top:92px;
    left:17px;
    right:17px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(20px);
    border:1px solid var(--line);
    border-radius:24px;
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-link{padding:14px 16px}
  .header-actions .btn-primary{display:none}
  .hero-grid,.subhero-grid,.feature-project,.form-grid{grid-template-columns:1fr}
  .hero{min-height:auto}
  .benefits-card{grid-template-columns:1fr 1fr}
  .benefit{border-right:0;border-bottom:1px solid rgba(13,75,131,.1)}
  .path-grid,.collection-grid.three,.collection-grid.two{grid-template-columns:1fr}
  .essence-grid{grid-template-columns:1fr 1fr}
  .process-line{grid-template-columns:1fr}
  .step:not(:last-child)::after{display:none}
  .testimonial-row{grid-template-columns:1fr}
  .product-grid,.collection-grid{grid-template-columns:repeat(2,1fr)}
  .cta-footer{grid-template-columns:1fr;text-align:center}
  .cta-logo{margin:auto}
}

@media (max-width: 640px){
  .container{width:min(100% - 24px, var(--max))}
  .navbar{min-height:78px}
  .brand{min-width:0}
  .logo-img{width:54px;height:54px}
  .brand-title{font-size:26px}
  .brand-subtitle{font-size:7px}
  .nav-links{top:78px}
  .hero{padding-top:34px}
  .hero h1,.subhero h1{font-size:43px}
  .section{padding:46px 0}
  .benefits-card,.path-card,.essence-grid,.product-grid,.collection-grid{grid-template-columns:1fr}
  .testimonial-card{grid-template-columns:1fr}
  .cta-footer{padding:26px}
}


/* === Filled image slots === */
.real-image{
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg, rgba(255,255,255,.86), rgba(238,248,255,.72));
}
.real-image::before{display:none!important}
.real-image > img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-slot.real-image > img{object-position:center center;}
.path-slot.real-image > img{object-position:center center;}
.before-after .real-image > img{object-position:center center;}

/* === Home: confianza === */
.section-head-inline{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:24px}
.home-product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.home-product-card{overflow:hidden;transition:.22s ease;background:rgba(255,255,255,.86)}
.home-product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.product-thumb{min-height:190px;border-radius:var(--radius-lg) var(--radius-lg) 0 0}
.product-thumb::before{display:none!important}
.product-thumb img{width:100%;height:210px;object-fit:cover;object-position:center;display:block}
.home-product-body{padding:20px}
.mini-badge{display:inline-flex;padding:7px 10px;border-radius:999px;background:rgba(255,229,143,.72);color:var(--navy);font-size:11px;font-weight:900;margin-bottom:12px}
.home-product-body h3{font-family:"Playfair Display",Georgia,serif;color:var(--navy);font-size:25px;line-height:1.08;letter-spacing:-.035em}
.home-product-body p{color:var(--muted);font-size:14px;line-height:1.5;margin:9px 0 12px}
.home-product-body strong{display:block;color:var(--royal);font-weight:900;margin-bottom:12px}
.home-product-body a{color:var(--navy);font-weight:900;font-size:13px}
.edit-note{color:var(--muted);font-size:13px;margin-top:14px}
.trust-panel{display:grid;grid-template-columns:.85fr 1.15fr;gap:24px;align-items:stretch;background:radial-gradient(circle at 10% 0%,rgba(216,236,251,.75),transparent 32%),linear-gradient(145deg,rgba(255,255,255,.92),rgba(238,248,255,.78));border:1px solid rgba(13,75,131,.12);border-radius:36px;padding:28px;box-shadow:var(--soft-shadow)}
.trust-copy{padding:18px;display:flex;flex-direction:column;justify-content:center}
.trust-copy h2{font-family:"Playfair Display",Georgia,serif;color:var(--navy);font-size:clamp(34px,4vw,56px);line-height:1;letter-spacing:-.045em}
.trust-copy p{color:var(--muted);line-height:1.65;margin:16px 0 24px}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.trust-card{background:rgba(255,255,255,.78);border:1px solid rgba(13,75,131,.12);border-radius:24px;padding:20px}
.trust-card span{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:var(--pastel-yellow);color:var(--navy);font-weight:900;margin-bottom:12px}
.trust-card h3{font-family:"Playfair Display",Georgia,serif;color:var(--navy);font-size:22px;line-height:1.1;margin-bottom:8px}
.trust-card p{color:var(--muted);line-height:1.5;font-size:14px}
.quote-helper{display:grid;grid-template-columns:.75fr 1.25fr auto;gap:24px;align-items:center;padding:28px}
.quote-helper h2{font-family:"Playfair Display",Georgia,serif;color:var(--navy);font-size:36px;line-height:1.05}
.quote-list{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.quote-list span{padding:12px 13px;border-radius:16px;border:1px solid rgba(13,75,131,.12);background:rgba(255,255,255,.76);color:var(--navy);font-weight:800;font-size:13px}
.floating-whatsapp{position:fixed;right:18px;bottom:18px;z-index:300;display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 18px;border-radius:999px;background:#16a34a;color:white;font-weight:900;box-shadow:0 16px 38px rgba(22,163,74,.3)}
@media (max-width:1020px){.section-head-inline,.trust-panel,.quote-helper{grid-template-columns:1fr;display:grid}.home-product-grid{grid-template-columns:repeat(2,1fr)}.trust-grid{grid-template-columns:1fr}.quote-list{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.home-product-grid,.quote-list{grid-template-columns:1fr}.floating-whatsapp{left:18px;right:18px}}


/* === Enhanced floating particles layer === */
.page-shell{isolation:isolate;}
.page-shell > *:not(.particle-canvas){position:relative;z-index:1;}
.particle-canvas{position:fixed;inset:0;width:100%;height:100%;pointer-events:none;z-index:0;opacity:.95;filter:saturate(1.05);}


/* === White solid menu + cloud borders === */
.site-header{
  background:#ffffff !important;
  backdrop-filter:none !important;
  box-shadow:0 12px 28px rgba(8,53,104,.08);
}

.nav-links{
  background:#ffffff;
  border:1px solid rgba(13,75,131,.10);
  border-radius:999px;
  padding:6px;
  box-shadow:0 10px 22px rgba(8,53,104,.06);
}

.nav-link{
  background:transparent;
}

.nav-link:hover,
.nav-link.active{
  background:rgba(216,236,251,.65);
}

.menu-toggle{
  background:#ffffff;
  box-shadow:0 10px 18px rgba(8,53,104,.07);
}

/* cloud scallop helpers */
.hero-slot.real-image,
.path-card,
.before-after,
.trust-panel,
.quote-helper,
.benefits-card{
  position:relative;
}

.hero-slot.real-image::before,
.path-card::after,
.before-after::before,
.trust-panel::after,
.quote-helper::before,
.benefits-card::before{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  height:28px;
  pointer-events:none;
  background:radial-gradient(circle at 14px 0, rgba(255,255,255,.98) 14px, transparent 15px) repeat-x;
  background-size:28px 28px;
}

.hero-slot.real-image::before{
  display:block !important;
  inset:auto 26px -14px 26px;
  z-index:3;
  border:none !important;
}

.path-card::after{
  bottom:-14px;
  z-index:2;
}

.before-after::before{
  top:-14px;
  z-index:3;
}

.trust-panel::after{
  bottom:-14px;
  z-index:2;
}

.quote-helper::before{
  top:-14px;
  z-index:2;
}

.benefits-card::before{
  top:-14px;
  z-index:2;
}

/* little cloud corner puffs */
.hero-slot.real-image::after,
.trust-panel::before{
  content:"";
  position:absolute;
  width:88px;
  height:40px;
  pointer-events:none;
  border-radius:999px;
  background:#ffffff;
  box-shadow:28px 8px 0 4px rgba(255,255,255,.98), 58px -4px 0 0 rgba(255,255,255,.98);
}

.hero-slot.real-image::after{
  inset:auto auto -10px 18px;
  height:34px;
  width:74px;
  background:rgba(255,255,255,.97);
  box-shadow:26px 8px 0 3px rgba(255,255,255,.97), 54px 0 0 0 rgba(255,255,255,.97);
  transform:rotate(-4deg);
}

.trust-panel::before{
  top:-16px;
  right:26px;
  background:rgba(255,255,255,.97);
  z-index:2;
}

@media (max-width:1020px){
  .nav-links{
    background:#ffffff;
    box-shadow:0 18px 38px rgba(8,53,104,.12);
  }
}


/* === Refined aesthetic menu + cute cloud accents === */
/* neutralize previous rough cloud add-ons */
.hero-slot.real-image::before,
.path-card::after,
.before-after::before,
.trust-panel::after,
.quote-helper::before,
.benefits-card::before,
.hero-slot.real-image::after,
.trust-panel::before{
  content:none !important;
  background:none !important;
  box-shadow:none !important;
}

.site-header{
  background:transparent !important;
  box-shadow:none !important;
  border-bottom:0 !important;
  padding-top:12px;
}

.navbar{
  min-height:86px;
  padding:12px 18px;
  background:#ffffff;
  border:1px solid rgba(13,75,131,.10);
  border-radius:30px;
  box-shadow:0 18px 34px rgba(8,53,104,.08), 0 2px 0 rgba(255,255,255,.95) inset;
  position:relative;
}

.navbar::after{
  content:"";
  position:absolute;
  right:32px;
  bottom:-10px;
  width:56px;
  height:24px;
  border-radius:999px;
  background:#ffffff;
  box-shadow:18px 6px 0 1px #ffffff, 39px 0 0 -1px #ffffff;
  filter:drop-shadow(0 8px 12px rgba(8,53,104,.06));
  pointer-events:none;
}

.nav-links{
  background:linear-gradient(180deg, rgba(252,253,255,.98), rgba(245,249,255,.95));
  border:1px solid rgba(13,75,131,.09);
  padding:7px;
  border-radius:999px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95), 0 8px 18px rgba(8,53,104,.05);
}

.nav-link{
  padding:12px 14px;
  color:var(--navy);
  background:transparent;
}

.nav-link:hover,
.nav-link.active{
  color:var(--royal);
  background:#ffffff;
  box-shadow:0 8px 16px rgba(8,53,104,.08);
}

.nav-link.active::after{
  display:none;
}

.header-actions .btn-primary{
  box-shadow:0 14px 24px rgba(8,53,104,.12);
}

.menu-toggle{
  background:#ffffff;
  border:1px solid rgba(13,75,131,.10);
  box-shadow:0 10px 18px rgba(8,53,104,.06);
}

/* soft cloud accents on key blocks */
.hero-slot.real-image,
.benefits-card,
.before-after,
.trust-panel,
.quote-helper{
  position:relative;
}

.hero-slot.real-image::after,
.benefits-card::after,
.before-after::after,
.trust-panel::before,
.quote-helper::before{
  content:"" !important;
  position:absolute;
  width:78px;
  height:30px;
  background:#ffffff;
  border-radius:999px;
  box-shadow:22px 7px 0 2px #ffffff, 48px 0 0 0 #ffffff;
  filter:drop-shadow(0 10px 14px rgba(8,53,104,.07));
  pointer-events:none;
  z-index:2;
}

.hero-slot.real-image::after{
  left:18px;
  bottom:-10px;
  transform:rotate(-4deg);
}

.benefits-card::after{
  left:28px;
  top:-12px;
}

.before-after::after{
  left:24px;
  bottom:-10px;
}

.trust-panel::before{
  right:26px;
  top:-12px;
}

.quote-helper::before{
  left:28px;
  top:-12px;
}

/* rounded cloud-like silhouette refinement */
.benefits-card,
.trust-panel,
.quote-helper,
.before-after,
.project-copy,
.home-product-card,
.path-card{
  border-radius:30px;
}

.path-card{
  box-shadow:var(--soft-shadow);
}

.path-text{
  border-radius:30px 0 0 30px;
}

.path-slot{
  border-radius:0 30px 30px 0;
}

/* decorative mini clouds inside the hero area */
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  width:70px;
  height:26px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  box-shadow:20px 6px 0 1px rgba(255,255,255,.86), 42px 0 0 -1px rgba(255,255,255,.86);
  filter:drop-shadow(0 10px 16px rgba(8,53,104,.05));
  pointer-events:none;
}

.hero::before{
  left:8%;
  top:94px;
}

.hero::after{
  right:14%;
  top:160px;
  transform:scale(.82);
}

@media (max-width:1020px){
  .site-header{padding-top:10px;}
  .navbar{
    min-height:78px;
    padding:12px 14px;
    border-radius:24px;
  }
  .navbar::after{display:none;}
  .nav-links{
    background:#ffffff;
    border-radius:24px;
    padding:10px;
    box-shadow:0 20px 34px rgba(8,53,104,.12);
  }
}

@media (max-width:640px){
  .hero::before,.hero::after,
  .benefits-card::after,
  .before-after::after,
  .trust-panel::before,
  .quote-helper::before,
  .hero-slot.real-image::after{
    transform:scale(.8);
    transform-origin:left top;
  }
}


/* === Dreamy lilac + blue liquid glass upgrade === */
:root{
  --lilac:#d8c5ff;
  --lilac-soft:#efe6ff;
  --lilac-deep:#b695ff;
  --glass-blue:rgba(214,234,255,.45);
  --glass-white:rgba(255,255,255,.58);
}

body{
  background:
    radial-gradient(circle at 12% 16%, rgba(216,197,255,.34), transparent 23%),
    radial-gradient(circle at 88% 10%, rgba(216,236,251,.82), transparent 24%),
    radial-gradient(circle at 68% 55%, rgba(255,229,143,.18), transparent 22%),
    linear-gradient(180deg,#fcfdff 0%, #f7fbff 40%, #ffffff 100%) !important;
}

body::before{
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,229,143,.32) 0 2px, transparent 2.5px),
    radial-gradient(circle at 70% 12%, rgba(21,99,170,.18) 0 2px, transparent 2.5px),
    radial-gradient(circle at 90% 55%, rgba(182,149,255,.18) 0 2px, transparent 2.5px) !important;
}

.card,
.navbar,
.nav-links,
.benefits-card,
.trust-panel,
.quote-helper,
.home-product-card,
.product-card,
.collection-card,
.testimonial-card,
.feature-project .card,
.form-card,
.contact-item,
.map-placeholder{
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.54)) !important;
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.62) !important;
  box-shadow:0 20px 46px rgba(8,53,104,.08), inset 0 1px 0 rgba(255,255,255,.92) !important;
}

.navbar{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,251,255,.82)) !important;
}

.nav-links{
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,249,255,.84)) !important;
}

.site-header{
  padding-top:14px;
}

.hero::before,
.hero::after{
  background:rgba(246,241,255,.9) !important;
  box-shadow:20px 6px 0 1px rgba(246,241,255,.9), 42px 0 0 -1px rgba(246,241,255,.9) !important;
}

.section-kicker{color:var(--lilac-deep);}
.section-title,
.hero h1,
.subhero h1,
.project-copy h2,
.trust-copy h2,
.cta-footer h2{
  text-shadow:0 8px 24px rgba(182,149,255,.08);
}

.mini-badge,
.product-chip,
.summary-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 8px 18px rgba(8,53,104,.06);
}

.mini-badge,
.summary-pill{
  background:linear-gradient(180deg, rgba(255,229,143,.72), rgba(255,245,200,.84));
  color:var(--navy);
}

.lilac-badge,
.product-chip{
  background:linear-gradient(180deg, rgba(216,197,255,.75), rgba(239,230,255,.9));
  color:var(--navy);
}

.sky-badge{
  background:linear-gradient(180deg, rgba(185,221,246,.78), rgba(233,246,255,.9));
  color:var(--navy);
}

.home-product-grid-5{grid-template-columns:repeat(5,1fr);}
.dreamy-card{overflow:hidden;}
.dreamy-card .collection-body,
.dreamy-card .home-product-body{position:relative;}
.dreamy-card .collection-body::after,
.dreamy-card .home-product-body::after{
  content:"";
  position:absolute;
  right:16px;
  top:14px;
  width:54px;
  height:54px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(216,197,255,.38), rgba(216,197,255,0) 68%);
  pointer-events:none;
}

.product-chip{margin-bottom:10px;}
.product-meta{
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
  margin-top:4px;
}

.dreamy-products-section{
  position:relative;
}

.dreamy-products-section::before,
.dreamy-products-section::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  filter:blur(24px);
  opacity:.26;
  pointer-events:none;
}

.dreamy-products-section::before{
  background:radial-gradient(circle, rgba(216,197,255,.9), transparent 66%);
  left:-40px;
  top:70px;
}

.dreamy-products-section::after{
  background:radial-gradient(circle, rgba(185,221,246,.9), transparent 66%);
  right:-40px;
  bottom:20px;
}

.products-intro-bar{
  padding:26px;
  margin-bottom:26px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:18px;
  align-items:center;
  border-radius:32px;
}

.products-summary{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.dreamy-select{
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,251,255,.86));
}

.dreamy-filters{gap:10px;margin-bottom:18px;}
.filter-btn{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,249,255,.8));
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 10px 20px rgba(8,53,104,.05);
}
.filter-btn.active{
  background:linear-gradient(135deg, rgba(21,91,158,.95), rgba(182,149,255,.92));
  color:white;
}

.dreamy-product-grid{
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.product-placeholder{
  min-height:200px;
  background:
    radial-gradient(circle at 12% 10%, rgba(216,197,255,.28), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(216,236,251,.55), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,248,255,.76));
}
.product-placeholder svg{color:var(--lilac-deep);}
.product-card .collection-body p:not(.product-price):not(.product-meta){
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  margin-top:7px;
}

.cta-footer{
  background:
    radial-gradient(circle at 18% 15%, rgba(216,197,255,.22), transparent 18%),
    radial-gradient(circle at 85% 35%, rgba(255,229,143,.28), transparent 22%),
    linear-gradient(135deg,#0a3566,#115a99 55%, #6b74d8 100%);
}

@media (max-width:1200px){
  .home-product-grid-5{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:1020px){
  .products-intro-bar{grid-template-columns:1fr;}
  .dreamy-product-grid{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:760px){
  .dreamy-product-grid{grid-template-columns:repeat(2,1fr);}
  .home-product-grid-5{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .dreamy-product-grid,
  .home-product-grid-5{grid-template-columns:1fr;}
}

/* === Ludotecas page: real imagery + service modules === */
.ludoteca-showcase,
.ludoteca-services{
  position:relative;
}
.ludoteca-editorial-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:22px;
  margin-top:24px;
}
.ludoteca-feature{
  min-height:560px;
  overflow:hidden;
  border-radius:34px;
  position:relative;
}
.ludoteca-feature img,
.ludoteca-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ludoteca-feature::before,
.ludoteca-mini::before{
  display:none!important;
}
.ludoteca-caption{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:20px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(239,248,255,.62));
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.68);
  box-shadow:0 14px 32px rgba(8,53,104,.10);
}
.ludoteca-caption span{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(216,197,255,.75), rgba(239,230,255,.92));
  color:var(--navy);
  font-size:11px;
  font-weight:900;
  margin-bottom:9px;
}
.ludoteca-caption h3,
.ludoteca-mini h3,
.ludoteca-service h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  letter-spacing:-.035em;
}
.ludoteca-caption h3{
  font-size:34px;
  line-height:1.05;
}
.ludoteca-caption p{
  color:var(--muted);
  line-height:1.55;
  margin-top:8px;
}
.ludoteca-side-grid{
  display:grid;
  gap:22px;
}
.ludoteca-mini{
  min-height:268px;
  overflow:hidden;
  position:relative;
  border-radius:30px;
}
.ludoteca-mini div{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(14px);
}
.ludoteca-mini h3{
  font-size:23px;
  line-height:1.05;
}
.ludoteca-mini p{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  margin-top:4px;
}
.ludoteca-service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:24px;
}
.ludoteca-service{
  padding:20px;
  border-radius:28px;
  transition:.22s ease;
}
.ludoteca-service:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow)!important;
}
.ludoteca-service span{
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(180deg, rgba(255,229,143,.78), rgba(255,245,200,.9));
  color:var(--navy);
  font-weight:900;
  margin-bottom:12px;
}
.ludoteca-service h3{
  font-size:23px;
  line-height:1.08;
  margin-bottom:8px;
}
.ludoteca-service p{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
@media (max-width:1020px){
  .ludoteca-editorial-grid{grid-template-columns:1fr}
  .ludoteca-service-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .ludoteca-service-grid{grid-template-columns:1fr}
  .ludoteca-feature{min-height:430px}
}

/* === Tapancos section + real tapanco product images === */
.product-real-image{
  min-height:150px;
  max-height:150px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}
.product-real-image::before{
  display:none!important;
}
.product-real-image img{
  width:100%;
  height:150px;
  object-fit:cover;
  object-position:center center;
  display:block;
}
.tapancos-feature-section{
  position:relative;
}
.tapanco-editorial-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  margin-top:24px;
}
.tapanco-main,
.tapanco-mini{
  position:relative;
  overflow:hidden;
  border-radius:34px;
}
.tapanco-main{
  min-height:560px;
}
.tapanco-main::before,
.tapanco-mini::before{
  display:none!important;
}
.tapanco-main img,
.tapanco-mini img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tapanco-caption{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:20px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(239,248,255,.62));
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.68);
  box-shadow:0 14px 32px rgba(8,53,104,.10);
}
.tapanco-caption span{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(216,197,255,.75), rgba(239,230,255,.92));
  color:var(--navy);
  font-size:11px;
  font-weight:900;
  margin-bottom:9px;
}
.tapanco-caption h3,
.tapanco-mini h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  letter-spacing:-.035em;
}
.tapanco-caption h3{
  font-size:34px;
  line-height:1.05;
}
.tapanco-caption p{
  color:var(--muted);
  line-height:1.55;
  margin-top:8px;
}
.tapanco-stack{
  display:grid;
  gap:22px;
}
.tapanco-mini{
  min-height:268px;
}
.tapanco-mini div{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(14px);
}
.tapanco-mini h3{
  font-size:23px;
  line-height:1.05;
}
.tapanco-mini p{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  margin-top:4px;
}
@media (max-width:1020px){
  .tapanco-editorial-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .tapanco-main{min-height:430px}
}

/* === Real contact/location details === */
.location-card{
  min-height:280px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  display:block;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--soft-shadow);
}
.location-card::before{
  display:none!important;
}
.location-card img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  display:block;
}
.location-card span{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:14px 16px;
  border-radius:999px;
  color:var(--navy);
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  font-weight:900;
  text-align:center;
  box-shadow:0 12px 24px rgba(8,53,104,.10);
}


/* === Updated top images for Nosotros and Contacto === */
.subhero .subhero-photo{
  height:380px;
  min-height:380px;
  max-height:380px;
  overflow:hidden;
  border-radius:34px;
  box-shadow:var(--shadow);
  background:linear-gradient(145deg, rgba(255,255,255,.88), rgba(239,248,255,.72));
}
.subhero .subhero-photo::before{display:none!important;}
.subhero .subhero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}
@media (max-width:1020px){
  .subhero .subhero-photo{height:320px;min-height:320px;max-height:320px;}
}
@media (max-width:640px){
  .subhero .subhero-photo{height:260px;min-height:260px;max-height:260px;border-radius:26px;}
}


/* === Final SEO + boutique conversion polish === */
.legal-note,
.legal-note-inline,
.custom-quote-note{
  margin-top:18px;
  padding:14px 18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(239,248,255,.64));
  border:1px solid rgba(13,75,131,.12);
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
  box-shadow:0 10px 24px rgba(8,53,104,.05);
}
.custom-quote-note{
  margin:0 0 22px;
}
.card-personalizable-note{
  margin-top:8px!important;
  padding-top:8px;
  border-top:1px solid rgba(13,75,131,.08);
  color:var(--muted)!important;
  font-size:12px!important;
  line-height:1.45!important;
}
.quote-process-card{
  padding:28px;
  border-radius:36px;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:24px;
  align-items:stretch;
}
.process-title-block{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.quote-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.quote-step{
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(13,75,131,.10);
}
.quote-step span{
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:linear-gradient(180deg, rgba(255,229,143,.82), rgba(255,246,205,.92));
  color:var(--navy);
  font-weight:900;
  margin-bottom:12px;
}
.quote-step h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.035em;
}
.quote-step p{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  margin-top:8px;
}
.product-card .image-slot,
.product-real-image,
.product-real-image img{
  min-height:138px!important;
  max-height:138px!important;
  height:138px!important;
}
.product-real-image img,
.product-thumb img,
.collection-card .real-image img{
  object-fit:contain!important;
  background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,248,255,.7));
}
.product-thumb img{
  height:190px!important;
}
.product-card .collection-body{
  padding:15px 15px 17px!important;
}
.product-card h3{
  font-size:20px!important;
}
.product-card .product-price{
  font-size:13px;
}
.dreamy-product-grid{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:18px!important;
}
.products-intro-bar{
  grid-template-columns:1fr!important;
  align-items:start!important;
}
.products-summary{
  margin-top:4px;
}
.subhero .subhero-photo img,
.hero-slot.real-image img,
.path-slot.real-image img,
.ludoteca-feature img,
.tapanco-main img{
  object-position:center center;
}
.btn,
.link-arrow{
  white-space:normal;
}
@media (max-width:1100px){
  .quote-process-card{grid-template-columns:1fr;}
  .quote-process-grid{grid-template-columns:repeat(2,1fr);}
  .dreamy-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:760px){
  .quote-process-grid{grid-template-columns:1fr;}
  .dreamy-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .product-card .image-slot,
  .product-real-image,
  .product-real-image img{min-height:130px!important;max-height:130px!important;height:130px!important;}
  .section-head-inline{display:grid!important;grid-template-columns:1fr!important;align-items:start!important;}
}
@media (max-width:520px){
  .dreamy-product-grid{grid-template-columns:1fr!important;}
  .product-card .image-slot,
  .product-real-image,
  .product-real-image img{min-height:170px!important;max-height:170px!important;height:170px!important;}
  .subhero h1{font-size:clamp(38px,12vw,54px)!important;}
  .hero-actions{align-items:stretch;}
  .hero-actions .btn{width:100%;justify-content:center;}
}


/* === FINAL PREMIUM POLISH · dominio listo === */
.logo-img{
  width:66px !important;
  height:66px !important;
  object-fit:contain !important;
  border-radius:18px !important;
  padding:4px !important;
  background:linear-gradient(180deg,#fffaf2,#ffffff) !important;
  mix-blend-mode:normal !important;
  box-shadow:0 10px 22px rgba(8,53,104,.07) !important;
}
.brand{gap:12px !important;min-width:230px !important;}
.brand-title{font-size:31px !important;line-height:.9 !important;}
.brand-subtitle{font-size:8px !important;letter-spacing:.16em !important;}
.cta-logo img{object-fit:contain !important;background:#fffaf2;border-radius:20px;padding:6px;}

.site-header{background:rgba(255,255,255,.96) !important;}
.navbar{box-shadow:0 16px 40px rgba(8,53,104,.07), inset 0 1px 0 rgba(255,255,255,.9) !important;}
.nav-link{font-weight:800;}
.btn{white-space:nowrap;}

.image-slot.real-image img,
.product-real-image img,
.product-thumb img,
.subhero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  image-rendering:auto;
  backface-visibility:hidden;
}

.hero-slot{aspect-ratio:4/5;min-height:480px;}
.subhero-photo{aspect-ratio:16/10;min-height:360px;}
.path-slot{aspect-ratio:4/5;min-height:260px;}

.testimonial-row{display:none !important;}

.catalog-grid{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
  align-items:start;
}
.catalog-card{
  border-radius:28px !important;
  overflow:hidden;
}
.catalog-card .product-real-image,
.product-card .image-slot,
.product-real-image{
  height:178px !important;
  min-height:178px !important;
  max-height:178px !important;
  border-radius:28px 28px 0 0 !important;
}
.catalog-card .collection-body{
  padding:17px 17px 19px !important;
}
.catalog-card h3{
  font-size:23px !important;
  line-height:1.05 !important;
  margin-bottom:8px;
}
.catalog-card p{
  font-size:13px !important;
  line-height:1.45 !important;
}
.catalog-card .product-price{
  font-size:13px !important;
  font-weight:900;
  color:var(--royal);
  margin:10px 0 7px;
}
.catalog-card .link-arrow{
  display:inline-flex;
  margin-top:7px;
}
.premium-catalog-intro .products-intro-bar{
  margin-bottom:14px;
}
.dreamy-filters{
  position:sticky;
  top:112px;
  z-index:8;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;
  padding:9px;
  box-shadow:0 18px 34px rgba(8,53,104,.08);
}
.filter-btn{font-size:13px;}

.quote-process-card,
.trust-panel,
.benefits-card,
.products-intro-bar,
.custom-quote-note{
  border-radius:32px !important;
}
.legal-note,
.custom-quote-note{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

/* menos saturación visual en home */
.essence-grid{padding:28px !important;}
.essence-item p{font-size:13px;line-height:1.5;}

/* proporciones móviles más finas */
@media (max-width:1180px){
  .catalog-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}
@media (max-width:1020px){
  .brand{min-width:auto !important;}
  .logo-img{width:56px !important;height:56px !important;}
  .brand-title{font-size:25px !important;}
  .brand-subtitle{font-size:7px !important;}
  .hero-slot,.subhero-photo{min-height:320px;}
  .dreamy-filters{position:relative;top:auto;border-radius:24px;justify-content:flex-start;}
}
@media (max-width:720px){
  .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important;}
  .catalog-card .product-real-image,.product-card .image-slot,.product-real-image{height:150px !important;min-height:150px !important;max-height:150px !important;}
  .catalog-card .collection-body{padding:14px !important;}
  .catalog-card h3{font-size:20px !important;}
  .header-actions .btn-primary{display:none;}
}
@media (max-width:520px){
  .catalog-grid{grid-template-columns:1fr !important;}
  .catalog-card .product-real-image,.product-card .image-slot,.product-real-image{height:190px !important;min-height:190px !important;max-height:190px !important;}
  .brand-text{display:flex !important;}
  .brand-title{font-size:22px !important;}
  .brand-subtitle{display:none;}
}


/* === Final domain cleanup: inspiration-focused, no product clutter === */
.inspiration-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:start;
}
.inspiration-card{
  border-radius:28px;
  overflow:hidden;
}
.inspiration-thumb{
  height:180px!important;
  min-height:180px!important;
  max-height:180px!important;
  border-radius:28px 28px 0 0!important;
}
.inspiration-thumb::before{display:none!important;}
.inspiration-thumb img{
  width:100%;
  height:180px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.inspiration-card .collection-body{
  padding:18px;
}
.inspiration-card h3{
  font-size:24px;
  line-height:1.08;
}
.inspiration-card p{
  font-size:14px;
  line-height:1.5;
}
.contact-list{
  gap:12px;
}
.legal-note-inline{
  margin-bottom:28px;
}
@media (max-width:1100px){
  .inspiration-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width:760px){
  .inspiration-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .inspiration-thumb,.inspiration-thumb img{height:160px!important;min-height:160px!important;max-height:160px!important;}
}
@media (max-width:520px){
  .inspiration-grid{grid-template-columns:1fr;}
  .inspiration-thumb,.inspiration-thumb img{height:210px!important;min-height:210px!important;max-height:210px!important;}
}

/* === FINAL DOMINIO · PULIDO PROFESIONAL RESPONSIVE === */
html,body{overflow-x:hidden;}
.container{width:min(var(--max), calc(100% - 24px));}
img{image-rendering:auto;}

.logo-img{
  border-radius:14px;
  background:rgba(255,255,255,.72);
  padding:2px;
  object-fit:contain;
}

.image-slot.real-image,
.product-real-image,
.location-card.real-image,
.subhero-photo.real-image{
  overflow:hidden;
  background:#f7fbff;
}

.image-slot.real-image img,
.product-real-image img,
.location-card.real-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-slot.real-image{
  aspect-ratio:4 / 5;
  min-height:unset!important;
  max-height:680px;
}

.subhero .image-slot.real-image,
.subhero-photo.real-image{
  aspect-ratio:4 / 4.8;
  min-height:unset!important;
  max-height:620px;
}

.path-slot.real-image,
.collection-card .image-slot.real-image,
.inspiration-thumb.real-image,
.location-card.real-image{
  aspect-ratio:4 / 3;
  min-height:unset!important;
  height:auto!important;
}

.collection-card{
  height:100%;
}

.collection-card .collection-body{
  min-height:190px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.collection-card .link-arrow{
  margin-top:auto;
}

.path-grid,
.collection-grid{
  align-items:stretch;
}

.path-card{
  height:100%;
}

.cta-footer{
  position:relative;
  isolation:isolate;
}

.cta-logo img{
  mix-blend-mode:screen;
  filter:brightness(2.25) grayscale(.05);
}

.footer-bar{
  padding:12px 0 38px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}

.footer-meta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-logo-mini{
  width:58px;
  height:58px;
  object-fit:contain;
  mix-blend-mode:multiply;
  border-radius:12px;
}

.footer-credit{
  display:flex;
  flex-direction:column;
  gap:4px;
  text-align:left;
}

.footer-credit strong{
  color:var(--navy);
  font-size:14px;
  font-weight:900;
}

.footer-credit span{
  font-size:13px;
  line-height:1.45;
}

.footer-credit-brand{
  color:var(--royal);
  font-weight:900;
  letter-spacing:.04em;
}

/* Mejor comportamiento en tablet y celular */
@media (max-width:1020px){
  .navbar{
    min-height:80px;
    gap:12px;
    position:relative;
  }
  .brand{
    min-width:0;
    max-width:calc(100% - 58px);
    gap:10px;
  }
  .logo-img{
    width:58px!important;
    height:58px!important;
  }
  .brand-title{
    font-size:26px!important;
    line-height:.92!important;
  }
  .brand-subtitle{
    font-size:8px!important;
  }
  .menu-toggle{
    display:grid!important;
    place-items:center;
    flex:0 0 auto;
  }
  .header-actions .btn-primary{
    display:none!important;
  }
  .nav-links{
    position:absolute!important;
    top:calc(100% + 10px)!important;
    left:0!important;
    right:0!important;
    display:none;
    flex-direction:column;
    gap:8px;
    padding:12px;
    border-radius:24px;
    background:rgba(255,255,255,.98)!important;
    border:1px solid rgba(13,75,131,.12);
    box-shadow:0 20px 44px rgba(8,53,104,.14);
    backdrop-filter:blur(18px);
  }
  .nav-links.open{
    display:flex!important;
  }
  .nav-link{
    width:100%;
    text-align:center;
    padding:14px 16px;
  }
  .hero-grid,
  .subhero-grid,
  .feature-project,
  .form-grid,
  .collection-grid.two{
    grid-template-columns:1fr!important;
  }
  .hero-slot.real-image,
  .subhero .image-slot.real-image,
  .subhero-photo.real-image{
    aspect-ratio:4 / 4.6;
    max-height:none;
  }
  .cta-footer{
    grid-template-columns:1fr!important;
    text-align:center;
  }
  .footer-credit{
    text-align:center;
  }
}

@media (max-width:760px){
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
  }
  .hero-actions .btn,
  .subhero .btn,
  .cta-footer .btn{
    width:100%;
  }
  .collection-card .collection-body{
    min-height:unset;
  }
}

@media (max-width:640px){
  .container{
    width:min(var(--max), calc(100% - 18px));
  }
  .navbar{
    min-height:74px;
  }
  .brand{
    max-width:calc(100% - 54px);
  }
  .logo-img{
    width:50px!important;
    height:50px!important;
  }
  .brand-title{
    font-size:22px!important;
    line-height:.92!important;
  }
  .brand-subtitle{
    display:none;
  }
  .hero h1,
  .subhero h1{
    font-size:clamp(34px,10vw,48px);
    line-height:1.02;
  }
  .hero p,
  .subhero p,
  .section-copy{
    font-size:15px;
    line-height:1.6;
  }
  .path-slot.real-image,
  .collection-card .image-slot.real-image,
  .inspiration-thumb.real-image,
  .location-card.real-image{
    aspect-ratio:4 / 3.15;
  }
  .collection-body{
    padding:18px;
  }
  .section{
    padding:54px 0;
  }
  .section.compact{
    padding:36px 0;
  }
  .cta-footer{
    padding:24px;
    border-radius:26px;
    margin:44px 0 22px;
  }
  .cta-logo{
    width:96px;
    height:96px;
    margin-inline:auto;
  }
  .footer-meta{
    flex-direction:column;
    text-align:center;
  }
  .footer-logo-mini{
    width:52px;
    height:52px;
  }
}

/* === FIX FINAL: FOTOS REALES + WHATSAPP DIRECTO === */
.whatsapp-direct-card{
  padding:32px!important;
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
}
.whatsapp-direct-card h2{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--navy);
  font-size:clamp(34px,4vw,54px);
  line-height:1.04;
  letter-spacing:-.04em;
}
.whatsapp-direct-card p{
  color:var(--muted);
  line-height:1.65;
}
.whatsapp-number-display{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(216,236,251,.72), rgba(255,255,255,.85));
  color:var(--navy);
  font-weight:900;
  box-shadow:0 12px 26px rgba(8,53,104,.08);
}
.whatsapp-main-btn{
  width:max-content;
  max-width:100%;
}
.small-contact-note{
  font-size:13px;
}

#inspiracion .path-card:first-child .path-slot.real-image img,
#projectGrid .inspiration-card:first-child .inspiration-thumb img{
  object-position:center center!important;
}
#modelos .collection-card:first-child .image-slot.real-image img,
#projectGrid .inspiration-card:nth-child(2) .inspiration-thumb img{
  object-position:center center!important;
}

@media (max-width:760px){
  .whatsapp-main-btn,
  .whatsapp-number-display{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}
