/* ============ TOKENS ============ */
:root {
    --warm-white: #FBF8F3;
    --cream: #F6F0E7;
    --ink: #2E2A33;
    --ink-soft: #6B6472;
    --lavender: #E8DCF8;
    --lavender-deep: #B79EDE;
    --sand: #ECE1CC;
    --mist: #DAE9F0;
    --sage: #DAE8DC;
    --quartz: #F6DCE4;
    --lilac: #E0CBF2;
    --gold: #C9A468;
    --dark: #17131E;
    --dark-2: #221A2C;
    --glass-bg: rgba(255, 255, 255, 0.16);
    --glass-bg-soft: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-bg-dark: rgba(255, 255, 255, 0.055);
    --glass-border-dark: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 8px 40px rgba(90, 70, 120, 0.14);
    --shadow-deep: 0 20px 80px rgba(60, 40, 90, 0.22);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.7;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: none;
    color: inherit;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

section {
    position: relative;
    padding: min(14vw, 140px) 6vw;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

::selection {
    background: var(--lavender-deep);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============ CUSTOM CURSOR ============ */
#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--lavender-deep);
}

#cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(183, 158, 222, 0.55);
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s ease, background .3s ease;
}

#cursor-ring.hovered {
    width: 70px;
    height: 70px;
    background: rgba(183, 158, 222, 0.12);
    border-color: var(--gold);
}

@media (hover:none),
(pointer:coarse) {

    #cursor-dot,
    #cursor-ring {
        display: none;
    }

    body,
    button,
    a {
        cursor: auto;
    }
}

/* ============ GLASS BASE ============ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 28px;
}

.glass-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--glass-border-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ============ AMBIENT MESH BACKGROUND (global) ============ */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: var(--warm-white);
}

.mesh-bg span {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .55;
    animation: drift 26s ease-in-out infinite alternate;
}

.mesh-bg span:nth-child(1) {
    width: 38vw;
    height: 38vw;
    background: var(--lavender);
    top: -8%;
    left: -6%;
    animation-duration: 24s;
}

.mesh-bg span:nth-child(2) {
    width: 30vw;
    height: 30vw;
    background: var(--quartz);
    top: 20%;
    right: -8%;
    animation-duration: 30s;
    animation-delay: -6s;
}

.mesh-bg span:nth-child(3) {
    width: 34vw;
    height: 34vw;
    background: var(--mist);
    bottom: -10%;
    left: 10%;
    animation-duration: 28s;
    animation-delay: -12s;
}

.mesh-bg span:nth-child(4) {
    width: 26vw;
    height: 26vw;
    background: var(--sage);
    bottom: 5%;
    right: 15%;
    animation-duration: 22s;
    animation-delay: -3s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(4%, -6%) scale(1.12);
    }

    100% {
        transform: translate(-5%, 5%) scale(0.96);
    }
}

/* ============ NAVBAR ============ */
#navbar {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: min(92vw, 1180px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-radius: 999px;
    transition: padding .5s var(--ease), background .5s ease, box-shadow .5s ease, width .5s var(--ease);
}

#navbar.scrolled {
    padding: 10px 24px;
    width: min(86vw, 980px);
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand strong {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    letter-spacing: .02em;
}

.brand span {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: .86rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

#nav-toggle {
    display: none;
}

@media(max-width:900px) {
    .nav-links {
        display: none;
    }

    #nav-toggle {
        display: block;
        font-size: 1.4rem;
    }
}

/* ============ BUTTONS ============ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
    overflow: hidden;
    isolation: isolate;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, var(--lavender-deep), var(--gold));
    color: #fff;
    box-shadow: 0 10px 40px rgba(183, 158, 222, .45);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(183, 158, 222, .6), 0 0 40px rgba(201, 164, 104, .5);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--ink);
    backdrop-filter: blur(18px);
}

.btn-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(90, 70, 120, .2);
    background: rgba(255, 255, 255, 0.28);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    transform: scale(0);
    animation: rip .6s ease-out forwards;
    pointer-events: none;
}

@keyframes rip {
    to {
        transform: scale(6);
        opacity: 0;
    }
}

/* ============ HERO ============ */
#hero {
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 6vw;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(60vw, 620px);
    height: min(60vw, 620px);
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .9), var(--lavender) 32%, var(--quartz) 55%, var(--lilac) 75%, transparent 78%);
    filter: blur(6px);
    animation: breathe 7s ease-in-out infinite;
    box-shadow: 0 0 120px 40px rgba(183, 158, 222, .35), 0 0 220px 100px rgba(201, 164, 104, .12);
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: .92;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content .eyebrow {
    justify-content: center;
}

