/* =====================================================================
   Be Whole · Sistema de diseño
   Estética cálida, femenina, terapéutica y premium.
   ===================================================================== */

:root {
    /* Paleta de marca · basada en el logo y las piezas gráficas de Be Whole */
    --bw-cream:      #FDF3EF; /* fondo principal (blush cálido) */
    --bw-pink:       #F5D9DB; /* rosado claro */
    --bw-coral:      #DD8A83; /* coral principal (botones/CTA) */
    --bw-terracotta: #C46F66; /* coral oscuro (hover) */
    --bw-gold:       #C79A4E; /* dorado (detalles, luna/loto) */
    --bw-gold-dk:    #A67F38; /* dorado profundo */
    --bw-mint:       #DCEBE8; /* verde menta suave */
    --bw-teal:       #2C7A75; /* teal de marca (wordmark "Be Whole") */
    --bw-teal-dk:    #215E5A; /* teal profundo (hover/títulos) */
    --bw-lavender:   #B29AC7; /* lavanda (tarot/detalles) */
    --bw-blue:       #86AEC0; /* azul suave (terapias/floral) */
    --bw-sand:       #EED9C5; /* beige arena */
    --bw-brown:      #5B3B31; /* marrón cálido (textos/títulos) */
    --bw-gray:       #6F625C; /* gris texto */
    --bw-white:      #ffffff;

    /* Tokens semánticos */
    --bw-bg:          var(--bw-cream);
    --bw-text:        var(--bw-brown);
    --bw-text-soft:   var(--bw-gray);
    --bw-primary:     var(--bw-coral);
    --bw-primary-dk:  var(--bw-terracotta);
    --bw-secondary:   var(--bw-teal);
    --bw-brand:       var(--bw-teal);

    /* Tipografía */
    --bw-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --bw-sans:  "Montserrat", "Nunito Sans", system-ui, -apple-system, sans-serif;

    /* Formas */
    --bw-radius:    18px;
    --bw-radius-sm: 12px;
    --bw-radius-lg: 28px;
    --bw-shadow:    0 12px 40px -18px rgba(91, 59, 49, 0.28);
    --bw-shadow-sm: 0 6px 20px -12px rgba(91, 59, 49, 0.30);
    --bw-container: 1180px;
    --bw-transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- Base */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--bw-sans);
    color: var(--bw-text);
    background: var(--bw-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .bw-serif {
    font-family: var(--bw-serif);
    color: var(--bw-brown);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.2px;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { margin: 0 0 1rem; color: var(--bw-text-soft); }

a { color: var(--bw-terracotta); text-decoration: none; transition: color var(--bw-transition); }
a:hover { color: var(--bw-coral); }

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

.bw-container {
    width: 100%;
    max-width: var(--bw-container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.bw-section { padding: clamp(3rem, 7vw, 6rem) 0; }
.bw-section--tint { background: linear-gradient(160deg, var(--bw-pink) 0%, var(--bw-cream) 70%); }
.bw-section--mint { background: linear-gradient(160deg, var(--bw-mint) 0%, var(--bw-cream) 80%); }
.bw-section--sand { background: var(--bw-sand); }

.bw-eyebrow {
    display: inline-block;
    font-family: var(--bw-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bw-gold);
    margin-bottom: 0.6rem;
}

.bw-lead { font-size: 1.15rem; color: var(--bw-text-soft); }
.bw-center { text-align: center; }
.bw-muted { color: var(--bw-text-soft); }
.text-primary-bw { color: var(--bw-primary) !important; }

.bw-section-head { max-width: 640px; margin: 0 auto 2.6rem; }

/* ------------------------------------------------------------- Botones */
.bw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--bw-sans);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--bw-transition);
    text-align: center;
    line-height: 1;
}
.bw-btn:hover { transform: translateY(-2px); }

.bw-btn--primary { background: var(--bw-coral); color: #fff; box-shadow: var(--bw-shadow-sm); }
.bw-btn--primary:hover { background: var(--bw-terracotta); color: #fff; }

.bw-btn--secondary { background: var(--bw-teal); color: #fff; }
.bw-btn--secondary:hover { background: #0c777b; color: #fff; }

.bw-btn--outline { background: transparent; border-color: var(--bw-coral); color: var(--bw-terracotta); }
.bw-btn--outline:hover { background: var(--bw-coral); color: #fff; }

.bw-btn--ghost { background: rgba(255,255,255,0.7); color: var(--bw-terracotta); }
.bw-btn--ghost:hover { background: #fff; }

.bw-btn--gold { background: var(--bw-gold); color: #fff; }
.bw-btn--block { width: 100%; justify-content: center; }
.bw-btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.bw-btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* --------------------------------------------------------------- Grid */
.bw-grid { display: grid; gap: 1.6rem; }
.bw-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bw-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bw-grid--4 { grid-template-columns: repeat(4, 1fr); }
.bw-grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* -------------------------------------------------------------- Cards */
.bw-card {
    background: #fff;
    border-radius: var(--bw-radius);
    box-shadow: var(--bw-shadow);
    overflow: hidden;
    transition: transform var(--bw-transition), box-shadow var(--bw-transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 154, 85, 0.12);
}
.bw-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -20px rgba(91,59,49,0.4); }
.bw-card__media { aspect-ratio: 16/11; background: var(--bw-sand); overflow: hidden; }
.bw-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bw-card:hover .bw-card__media img { transform: scale(1.05); }
.bw-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.bw-card__title { font-size: 1.2rem; margin: 0; }
.bw-card__foot { margin-top: auto; padding-top: 0.8rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }

/* Icono circular de servicio */
.bw-icon-circle {
    width: 62px; height: 62px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--bw-pink);
    color: var(--bw-terracotta);
    font-size: 1.6rem;
    flex: none;
}

/* Precio */
.bw-price { font-family: var(--bw-serif); font-size: 1.5rem; color: var(--bw-terracotta); font-weight: 600; }
.bw-price__old { font-size: 1rem; color: var(--bw-text-soft); text-decoration: line-through; margin-right: 0.4rem; font-family: var(--bw-sans); }

/* Badges */
.bw-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    padding: 0.28rem 0.7rem; border-radius: 999px; text-transform: uppercase;
}
.bw-badge--coral { background: var(--bw-pink); color: var(--bw-terracotta); }
.bw-badge--teal  { background: var(--bw-mint); color: var(--bw-teal-dk); }
.bw-badge--gold  { background: #f6ecd8; color: var(--bw-gold-dk); }
.bw-badge--lavender { background: #ece4f3; color: #6f5a86; }
.bw-badge--blue  { background: #dceaf0; color: #3f6c7e; }
.bw-badge--online { background: var(--bw-mint); color: #0c777b; }
.bw-badge--presencial { background: var(--bw-pink); color: var(--bw-terracotta); }
/* Estados */
.bw-badge--pendiente { background: #fde7cf; color: #9c7638; }
.bw-badge--confirmada, .bw-badge--pagada, .bw-badge--completada, .bw-badge--publicado { background: var(--bw-mint); color: #0c777b; }
.bw-badge--cancelada, .bw-badge--fallida, .bw-badge--no_asistio { background: #f6dcd8; color: #a2453a; }
.bw-badge--nueva { background: var(--bw-pink); color: var(--bw-terracotta); }

/* Loto decorativo */
.bw-lotus { color: var(--bw-gold); opacity: 0.9; }

/* ------------------------------------------------------- Header / Nav */
.bw-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 154, 85, 0.15);
}
.bw-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; }
.bw-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--bw-serif); font-size: 1.5rem; font-weight: 700; color: var(--bw-brown); }
.bw-brand img { max-height: 48px; width: auto; }
.bw-brand__sub { display: block; font-family: var(--bw-sans); font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--bw-gold); }
.bw-menu { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.bw-menu a { color: var(--bw-brown); font-weight: 500; font-size: 0.95rem; position: relative; }
.bw-menu a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--bw-coral); transition: width var(--bw-transition); }
.bw-menu a:hover::after, .bw-menu a.active::after { width: 100%; }
.bw-nav__actions { display: flex; align-items: center; gap: 0.7rem; }
.bw-cart-link { position: relative; font-size: 1.3rem; color: var(--bw-brown); }
.bw-cart-count { position: absolute; top: -8px; right: -10px; background: var(--bw-coral); color: #fff; font-size: 0.66rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }
.bw-burger { display: none; background: none; border: none; font-size: 1.6rem; color: var(--bw-brown); cursor: pointer; }

/* --------------------------------------------------------------- Hero */
.bw-hero { position: relative; overflow: hidden; background: linear-gradient(155deg, #F7DCDD 0%, #FDF3EF 46%, #E4EEEB 100%); }
.bw-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center; padding: clamp(2.5rem, 6vw, 5.5rem) 0; }
.bw-hero h1 { margin-bottom: 1rem; }
.bw-hero__lead { font-size: 1.2rem; max-width: 34rem; }
.bw-hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.bw-hero__media { position: relative; }
.bw-hero__media img { border-radius: var(--bw-radius-lg); box-shadow: var(--bw-shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.bw-hero__blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: 0.5; z-index: 0; }
.bw-hero__deco { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }

/* Placeholder de imágenes (mientras no cargan reales) */
.bw-ph { background: linear-gradient(135deg, var(--bw-pink), var(--bw-sand)); display: grid; place-items: center; color: var(--bw-terracotta); font-family: var(--bw-serif); }
.bw-ph--tall { aspect-ratio: 4/5; }

/* --------------------------------------------------------------- Feature list */
.bw-feature { display: flex; gap: 1rem; align-items: flex-start; }
.bw-feature__icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--bw-mint); color: var(--bw-teal); display: grid; place-items: center; font-size: 1.3rem; }

/* ------------------------------------------------------- Testimonios */
.bw-testimonial { background: #fff; border-radius: var(--bw-radius); padding: 1.6rem; box-shadow: var(--bw-shadow-sm); border-left: 4px solid var(--bw-gold); }
.bw-testimonial__text { font-family: var(--bw-serif); font-size: 1.15rem; font-style: italic; color: var(--bw-brown); }
.bw-testimonial__name { font-weight: 700; color: var(--bw-terracotta); font-size: 0.9rem; }

/* ------------------------------------------------------------- Footer */
.bw-footer { background: var(--bw-brown); color: #f3e7df; padding: 3.5rem 0 1.5rem; margin-top: auto; }
.bw-footer a { color: #f3e7df; opacity: 0.85; }
.bw-footer a:hover { color: #fff; opacity: 1; }
.bw-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.bw-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.bw-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.bw-footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2.5rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; opacity: 0.8; }
.bw-social { display: flex; gap: 0.7rem; }
.bw-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; }

/* ------------------------------------------------------- WhatsApp FAB */
.bw-whatsapp {
    position: fixed; bottom: 22px; right: 22px; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff; display: grid; place-items: center;
    font-size: 1.7rem; box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
    transition: transform var(--bw-transition);
    border: 3px solid rgba(255,255,255,0.7);
}
.bw-whatsapp:hover { transform: scale(1.08); color: #fff; }

/* ------------------------------------------------------------ Alerts */
.bw-alert { border-radius: var(--bw-radius-sm); padding: 0.9rem 1.2rem; margin-bottom: 1rem; font-size: 0.95rem; border: 1px solid transparent; }
.bw-alert--success { background: var(--bw-mint); color: #0c6b6e; border-color: #b9e0d8; }
.bw-alert--error   { background: #f8e0dc; color: #a2453a; border-color: #eec3bc; }
.bw-alert--info    { background: var(--bw-pink); color: var(--bw-terracotta); }

/* ------------------------------------------------------------ Forms */
.bw-form-group { margin-bottom: 1.1rem; }
.bw-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--bw-brown); }
.bw-input, .bw-select, .bw-textarea {
    width: 100%; padding: 0.75rem 1rem; border-radius: var(--bw-radius-sm);
    border: 1px solid #e6d3c6; background: #fff; font-family: var(--bw-sans);
    font-size: 0.98rem; color: var(--bw-brown); transition: border var(--bw-transition), box-shadow var(--bw-transition);
}
.bw-input:focus, .bw-select:focus, .bw-textarea:focus { outline: none; border-color: var(--bw-coral); box-shadow: 0 0 0 3px rgba(217, 130, 115, 0.15); }
.bw-textarea { min-height: 130px; resize: vertical; }
.bw-form-error { color: #a2453a; font-size: 0.82rem; margin-top: 0.3rem; }
.bw-card--form { max-width: 520px; margin: 0 auto; padding: 2.2rem; }

/* Auth split */
.bw-auth { min-height: 80vh; display: grid; place-items: center; padding: 3rem 0; }

/* ------------------------------------------------------------- Utils */
.bw-mt-0 { margin-top: 0; } .bw-mb-0 { margin-bottom: 0; }
.bw-flex { display: flex; gap: 1rem; } .bw-flex--between { justify-content: space-between; } .bw-flex--center { align-items: center; }
.bw-wrap { flex-wrap: wrap; }
.bw-gap-sm { gap: 0.5rem; }
.bw-hr { border: none; border-top: 1px solid rgba(201,154,85,0.2); margin: 1.5rem 0; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------- Responsive */
@media (max-width: 960px) {
    .bw-hero__inner { grid-template-columns: 1fr; }
    .bw-hero__media { order: -1; max-width: 420px; }
    .bw-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .bw-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .bw-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .bw-menu { position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--bw-cream); padding: 1rem 1.5rem; box-shadow: var(--bw-shadow); transform: translateY(-140%); transition: transform var(--bw-transition); border-bottom: 1px solid rgba(201,154,85,0.2); }
    .bw-menu.is-open { transform: none; }
    .bw-menu li { width: 100%; padding: 0.6rem 0; border-bottom: 1px solid rgba(201,154,85,0.12); }
    .bw-burger { display: block; }
    .bw-grid--2, .bw-grid--3, .bw-grid--4 { grid-template-columns: 1fr; }
    .bw-footer__grid { grid-template-columns: 1fr; }
}
/* =====================================================
   BE WHOLE - NAVBAR CON LOGO CENTRAL Y ALETA REDONDA
===================================================== */

.bw-header--center-logo {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 247, 242, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 154, 85, 0.16);
    overflow: visible;
}

.bw-nav-container {
    position: relative;
}

.bw-nav--center-logo {
    position: relative;
    min-height: 118px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    align-items: center;
    gap: 0;
    padding: 0;
}

.bw-nav-side {
    min-width: 0;
    display: flex;
    align-items: center;
}

.bw-nav-side--left {
    justify-content: flex-end;
    padding-right: 1.8rem;
}

.bw-nav-side--right {
    justify-content: flex-start;
    padding-left: 1.8rem;
    gap: 1.1rem;
}

.bw-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.3vw, 1.25rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.bw-menu a {
    color: var(--bw-brown);
    font-weight: 500;
    font-size: 0.94rem;
    position: relative;
    white-space: nowrap;
}

.bw-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--bw-coral);
    transition: width var(--bw-transition);
}

.bw-menu a:hover::after,
.bw-menu a.active::after {
    width: 100%;
}

/* Logo central */
.bw-center-brand {
    position: relative;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 4;
    margin-bottom: -28px;
}

/* Aleta redonda detrás del logo */
.bw-center-brand::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 2px;
    width: 166px;
    height: 118px;
    transform: translateX(-50%);
    background: rgba(255, 247, 242, 0.98);
    border: 1px solid rgba(201, 154, 85, 0.18);
    border-top: 0;
    border-radius: 0 0 999px 999px;
    box-shadow: 0 18px 36px -26px rgba(91, 59, 49, 0.55);
    z-index: -1;
}

/* Círculo del logo */
.bw-center-brand__disc {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #fffaf7;
    border: 2px solid rgba(201, 154, 85, 0.32);
    box-shadow:
        0 12px 28px -18px rgba(91, 59, 49, 0.65),
        inset 0 0 0 6px rgba(253, 243, 239, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    overflow: hidden;
    transition: transform var(--bw-transition), box-shadow var(--bw-transition);
}

.bw-center-brand:hover .bw-center-brand__disc {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 18px 34px -18px rgba(91, 59, 49, 0.7),
        inset 0 0 0 6px rgba(253, 243, 239, 0.95);
}

.bw-center-brand__disc img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 50%;
}

/* Acciones lado derecho */
.bw-nav__actions--desktop {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.bw-nav__actions--desktop .bw-btn {
    white-space: nowrap;
}

.bw-cart-link {
    position: relative;
    font-size: 1.25rem;
    color: var(--bw-brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.bw-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--bw-coral);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0 4px;
}

/* Botón móvil oculto en escritorio */
.bw-burger {
    display: none;
}

/* Menú móvil oculto en escritorio */
.bw-mobile-menu {
    display: none;
}

/* Pantallas medianas */
@media (max-width: 1280px) {
    .bw-nav--center-logo {
        grid-template-columns: minmax(0, 1fr) 145px minmax(0, 1fr);
    }

    .bw-nav-side--left {
        padding-right: 1rem;
    }

    .bw-nav-side--right {
        padding-left: 1rem;
        gap: 0.75rem;
    }

    .bw-menu {
        gap: 0.85rem;
    }

    .bw-menu a {
        font-size: 0.88rem;
    }

    .bw-center-brand {
        width: 136px;
    }

    .bw-center-brand::before {
        width: 148px;
    }

    .bw-center-brand__disc {
        width: 92px;
        height: 92px;
    }

    .bw-nav__actions--desktop .bw-btn {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.82rem;
    }
}

/* Desde aquí pasa a versión móvil/tablet */
@media (max-width: 1120px) {
    .bw-header--center-logo {
        overflow: visible;
    }

    .bw-nav--center-logo {
        min-height: 86px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem 0;
    }

    .bw-nav-side {
        display: none;
    }

    .bw-center-brand {
        width: 82px;
        height: 82px;
        margin-bottom: 0;
        position: relative;
        grid-column: auto;
    }

    .bw-center-brand::before {
        display: none;
    }

    .bw-center-brand__disc {
        width: 72px;
        height: 72px;
        padding: 5px;
    }

    .bw-burger {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        border: 1px solid rgba(201, 154, 85, 0.35);
        background: rgba(255, 255, 255, 0.68);
        color: var(--bw-brown);
        align-items: center;
        justify-content: center;
        font-size: 1.55rem;
        cursor: pointer;
        box-shadow: 0 8px 22px -18px rgba(91, 59, 49, 0.45);
    }

    .bw-mobile-menu {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        top: 86px;
        z-index: 99;
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.25rem 1.25rem;
        background: rgba(255, 247, 242, 0.98);
        border-bottom: 1px solid rgba(201, 154, 85, 0.2);
        box-shadow: 0 22px 40px -28px rgba(91, 59, 49, 0.45);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--bw-transition), opacity var(--bw-transition);
    }

    .bw-mobile-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .bw-mobile-menu a {
        color: var(--bw-brown);
        font-weight: 600;
        padding: 0.78rem 0;
        border-bottom: 1px solid rgba(201, 154, 85, 0.12);
    }

    .bw-mobile-menu a.active {
        color: var(--bw-terracotta);
    }

    .bw-mobile-menu__actions {
        display: grid;
        gap: 0.75rem;
        margin-top: 1rem;
    }
}

/* Celular */
@media (max-width: 560px) {
    .bw-nav--center-logo {
        min-height: 78px;
    }

    .bw-center-brand {
        width: 76px;
        height: 76px;
    }

    .bw-center-brand__disc {
        width: 66px;
        height: 66px;
    }

    .bw-mobile-menu {
        top: 78px;
    }

    .bw-burger {
        width: 42px;
        height: 42px;
        font-size: 1.35rem;
    }
}
/* =====================================================
   BE WHOLE - LOGO CENTRAL MÁS GRANDE
===================================================== */

@media (min-width: 1121px) {
    .bw-nav--center-logo {
        min-height: 135px;
        grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
    }

    .bw-center-brand {
        width: 180px;
        height: 142px;
        margin-bottom: -36px;
    }

    .bw-center-brand::before {
        width: 196px;
        height: 138px;
        top: 0;
        border-radius: 0 0 999px 999px;
    }

    .bw-center-brand__disc {
        width: 128px;
        height: 128px;
        padding: 8px;
    }

    .bw-center-brand__disc img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
}

/* Escritorio mediano */
@media (min-width: 1121px) and (max-width: 1280px) {
    .bw-nav--center-logo {
        min-height: 125px;
        grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    }

    .bw-center-brand {
        width: 165px;
        height: 130px;
        margin-bottom: -32px;
    }

    .bw-center-brand::before {
        width: 178px;
        height: 128px;
    }

    .bw-center-brand__disc {
        width: 112px;
        height: 112px;
    }
}

/* Tablet y móvil */
@media (max-width: 1120px) {
    .bw-nav--center-logo {
        min-height: 96px;
    }

    .bw-center-brand {
        width: 92px;
        height: 92px;
    }

    .bw-center-brand__disc {
        width: 84px;
        height: 84px;
        padding: 6px;
    }

    .bw-mobile-menu {
        top: 96px;
    }
}

/* Celular */
@media (max-width: 560px) {
    .bw-nav--center-logo {
        min-height: 88px;
    }

    .bw-center-brand {
        width: 86px;
        height: 86px;
    }

    .bw-center-brand__disc {
        width: 78px;
        height: 78px;
    }

    .bw-mobile-menu {
        top: 88px;
    }
}
/* =====================================================
   BE WHOLE - FOOTER PREMIUM CON LOGO CIRCULAR REAL
===================================================== */

.bw-footer--premium {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(221, 138, 131, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(199, 154, 78, 0.12), transparent 24%),
        linear-gradient(135deg, #5b3b31 0%, #6a4338 42%, #7a4b3f 100%);
    color: #f7ece5;
    padding: 5.2rem 0 1.6rem;
    margin-top: auto;
    overflow: hidden;
}

.bw-footer--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 25%),
        radial-gradient(circle at 20% 0%, rgba(255,255,255,0.06), transparent 18%);
    opacity: 0.85;
}

.bw-footer__ornament {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, 92%);
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(199,154,78,0.32) 10%, rgba(255,236,212,0.95) 50%, rgba(199,154,78,0.32) 90%, transparent 100%);
    box-shadow: 0 8px 24px rgba(199,154,78,0.15);
}

.bw-footer__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.82fr 0.82fr 1.05fr;
    gap: 2.1rem;
    padding: 2rem 0 1.3rem;
}

.bw-footer__brand-col {
    min-width: 0;
}

.bw-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
}

.bw-footer-brand:hover {
    color: #fff;
}

.bw-footer-brand__logo {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    border-radius: 50%;
    background: rgba(255, 248, 243, 0.12);
    border: 1px solid rgba(255, 232, 214, 0.28);
    box-shadow:
        0 18px 32px -18px rgba(0,0,0,0.35),
        inset 0 0 0 8px rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.bw-footer-brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.bw-footer-brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    line-height: 1.1;
}

.bw-footer-brand__text strong {
    font-family: var(--bw-serif);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2px;
}

.bw-footer-brand__text small {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f2c67d;
    font-weight: 700;
}

.bw-footer__intro {
    max-width: 24rem;
    margin: 1.1rem 0 0;
    color: #f2ddd1;
    font-size: 1rem;
    line-height: 1.8;
}

.bw-footer__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.bw-footer__wa-btn {
    border-color: rgba(255, 233, 216, 0.45);
    color: #fff;
}

.bw-footer__wa-btn:hover {
    border-color: transparent;
}

.bw-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.bw-social-pill {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    transition: transform var(--bw-transition), background var(--bw-transition), border-color var(--bw-transition);
}

.bw-social-pill:hover {
    transform: translateY(-2px);
    background: rgba(221,138,131,0.35);
    border-color: rgba(255,255,255,0.22);
    color: #fff !important;
}

.bw-footer__col h4 {
    color: #fff;
    font-size: 1.18rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.55rem;
}

.bw-footer__col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bw-gold), rgba(255,255,255,0.35));
}

