@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');
:root {
    --ink: #49373a;
    --cream: #fff8f6;
    --peach: #ffb1aa;
    --sage: #f5d7e7;
    --rose: #ff5a60;
    --pink: #e052a0;
    --white: #fffdfc
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif
}

header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background: rgba(248, 241, 232, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e7dbd0
}

.logo {
    display: flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none
}

.logo img {
    width: 82px;
    height: 52px;
    object-fit: contain;
    display: block
}

nav details {
    position: relative
}

summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700
}

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

nav details>a {
    display: block;
    text-decoration: none;
    color: var(--ink);
    padding: 9px 14px
}

nav details[open] {
    position: relative
}

nav details[open]>a {
    background: var(--white)
}

.whatsapp,
.button {
    display: inline-block;
    background: var(--ink);
    color: white;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700
}

.hero {
    min-height: calc(100vh - 75px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 6%;
    padding: 7% 8%
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    font-weight: 700;
    opacity: .65
}

.hero h1 {
    font: 600 clamp(3.2rem, 7vw, 6.8rem)/.98 'Playfair Display', serif;
    margin: 20px 0
}

.hero h1 em {
    color: var(--pink)
}

.hero p {
    max-width: 570px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px
}

.visual {
    min-height: 560px;
    border-radius: 180px 180px 25px 25px;
    background: linear-gradient(145deg, var(--rose), var(--pink));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center
}

.intro,
.testimonials {
    padding: 12% 8%;
    text-align: center
}

.intro h2,
.section-head h2,
.split h2,
.testimonials h2,
.cta h2 {
    font: 500 clamp(2.5rem, 5vw, 5rem)/1.05 'Playfair Display', serif;
    margin: 15px auto 25px
}

.intro p:last-child,
.section-head>p:last-child,
.cta p {
    max-width: 650px;
    margin: auto;
    line-height: 1.8
}

section:not(.hero):not(.intro):not(.testimonials):not(.cta) {
    padding: 8%
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px
}

.cards article {
    background: var(--white);
    padding: 35px;
    border-radius: 24px
}

.cards span {
    font-size: 1.5rem;
    color: var(--pink)
}

h3 {
    font: 500 1.7rem 'Playfair Display', serif
}

.cards p {
    line-height: 1.7;
    color: #71645e
}

.soft {
    background: #e7e9de
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 40px
}

.gallery div {
    height: 270px;
    background: #d7d0c7;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #776d67;
    font-weight: 700
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center
}

.split ul {
    list-style: none;
    padding: 0
}

.split li {
    padding: 20px 0;
    border-bottom: 1px solid #ddcec3
}

.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: left
}

.quotes blockquote {
    margin: 0;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    font: italic 1.15rem/1.6 'Playfair Display', serif
}

.quotes b {
    display: block;
    font: 700 .8rem 'DM Sans';
    margin-top: 20px;
    font-style: normal
}

.cta {
    text-align: center;
    background: var(--rose);
    padding: 12% 8%!important;
    color: white
}

.cta .eyebrow {
    opacity: .8
}

.cta .button {
    background: white;
    color: var(--ink);
    margin-top: 25px
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 35px 8%;
    background: var(--ink);
    color: white
}

footer span {
    opacity: .7
}

@media(max-width:800px) {
    header {
        padding: 15px 5%
    }
    .whatsapp {
        font-size: .75rem;
        padding: 10px 14px
    }
    .hero,
    .split {
        grid-template-columns: 1fr
    }
    .hero {
        padding-top: 12%
    }
    .visual {
        min-height: 380px
    }
    .cards,
    .quotes,
    .gallery {
        grid-template-columns: 1fr
    }
    .gallery div {
        height: 220px
    }
    section:not(.hero):not(.intro):not(.testimonials):not(.cta),
    .intro,
    .testimonials {
        padding: 18% 7%
    }
    footer {
        flex-direction: column;
        gap: 12px
    }
}

.visual {
    position: relative;
    overflow: hidden
}

.visual img,
.visual video {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block
}

.visual-label {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(73, 61, 57, .78);
    padding: 10px 15px;
    border-radius: 999px
}