h1.hero-title {
    font-size: clamp(3rem, 9vw, 7.2rem);
    font-weight: 400;
    line-height: .98;
    margin-bottom: 22px;
}

h1.hero-title em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(120deg, var(--lavender-deep), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 42px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-hint {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-hint .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrolldown 2s ease-in-out infinite;
}

@keyframes scrolldown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ============ SECTION HEADERS ============ */
.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    margin-bottom: 16px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ QUIENES SOMOS ============ */
#about {
    background: linear-gradient(180deg, transparent, rgba(232, 220, 248, .35) 40%, transparent);
}

/* ============ ABOUT BANNER ============ */
.about-banner {
    margin-bottom: 56px;
    padding: 14px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: transform .8s var(--ease);
}

.about-banner:hover img {
    transform: scale(1.015);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
}

.person-card {
    padding: 36px;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform .2s ease-out;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 26px;
    position: relative;
    background: conic-gradient(from 120deg, var(--lavender), var(--quartz), var(--mist), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(90, 70, 120, .25), inset 0 0 0 6px rgba(255, 255, 255, .55);
}

.avatar::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    animation: spin 18s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.avatar span {
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(90, 70, 120, .4);
}

.avatar.has-photo {
    background: var(--warm-white);
    padding: 5px;
}

.avatar.has-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(90, 70, 120, .25);
}

.person-card h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.person-role {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    font-weight: 600;
    margin-bottom: 16px;
}

.person-card p.bio {
    color: var(--ink-soft);
    font-size: .95rem;
}

@media(max-width:820px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ SERVICIOS (orbes) ============ */
#services {
    text-align: center;
}

.orbit-field {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding-top: 20px;
}

.service-orb {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background: var(--glass-bg-soft);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
    cursor: none;
}

.service-orb::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--lavender), var(--quartz), var(--sage), var(--lavender));
    opacity: 0;
    filter: blur(18px);
    transition: opacity .5s ease;
    z-index: -1;
}

.service-orb .icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    color: var(--lavender-deep);
    transition: transform .5s var(--ease);
}

.service-orb h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-orb p {
    font-size: .86rem;
    color: var(--ink-soft);
}

.service-orb:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 70px rgba(120, 90, 160, .3);
}

.service-orb:hover::before {
    opacity: .65;
}

.service-orb:hover .icon {
    transform: scale(1.15) rotate(8deg);
}

.service-orb .ripple-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    opacity: 0;
}

.service-orb:hover .ripple-ring {
    animation: orbring 1.4s ease-out;
}

@keyframes orbring {
    0% {
        opacity: .9;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* ============ EXPERIENCIA INMERSIVA ============ */
#universe {
    min-height:380px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:radial-gradient(120% 100% at 50% 0%, rgba(232,220,248,.5), transparent 60%);
    overflow:hidden;padding:90px 6vw;
}

#universe-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.universe-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.universe-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.universe-content p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

/* ============ COMO FUNCIONA (timeline) ============ */
#process {
    background: linear-gradient(180deg, transparent, rgba(217, 232, 239, .4), transparent);
}

.timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 26px;
    right: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--lavender-deep) 50%, var(--gold) 85%, transparent);
}

.timeline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.t-step {
    position: relative;
    padding-top: 60px;
    text-align: center;
}

.t-node {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff, var(--lavender) 60%, var(--lavender-deep));
    box-shadow: 0 0 0 6px rgba(232, 220, 248, .5), 0 0 30px rgba(183, 158, 222, .6);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.t-step:hover .t-node {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 10px rgba(232, 220, 248, .6), 0 0 46px rgba(201, 164, 104, .7);
}