.premium-links {
    gap: 0.72rem;
}

.premium-links li {
    position: relative;
}

.premium-links a {
    color: #f4e6dd;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform var(--bw-transition), color var(--bw-transition);
}

.premium-links a::before {
    content: "•";
    color: #f2c67d;
    font-size: 1rem;
    line-height: 1;
}

.premium-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.bw-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.bw-footer-contact li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.72rem;
    align-items: start;
    color: #f4e6dd;
    line-height: 1.65;
}

.bw-footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    font-size: 1rem;
}

.bw-footer-contact a {
    color: #f4e6dd;
    opacity: 1;
}

.bw-footer-contact a:hover {
    color: #fff;
}

.bw-footer__contact-whatsapp {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.09);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.78rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 24px -18px rgba(0,0,0,0.28);
}

.bw-footer__contact-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.35);
    color: #fff !important;
}

.premium-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 2.2rem;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #e7d2c7;
    opacity: 1;
}

/* Tablet */
@media (max-width: 1100px) {
    .bw-footer__shell {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Móvil */
@media (max-width: 720px) {
    .bw-footer--premium {
        padding: 4.4rem 0 1.4rem;
    }

    .bw-footer__shell {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding-top: 1.6rem;
    }

    .bw-footer-brand {
        align-items: center;
    }

    .bw-footer-brand__logo {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }

    .bw-footer-brand__text strong {
        font-size: 1.7rem;
    }

    .bw-footer-brand__text small {
        font-size: 0.72rem;
        letter-spacing: 2.2px;
    }

    .bw-footer__intro {
        max-width: none;
    }

    .premium-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* =====================================================
   BE WHOLE - ICONO REAL INSTAGRAM FOOTER
===================================================== */

.bw-instagram-icon {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
    overflow: visible !important;
}

.bw-instagram-icon svg {
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.45);
    transition: transform var(--bw-transition), box-shadow var(--bw-transition);
}

.bw-instagram-icon:hover svg {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 14px 24px -12px rgba(0, 0, 0, 0.55);
}