.gallery div {
    overflow: hidden;
    padding: 0
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.gallery div:hover img {
    transform: scale(1.04)
}

@media(max-width:800px) {
    .visual img {
        min-height: 380px
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 88px;
    padding: 0 5%;
    background: rgba(255, 248, 246, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eadbd5;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none
}

.brand img {
    width: 132px;
    height: 58px;
    object-fit: contain;
    display: block
}

.header-whatsapp {
    background: var(--rose);
    box-shadow: 0 6px 20px rgba(224, 82, 160, .16)
}

.text-loop-section {
    padding: 18px 0 38px!important;
    overflow: hidden;
    background: var(--cream);
    border-top: 1px solid #f0dfda;
    border-bottom: 1px solid #f0dfda
}

.text-loop {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 82px;
    display: flex;
    align-items: center
}

.text-loop::before,
.text-loop::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none
}

.text-loop::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream), transparent)
}

.text-loop::after {
    right: 0;
    background: linear-gradient(270deg, var(--cream), transparent)
}

.text-loop-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    line-height: 1
}

.text-loop-track span {
    display: inline-block;
    padding-right: 36px;
    font-family: 'DM Sans', sans-serif
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0
}

.b-icon svg.icon {
    width: 1.3rem;
    height: 1.3rem
}

.b-candies span svg.icon {
    width: 1.5rem;
    height: 1.5rem
}

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

.ghost-light {
    background: transparent;
    border: 1.5px solid #fff;
    margin-left: 12px
}

.blob-container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1000
}

.blob-main {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: transparent;
    user-select: none
}

.blob {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    transform: translate(-50%, -50%)
}

.inner-dot {
    position: absolute
}

@media(pointer:coarse) {
    .blob-container {
        display: none
    }
}

@media(max-width:800px) {
    .text-loop-section {
        padding: 14px 0 28px!important
    }
    .text-loop {
        height: 64px
    }
    .text-loop-track span {
        font-size: 26px!important;
        padding-right: 28px
    }
}

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

.menu-wrap {
    position: relative
}

.menu-toggle {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    padding: 11px 18px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    user-select: none
}

.menu-toggle::-webkit-details-marker {
    display: none
}

.menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(73, 55, 58, .18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    min-width: 230px;
    gap: 2px
}

.menu-panel a {
    color: var(--ink);
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem
}

.menu-panel a:hover {
    background: var(--cream)
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px
}

.ghost {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink)
}

.about {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 8%;
    align-items: center
}

.about ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.about li {
    line-height: 1.5
}

.about .visual {
    min-height: 460px
}

.about .visual img,
.about .visual video {
    min-height: 460px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px
}

.steps article {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 24px
}

.steps b {
    display: block;
    font: 600 2.2rem 'Playfair Display', serif;
    color: var(--pink);
    margin-bottom: 10px
}

.steps p {
    color: #71645e;
    line-height: 1.7;
    margin: 0
}

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

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

.exp-grid a {
    display: block;
    background: var(--white);
    padding: 26px 22px;
    border-radius: 22px;
    text-decoration: none;
    color: var(--ink)
}

.exp-grid a span {
    font-size: 1.5rem
}

.exp-grid a h3 {
    margin: 14px 0 6px;
    font-size: 1.2rem
}

.exp-grid a p {
    margin: 0;
    color: #71645e;
    font-size: .9rem;
    line-height: 1.6
}

.experience-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center
}

.experience-detail.reverse .visual {
    order: 2
}

.experience-detail .visual {
    min-height: 420px;
    border-radius: 40px
}

.experience-detail .visual img {
    min-height: 420px
}

.experience-detail .cards {
    grid-template-columns: repeat(2, 1fr)
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.extras-grid article {
    background: var(--white);
    padding: 30px;
    border-radius: 22px
}

.extras-grid span {
    font-size: 1.4rem;
    color: var(--pink)
}

.crossfade {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 800px
}

.crossfade img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: crossfade 8s infinite
}

.crossfade img:nth-child(1) {
    animation-delay: 0s
}

.crossfade img:nth-child(2) {
    animation-delay: 4s
}

@keyframes crossfade {
    0% {
        opacity: 1
    }
    45% {
        opacity: 1
    }
    55% {
        opacity: 0
    }
    95% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@media(prefers-reduced-motion:reduce) {
    .crossfade img {
        animation: none;
        opacity: 0
    }
    .crossfade img:nth-child(1) {
        opacity: 1
    }
}

.spa-imagine {
    margin: 0
}

.spa-imagine .imagine-line {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink);
}

.spa-imagine .imagine-no {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--pink);
    margin: 6px 0 18px;
}

.spa-imagine .imagine-detail {
    display: inline-block;
    transform: rotate(-2deg);
    background: var(--white);
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(73, 55, 58, .1);
    line-height: 1.6;
    color: #71645e;
}