.t-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.t-step p {
    font-size: .86rem;
    color: var(--ink-soft);
}

.t-num {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: .75rem;
    color: var(--gold);
}

@media(max-width:820px) {
    .timeline-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline::before {
        display: none;
    }
}

/* ============ TESTIMONIOS ============ */
#testimonials {
    overflow: hidden;
}

.bubble-field {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.bubble {
    width: 320px;
    padding: 32px;
    border-radius: 32px;
    animation: float 8s ease-in-out infinite;
}

.bubble:nth-child(2) {
    animation-duration: 10s;
    animation-delay: -2s;
}

.bubble:nth-child(3) {
    animation-duration: 9s;
    animation-delay: -4s;
}

.bubble p.quote {
    font-size: .98rem;
    color: var(--ink);
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 400;
}

.bubble .who {
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    font-weight: 600;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(0.6deg);
    }
}

/* ============ TIKTOK ============ */
#tiktok {
    overflow: hidden;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.tiktok-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    animation: float 9s ease-in-out infinite;
}

.tiktok-card:nth-child(2) {
    animation-delay: -2.5s;
    animation-duration: 10s;
}

.tiktok-card:nth-child(3) {
    animation-delay: -5s;
    animation-duration: 8.5s;
}

.tiktok-card:nth-child(4) {
    animation-delay: -1.5s;
    animation-duration: 9.5s;
}

.tiktok-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 70px rgba(120, 90, 160, .32);
}

.tiktok-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tiktok-card:nth-child(1) .tiktok-bg {
    background: linear-gradient(160deg, var(--lavender), var(--lilac) 55%, var(--lavender-deep));
}

.tiktok-card:nth-child(2) .tiktok-bg {
    background: linear-gradient(160deg, var(--quartz), var(--sand) 55%, var(--gold));
}

.tiktok-card:nth-child(3) .tiktok-bg {
    background: linear-gradient(160deg, var(--mist), var(--sage) 55%, var(--lavender-deep));
}

.tiktok-card:nth-child(4) .tiktok-bg {
    background: linear-gradient(160deg, var(--sage), var(--lavender) 55%, var(--gold));
}

.tiktok-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(23, 19, 30, .5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .66rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
}

.tiktok-badge svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.tiktok-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .5);
    transition: transform .4s var(--ease), background .4s ease;
}

.tiktok-card:hover .tiktok-play {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(255, 255, 255, .34);
}

.tiktok-play svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-left: 3px;
}

.tiktok-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 26px 18px 18px;
    background: linear-gradient(0deg, rgba(23, 19, 30, .75), transparent);
    color: #fff;
    font-size: .86rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

.tiktok-cta {
    text-align: center;
    margin-top: 52px;
}

@media(max-width:980px) {
    .tiktok-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .tiktok-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* ============ FAQ ============ */
#faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 22px;
    overflow: hidden;
}

.faq-q {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    font-weight: 500;
    cursor: none;
}

.faq-q .plus {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--lavender-deep);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-q .plus::before {
    width: 100%;
    height: 1.5px;
}

.faq-q .plus::after {
    width: 1.5px;
    height: 100%;
    transition: transform .45s var(--ease);
}

.faq-item.open .plus::after {
    transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .55s var(--ease);
}

.faq-item.open .faq-a-wrap {
    grid-template-rows: 1fr;
}

.faq-a-inner {
    overflow: hidden;
}

.faq-a {
    padding: 0 28px 24px;
    color: var(--ink-soft);
    font-size: .94rem;
}

/* ============ CONTACTO ============ */
#contact-panel {
    padding: 56px clamp(20px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(180, 160, 200, .3);
    background: rgba(255, 255, 255, .5);
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--lavender-deep);
    box-shadow: 0 0 0 4px rgba(183, 158, 222, .22);
    background: #fff;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    height: 220px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.85);
}

.contact-info {
    margin-top: 24px;
    font-size: .92rem;
    color: var(--ink-soft);
}

.contact-info strong {
    color: var(--ink);
}

@media(max-width:900px) {
    #contact-panel {
        grid-template-columns: 1fr;
    }
}