@media(max-width:800px) {
    .about,
    .experience-detail {
        grid-template-columns: 1fr
    }
    .about .visual {
        order: -1
    }
    .experience-detail.reverse .visual {
        order: -1
    }
    .steps,
    .exp-grid,
    .extras-grid {
        grid-template-columns: 1fr 1fr
    }
    .menu-panel {
        min-width: 210px
    }
}

@media(max-width:520px) {
    .steps,
    .exp-grid,
    .extras-grid {
        grid-template-columns: 1fr
    }
}

/* ===== Fotos con marco cuadrado / circular ===== */
.frame-square {
    aspect-ratio: 1 / 1 !important;
    border-radius: 24px !important;
    border: 6px solid #fff !important;
    box-shadow: 0 12px 30px rgba(73, 55, 58, .14) !important;
    overflow: hidden;
}
.frame-circle {
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    border: 6px solid #fff !important;
    box-shadow: 0 12px 30px rgba(73, 55, 58, .14) !important;
    overflow: hidden;
}
.gallery div {
    aspect-ratio: 1 / 1;
    height: auto !important;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(73, 55, 58, .12);
    border-radius: 24px;
}
.gallery div:nth-child(3n) {
    border-radius: 50%;
}
.about .visual {
    border-radius: 32px;
    border: 6px solid #fff;
    box-shadow: 0 18px 40px rgba(73, 55, 58, .16);
}
.hero .visual {
    border-radius: 32px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 18px 40px rgba(73, 55, 58, .16);
}
.hero .visual video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    background: #111;
}

/* ===== Presentación / lista de experiencias ===== */
.exp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 6px;
    padding: 0;
    list-style: none;
}
.exp-pills li {
    background: #fff;
    border: 1.5px solid #eadbd5;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
}
.mission {
    background: #fff;
    border-radius: 22px;
    padding: 24px 22px;
    margin-top: 22px;
    box-shadow: 0 12px 30px rgba(73, 55, 58, .08);
}
.mission h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}
.mission ul {
    margin: 12px 0 0 !important;
}

/* ===== Armá tu experiencia / Builder ===== */
.builder {
    background: #fff8f6;
}
.builder-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(73, 55, 58, .1);
    border: 1px solid #f0dfda;
}
.builder-progress {
    display: flex;
    gap: 8px;
    margin: 18px 0 6px;
}
.builder-progress i {
    height: 6px;
    flex: 1;
    border-radius: 999px;
    background: #f0dfda;
    display: block;
}
.builder-progress i.is-on {
    background: linear-gradient(90deg, var(--rose), var(--pink));
}
.builder-step {
    margin-top: 26px;
}
.builder-step h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
}
.builder-step > p {
    margin: 0 0 14px;
    color: #71645e;
}
.builder-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.builder-chips--2 {
    grid-template-columns: repeat(4, 1fr);
}
.builder-chip {
    text-align: left;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 14px;
    cursor: pointer;
    font-family: inherit;
    color: var(--ink);
}
.builder-chip strong {
    display: block;
    font-size: 1rem;
}
.builder-chip span {
    display: block;
    font-size: .85rem;
    color: #71645e;
    margin-top: 4px;
    line-height: 1.4;
}
.builder-chip:hover {
    border-color: #f0c9d8;
}
.builder-chip.is-selected {
    background: #fff;
    border-color: var(--pink);
    box-shadow: 0 10px 24px rgba(224, 82, 160, .16);
}
.builder-chip--small {
    background: #fff;
    border: 1.5px dashed #e9b8cf;
}
.builder-incluye {
    margin-top: 26px;
    background: var(--cream);
    border-radius: 20px;
    padding: 22px;
}
.builder-incluye.is-empty {
    opacity: .75;
}
.builder-incluye h4 {
    margin: 0 0 10px;
}
.builder-incluye ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.7;
}
.builder-note {
    background: #fdf0f5;
    border: 1px solid #f3c6da;
    padding: 12px 14px;
    border-radius: 14px;
    color: #8a4a63;
}
.builder-resumen {
    margin-top: 22px;
    border-top: 1px solid #f0dfda;
    padding-top: 18px;
}
.builder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.builder-wa {
    background: #25d366 !important;
    color: #fff !important;
}
.builder-wa.is-disabled {
    opacity: .5;
    pointer-events: none;
}

/* ================= BEAUTY PACK — Bernardina ================= */
:root {
    --ink: #4a2f36;
    --ink-soft: #7a5f66;
    --cream: #fff6f3;
    --cream-2: #fff0ea;
    --rose: #ff6b7a;
    --pink: #e052a0;
    --pink-deep: #c93a86;
    --gold: #ffcf6e;
    --mint: #c8ead9;
    --lilac: #ddd0ff;
    --card: #ffffff;
    --line: #f3ddd6;
    --shadow-lg: 0 24px 60px rgba(224, 82, 160, .16);
    --shadow-md: 0 14px 34px rgba(74, 47, 54, .12);
    --shadow-sm: 0 8px 20px rgba(74, 47, 54, .08);
    --r-lg: 28px;
    --r-md: 22px;
    --r-sm: 16px;
}

body {
    background:
        radial-gradient(900px 500px at 10% -5%, #ffe4dc 0%, transparent 60%),
        radial-gradient(800px 500px at 95% 10%, #fbd8ea 0%, transparent 60%),
        radial-gradient(700px 600px at 50% 110%, #fff0d6 0%, transparent 60%),
        var(--cream);
    color: var(--ink);
    font-family: 'Quicksand', 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
    font-family: 'Fredoka', 'Playfair Display', sans-serif;
    letter-spacing: -.02em;
}

/* Header */
.site-header {
    height: 76px;
    background: rgba(255, 246, 243, .82);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(224, 82, 160, .14);
    box-shadow: 0 8px 30px rgba(224, 82, 160, .08);
}
.brand img {
    width: 148px;
    height: 62px;
    filter: saturate(1.05);
}
.menu-toggle {
    background: #fff;
    border: 1.5px solid var(--ink);
    box-shadow: var(--shadow-sm);
    transition: .25s ease;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}
.menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
    color: var(--pink-deep);
}
.menu-panel {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    min-width: 260px;
}
.menu-panel a {
    font-family: 'Quicksand', sans-serif;
    transition: .2s;
}
.menu-panel a:hover {
    background: linear-gradient(135deg, #fff0ea, #fde3ef);
    transform: translateX(3px);
}

/* Buttons */
.button, .whatsapp {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 15px 26px;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    border: 0;
}
.button:not(.ghost):not(.ghost-light):not(.builder-wa),
.whatsapp.header-whatsapp {
    background: linear-gradient(135deg, var(--rose) 0%, var(--pink) 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(224, 82, 160, .32);
}
.button:not(.ghost):hover, .whatsapp.header-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 18px 38px rgba(224, 82, 160, .38);
}
.button.ghost {
    background: #fff;
    border: 1.5px solid #eacfc6;
    box-shadow: var(--shadow-sm);
}
.button.ghost:hover {
    border-color: var(--pink);
    color: var(--pink-deep);
    transform: translateY(-2px);
}

/* Eyebrow badge */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    opacity: 1;
    color: var(--pink-deep);
    box-shadow: var(--shadow-sm);
    letter-spacing: .14em;
}

/* Hero */
.hero {
    gap: 5%;
    padding: 5% 7% 6%;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, #ffd6e3 0%, transparent 70%);
    top: -160px;
    right: -120px;
    pointer-events: none;
    z-index: 0;
}
.hero > div:first-child { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.9rem);
    line-height: .98;
    margin: 18px 0 18px;
}
.hero h1 em {
    background: linear-gradient(135deg, var(--pink), #ff7a5c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: normal;
}
.hero p {
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.75;
    margin: 0 0 14px;
    max-width: 600px;
}
.hero p strong {
    color: var(--ink);
    background: linear-gradient(transparent 60%, #ffe08a 60%);
    padding: 0 2px;
}
.hero .visual {
    border-radius: 36px;
    border: 8px solid #fff;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.2deg);
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5;
    min-height: 0;
    background: #111;
}
.hero .visual::after {
    content: "✨ 2 a 3 hs a domicilio ✨";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: 'Fredoka', sans-serif;
    font-size: .85rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}
.hero .visual video {
    min-height: 0;
    height: 100%;
    aspect-ratio: 4 / 5;
}
.visual-label {
    background: rgba(255,255,255,.92);
    color: var(--ink);
    backdrop-filter: blur(8px);
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}

/* Pills */
.exp-pills li {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: .2s;
    cursor: default;
}
.exp-pills li:hover {
    transform: translateY(-2px) rotate(-1deg);
    border-color: var(--pink);
    box-shadow: var(--shadow-md);
}
.exp-pills li:nth-child(3n) { background: #fff3f7; }
.exp-pills li:nth-child(4n) { background: #fff8e6; }

/* Sections */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}
.section-head > p:last-child { color: var(--ink-soft); }
section:not(.hero):not(.intro):not(.testimonials):not(.cta) { padding: 6% 7%; }

/* Cards */
.steps article, .cards article, .extras-grid article, .exp-grid a {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.steps article::before, .cards article::before, .extras-grid article::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--rose), var(--pink), var(--gold));
    opacity: 0;
    transition: .3s;
}
.steps article:hover, .cards article:hover, .extras-grid article:hover, .exp-grid a:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.steps article:hover::before, .cards article:hover::before, .extras-grid article:hover::before { opacity: 1; }
.steps b {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.exp-grid a span, .cards span, .extras-grid span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffe7ef, #fff3d6);
    font-size: 1.4rem;
    color: var(--pink-deep);
}
.soft { background: linear-gradient(180deg, #fdeee7, #fce4ec); }

/* About */
.about .visual {
    border-radius: 36px;
    border: 8px solid #fff;
    transform: rotate(-1.2deg);
}
.about .visual img { min-height: 0; }
.mission {
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #ffb1aa, #e052a0, #ffcf6e) border-box;
    border: 2px solid transparent;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}
.mission h3 { font-size: 1.5rem; }

/* Experience detail */
.experience-detail .visual, .crossfade.frame-square {
    border-radius: 32px !important;
    border: 8px solid #fff !important;
    box-shadow: var(--shadow-lg) !important;
    min-height: 440px;
}
.experience-detail h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }

/* Gallery — cuadrado / circular prolijo */
.gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery div {
    border: 6px solid #fff;
    border-radius: 26px;
    box-shadow: var(--shadow-md);
    transition: .35s ease;
    aspect-ratio: 1 / 1;
    height: auto !important;
}
.gallery div:nth-child(3n) { border-radius: 50%; }
.gallery div:hover { transform: scale(1.03) rotate(-1deg); }

/* Builder premium */
.builder {
    background: linear-gradient(180deg, #fff6f3, #fff);
}
.builder-card {
    border-radius: 32px;
    padding: 36px 32px;
    border: 1px solid #f5d3e0;
    box-shadow: var(--shadow-lg);
    max-width: 1080px;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}
.builder-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 10px;
    background: linear-gradient(90deg, #ff8fa3, #e052a0, #ffcf6e, #8be0c3);
}
.builder-progress i { height: 8px; }
.builder-step {
    background: #fff7f4;
    border: 1px solid #f6ddd5;
    border-radius: 24px;
    padding: 22px;
    margin-top: 18px;
}
.builder-step h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.builder-step h3::before {
    counter-increment: step;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 0 0 6px #fde3ef;
    flex-shrink: 0;
}
.builder-chip {
    background: #fff;
    border: 2px solid #f1d9d1;
    border-radius: 20px;
    padding: 16px 14px;
    transition: .22s ease;
    box-shadow: var(--shadow-sm);
}
.builder-chip strong { font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 1.02rem; }
.builder-chip:hover { transform: translateY(-3px); border-color: var(--pink); box-shadow: var(--shadow-md); }
.builder-chip.is-selected {
    border-color: var(--pink);
    background: linear-gradient(135deg, #fff, #fff0f5);
    box-shadow: 0 14px 30px rgba(224,82,160,.22);
    position: relative;
}
.builder-chip.is-selected::after {
    content: "✓";
    position: absolute;
    top: -10px;
    right: -8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}
.builder-incluye {
    background: linear-gradient(135deg, #2e1e24, #5b2b41);
    color: #fff;
    border-radius: 24px;
    padding: 26px 24px;
    box-shadow: var(--shadow-lg);
    margin-top: 20px;
}
.builder-incluye h4 { font-family: 'Fredoka', sans-serif; font-size: 1.25rem; margin: 0 0 12px; }
.builder-incluye ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.builder-incluye li {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    padding: 10px 14px 10px 40px;
    border-radius: 14px;
    position: relative;
    line-height: 1.5;
}
.builder-incluye li::before {
    content: "✦";
    position: absolute;
    left: 14px;
    color: var(--gold);
}
.builder-incluye.is-empty { opacity: 1; background: #f7ece8; color: var(--ink-soft); box-shadow: none; }
.builder-incluye.is-empty li { background: #fff; border-color: var(--line); }
.builder-incluye.is-empty li::before { color: #d9b8ae; }
.builder-note { border-radius: 16px; font-weight: 600; }
.builder-resumen {
    background: #fff;
    border: 1px dashed #e9a8c6;
    border-radius: 20px;
    padding: 18px;
    margin-top: 20px;
}
.builder-actions .button { font-size: 1.05rem; }
.builder-wa {
    background: linear-gradient(135deg, #2fd06b, #1eb356) !important;
    box-shadow: 0 14px 30px rgba(37,211,102,.35) !important;
}
.builder-wa:hover { transform: translateY(-2px) scale(1.02); }

/* Testimonios + CTA */
.quotes blockquote {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    border-radius: 26px;
    position: relative;
}
.quotes blockquote::before {
    content: "“";
    position: absolute;
    top: -18px;
    left: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-family: serif;
}
.cta {
    background: linear-gradient(135deg, #ff6b7a 0%, #e052a0 60%, #a855f7 100%);
    border-radius: 40px;
    margin: 40px 3%;
    padding: 8% 6% !important;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: "✦ ✦ ✦";
    position: absolute;
    top: 24px;
    left: 0; right: 0;
    opacity: .35;
    letter-spacing: 12px;
}
footer { border-radius: 28px 28px 0 0; }

@media(max-width:900px) {
    .hero { grid-template-columns: 1fr; padding-top: 8%; }
    .hero .visual { aspect-ratio: 16 / 11; transform: none; }
    .hero .visual video { aspect-ratio: 16 / 11; min-height: 300px; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .builder-card { padding: 22px 18px; }
    .cta { margin: 24px 12px; border-radius: 28px; }
}

/* ============ CREADORA + RESPONSIVE TOTAL ============ */
img, video { max-width: 100%; height: auto; }
#scrubCanvas { width: 100%; height: 100%; max-width: none; display: block; }
#ideal-sleepover .video-scroll { padding: 0 !important; margin: 0 !important; }
html, body { overflow-x: clip; }
main { max-width: 1280px; margin: 0 auto; }
/* La pijamada ideal va full-width para que los frames se vean grandes */
#ideal-sleepover { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); background: #111; }
#ideal-sleepover .hero, #ideal-sleepover .components-intro, #ideal-sleepover .bento, #ideal-sleepover .cta { max-width: 1280px; margin-left: auto; margin-right: auto; }
/* Sin espacio blanco entre frames y lo que sigue */
#ideal-sleepover .video-scroll { background: #111 !important; }
#ideal-sleepover .components-intro { padding-top: 48px !important; margin-top: 0 !important; background: var(--cream); }

.creadora {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 6%;
    align-items: center;
    background: linear-gradient(135deg, #1d1116, #4b2136 60%, #7a2f5a);
    color: #fff;
    border-radius: 36px;
    margin: 30px 4%;
    padding: 5% 5%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.creadora::before {
    content: "✦ ✦ ✦";
    position: absolute;
    top: 18px;
    right: 26px;
    opacity: .35;
    letter-spacing: 10px;
}
.creadora-media {
    aspect-ratio: 4 / 5;
    border-radius: 999px 999px 36px 36px;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.9);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    background: #fff;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}
.creadora-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.creadora-copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.02; margin: 14px 0; font-weight: 600; }
.creadora-copy h2 em { font-style: italic; font-weight: 400; opacity: .9; }
.creadora-copy .eyebrow { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); color: #ffd9e8; }
.creadora-sub { font-family: 'Fredoka', sans-serif; font-size: 1.25rem; color: var(--gold); margin: 0 0 14px; }
.creadora-copy p { color: rgba(255,255,255,.88); line-height: 1.7; }

/* ---- Tablet ---- */
@media(max-width:1024px) {
    section:not(.hero):not(.intro):not(.testimonials):not(.cta) { padding: 7% 5%; }
    .exp-grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .quotes { grid-template-columns: 1fr 1fr; }
    .builder-chips { grid-template-columns: repeat(2, 1fr); }
    .builder-chips--2 { grid-template-columns: repeat(2, 1fr); }
    .experience-detail { gap: 5%; }
}

/* ---- Mobile ---- */
@media(max-width:768px) {
    .site-header { height: auto; min-height: 68px; padding: 10px 4%; gap: 10px; }
    .brand img { width: 118px; height: 48px; }
    .header-actions { gap: 8px; }
    .menu-toggle { padding: 10px 14px; font-size: .9rem; }
    .header-whatsapp { font-size: .8rem; padding: 11px 14px; }
    .menu-panel { position: fixed; top: 68px; left: 12px; right: 12px; min-width: 0; max-height: 70vh; overflow: auto; }
    .hero { grid-template-columns: 1fr; padding: 28px 5% 30px; min-height: 0; gap: 22px; }
    .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
    .hero p { font-size: 1rem; }
    .hero-actions .button, .hero-actions .whatsapp { width: 100%; text-align: center; }
    .hero .visual { transform: none; aspect-ratio: 1 / 1; border-width: 6px; }
    .hero .visual video { aspect-ratio: 1 / 1; min-height: 280px; }
    .hero .visual::after { font-size: .75rem; top: 12px; }
    .exp-pills li { font-size: .82rem; padding: 8px 12px; }
    .about, .experience-detail, .split, .creadora { grid-template-columns: 1fr; }
    .about .visual { order: -1; min-height: 0; }
    .about .visual img { min-height: 300px; }
    .creadora { margin: 18px 12px; padding: 28px 20px; border-radius: 28px; text-align: center; }
    .creadora-media { max-width: 300px; aspect-ratio: 1 / 1; border-radius: 50%; }
    .creadora-copy .hero-actions .button { width: 100%; }
    .steps, .exp-grid, .extras-grid, .cards, .quotes { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery div { border-width: 4px; border-radius: 20px; }
    .gallery div:nth-child(3n) { border-radius: 50%; }
    .experience-detail .visual, .crossfade.frame-square { min-height: 300px; border-width: 6px !important; }
    .builder-card { padding: 20px 14px; border-radius: 24px; }
    .builder-step { padding: 16px 12px; }
    .builder-chips, .builder-chips--2 { grid-template-columns: 1fr; }
    .builder-chip { padding: 14px 12px; }
    .button, .whatsapp { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
    .cta { margin: 18px 10px; padding: 12% 7% !important; border-radius: 26px; }
    .text-loop-track span { font-size: 22px !important; }
    footer { flex-direction: column; gap: 10px; text-align: center; }
}

/* ---- Small phones ---- */
@media(max-width:420px) {
    .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
    .exp-pills { gap: 8px; }
    .builder-actions .button { width: 100%; }
    .creadora-media { max-width: 240px; }
}

/* ===== En celu: fotos enteras, sin recorte ===== */
@media(max-width:768px) {
    .gallery { grid-template-columns: 1fr; }
    .gallery div, .gallery div:nth-child(3n) {
        aspect-ratio: auto;
        height: auto;
        border-radius: 22px;
        overflow: hidden;
    }
    .gallery img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
        background: #fff;
    }
    .visual, .about .visual, .experience-detail .visual, .crossfade.frame-square {
        aspect-ratio: auto !important;
        min-height: 0 !important;
    }
    .visual img, .about .visual img, .experience-detail .visual img, .crossfade img {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
        object-position: center !important;
        background: #fff;
    }
    .about .visual img[src*="us-new"] { height: auto; }
    .creadora-media {
        aspect-ratio: auto;
        border-radius: 28px;
    }
    .creadora-media img { height: auto; object-fit: contain; }
    .hero .visual, .hero .visual video {
        aspect-ratio: auto;
        min-height: 0;
    }
    .hero .visual video { height: auto; min-height: 240px; object-fit: contain; background: #111; }
    #ideal-sleepover .hp { display: none; }
}
.contact-phone {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.18);
    border: 1.5px solid rgba(255,255,255,.6);
    padding: 10px 22px;
    border-radius: 999px;
    margin: 6px 0 8px;
}

/* ---- PC grande ---- */
@media(min-width:1280px) {
    .hero { padding: 4% 5% 5%; }
    .gallery { grid-template-columns: repeat(4, 1fr); }
}

/* Fix scroll horizontal del video interactivo en mobile */
#ideal-sleepover .hero-photos { display: none; }
@media(max-width:768px) {
    #ideal-sleepover .hero { padding: 90px 5% 50px; min-height: 0; }
    #ideal-sleepover .bento { grid-template-columns: 1fr; }
}

/* ===== Fotos más enfocadas (no cortadas) ===== */
.visual img, .gallery img, .crossfade img, .creadora-media img {
    object-position: center 25%;
}
.frame-square img, .crossfade.frame-square img {
    object-position: center 30%;
}
/* Collage equipo: mostrar completo sin cortar nombres */
.about .visual img[src*="us-new"] {
    object-fit: contain;
    object-position: center;
    background: #fff;
}
/* Creadora: priorizar rostro arriba */
.creadora-media img {
    object-position: center 15%;
}
/* Hero video: no recortar tanto */
.hero .visual {
    aspect-ratio: 1 / 1;
}
.hero .visual video {
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
}
.hero .visual::after {
    content: "Te acompañamos 2 a 3 horas";
    max-width: 90%;
    white-space: normal;
    text-align: center;
}
/* Galería: caras al centro-arriba */
.gallery img { object-position: center 30%; }
.gallery div:nth-child(3n) img { object-position: center 20%; }
/* Detalles: menos recorte */
.experience-detail .visual img, .crossfade img {
    object-position: center 30%;
}
/* Niveles / cantidades explicativos en Presupuestos */
.levels-explain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1080px;
    margin: 24px auto 0;
}
.levels-explain--qty { grid-template-columns: repeat(4, 1fr); }
.levels-explain article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.levels-explain h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--pink-deep);
}
.levels-explain p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
@media(max-width:768px) {
    .levels-explain, .levels-explain--qty { grid-template-columns: 1fr; }
}
/* Precios en Presupuestos */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1080px; margin: 24px auto 0; }
.price-grid--extras { grid-template-columns: repeat(3, 1fr); }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px 18px; box-shadow: var(--shadow-sm); }
.price-card h3 { margin: 0 0 4px; font-size: 1.1rem; }
.price-sub { margin: 0 0 10px; color: var(--pink-deep); font-weight: 700; font-size: .9rem; }
.price-card ul { margin: 0; padding-left: 18px; color: var(--ink-soft); line-height: 1.65; font-size: .92rem; }
.price-card--sm h3 { color: var(--pink-deep); }
.price-table-wrap { max-width: 1080px; margin: 26px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px 18px; box-shadow: var(--shadow-sm); }
.price-table-wrap h3 { margin: 0 0 14px; font-size: 1.05rem; }
.price-table { display: grid; gap: 6px; }
.price-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 8px; padding: 10px 12px; border-radius: 12px; background: #fff7f4; font-size: .92rem; }
.price-row span:nth-child(n+2) { font-weight: 700; text-align: right; white-space: nowrap; }
.price-head { background: linear-gradient(135deg, var(--rose), var(--pink)); color: #fff; font-weight: 700; }
.price-notes { max-width: 1080px; margin: 16px auto 0; background: #fdf0f5; border: 1px solid #f3c6da; padding: 12px 16px; border-radius: 14px; color: #8a4a63; line-height: 1.6; }
.builder-precio { margin-top: 14px; background: linear-gradient(135deg, #fff8e6, #fff0f5); border: 2px solid var(--gold); border-radius: 18px; padding: 16px 18px; font-size: 1.1rem; }
.builder-precio strong { font-family: 'Fredoka', sans-serif; font-size: 1.35rem; display: block; }
.builder-precio span { color: var(--ink-soft); font-size: .92rem; }
.chip-price { color: var(--pink-deep); font-weight: 700; }
.builder-group { grid-column: 1 / -1; margin: 14px 0 2px; font-family: 'Fredoka', sans-serif; color: var(--pink-deep); font-size: .95rem; }
.builder-step[hidden] { display: none; }
.builder-step.is-dimmed { opacity: .55; }
.builder-step.is-dimmed:hover { opacity: 1; }
@media(max-width:900px) { .price-grid, .price-grid--extras { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) {
    .price-grid, .price-grid--extras { grid-template-columns: 1fr; }
    .price-row { grid-template-columns: 1.2fr 1fr 1fr 1fr; font-size: .8rem; padding: 8px; }
}
@media(max-width:768px) {
    .visual img, .gallery img { object-position: center 25%; }
    .about .visual img[src*="us-new"] { min-height: 0; height: auto; aspect-ratio: auto; }
    .hero .visual { aspect-ratio: 4 / 3; }
    .hero .visual video { aspect-ratio: 4 / 3; min-height: 260px; }
}
@media(max-width:800px) {
    .builder-chips, .builder-chips--2 {
        grid-template-columns: 1fr 1fr;
    }
    .builder-card {
        padding: 20px;
    }
}
@media(max-width:520px) {
    .builder-chips, .builder-chips--2 {
        grid-template-columns: 1fr;
    }
}