/* ============ INTRO POPUP ============ */
#popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(46, 42, 51, .38);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--ease), visibility 0s linear .5s;
}

#popup-overlay.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s var(--ease), visibility 0s linear 0s;
}

.popup-panel {
    position: relative;
    width: min(88vw, 360px);
    padding: 32px 26px 26px;
    text-align: center;
    transform: translateY(28px) scale(.96);
    opacity: 0;
    transition: transform .55s var(--ease), opacity .55s var(--ease);
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(23, 19, 30, .86), rgba(23, 19, 30, .9)),
        url("../img/ambas_modal.png") center 15%/cover no-repeat;
    backdrop-filter: blur(26px) saturate(160%);
    -webkit-backdrop-filter: blur(26px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .08);
}

#popup-overlay.open .popup-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lavender-deep), transparent 70%);
    filter: blur(50px);
    opacity: .35;
    z-index: -1;
}

.popup-panel::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    filter: blur(50px);
    opacity: .25;
    z-index: -1;
}

#popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    transition: transform .3s var(--ease), background .3s ease;
}

#popup-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, .22);
}

#popup-close svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    stroke-width: 1.6;
    fill: none;
}

.popup-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 30%, #fff, var(--lavender) 60%, var(--lavender-deep));
    box-shadow: 0 10px 26px rgba(183, 158, 222, .35);
}

.popup-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.popup-panel .eyebrow {
    justify-content: center;
    color: var(--gold);
}

.popup-panel .eyebrow::before {
    background: var(--gold);
}

.popup-panel h3 {
    font-size: 1.22rem;
    margin-bottom: 8px;
    color: #fff;
}

.popup-panel p.popup-sub {
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    margin-bottom: 18px;
}

.popup-panel .field {
    text-align: left;
    margin-bottom: 11px;
}

.popup-panel .field label {
    color: rgba(255, 255, 255, .65);
    font-size: .7rem;
}

.popup-panel .field input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    padding: 11px 14px;
}

.popup-panel .field input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.popup-panel .field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 164, 104, .18);
    background: rgba(255, 255, 255, .12);
}

.popup-panel .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    padding: 13px 28px;
    font-size: .86rem;
}

.popup-note {
    font-size: .68rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 12px;
}

.popup-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 0 4px;
}

.popup-success.show {
    display: flex;
}

.popup-success h3 {
    color: #fff;
}

.popup-success svg {
    width: 44px;
    height: 44px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.4;
}

@media(max-width:480px) {
    .popup-panel {
        padding: 28px 20px 22px;
        width: 90vw;
    }
}

/* ============ SOCIAL FLOAT ============ */
#social-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
    align-items: center;
}

.social-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(60, 40, 90, .25);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.social-tip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(23, 19, 30, .85);
    color: #fff;
    font-size: .74rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    backdrop-filter: blur(8px);
}

.social-btn:hover .social-tip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

#wa-float {
    background: linear-gradient(135deg, #25D366, #1fb855);
}

#wa-float svg {
    fill: #fff;
}

#wa-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, .5);
    animation: pulse 2.4s ease-out infinite;
}

#ig-float {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
}

#ig-float svg {
    fill: url(#ig-gradient);
}

#tt-float {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
}

#tt-float svg {
    fill: var(--ink);
}

@keyframes pulse {
    0% {
        transform: scale(.9);
        opacity: .8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media(max-width:600px) {
    #social-float {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .social-btn {
        width: 48px;
        height: 48px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .social-tip {
        display: none;
    }
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark);
    color: #EFE9F5;
    position: relative;
    overflow: hidden;
    padding: 90px 6vw 40px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    transition: transform .35s var(--ease), background .35s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .16);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: #EFE9F5;
}

#footer-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .7;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-grid h4 {
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    margin-bottom: 18px;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: .9rem;
    color: #C9C2D6;
}

.footer-brand strong {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
}

.footer-brand p {
    color: #B6ADC8;
    font-size: .9rem;
    margin-top: 10px;
    max-width: 320px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .78rem;
    color: #8B8299;
}

@media(max-width:820px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}