﻿:root {
    --eb-bg: #f6edf2;
    --eb-white: #ffffff;
    --eb-text: #18181b;
    --eb-muted: #66606a;
    --eb-line: rgba(255, 255, 255, 0.6);
    --eb-line-dark: rgba(24, 24, 27, 0.08);
    --eb-pink: #ec4899;
    --eb-pink-strong: #db2777;
    --eb-fuchsia: #c026d3;
    --eb-soft: #fff7fb;
    --eb-dark: #22181f;
    --eb-shadow: 0 16px 40px rgba(24, 24, 27, 0.08);
    --eb-shadow-soft: 0 10px 30px rgba(24, 24, 27, 0.05);
    --eb-radius-xl: 2rem;
    --eb-radius-lg: 1.5rem;
    --eb-radius-pill: 999px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--eb-bg);
    color: var(--eb-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.eb-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.eb-page {
    overflow: hidden;
}

/* HEADER */

/*.eb-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.3s ease;
}

.eb-header.is-hidden {
    transform: translateY(-100%);
}*/

.eb-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
}

.eb-header.is-hidden {
    transform: translateY(-100%);
}

.eb-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.eb-brandMark {
    width: 40px;
    height: 40px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, var(--eb-fuchsia), var(--eb-pink));
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.25);
}

.eb-brandTitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.eb-brandSub {
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #71717a;
}

.eb-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.eb-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #3f3f46;
    transition: color 0.2s ease;
}

.eb-menu a:hover {
    color: var(--eb-pink-strong);
}

.eb-navActions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* BUTTONS */

.eb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    border-radius: var(--eb-radius-pill);
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

    .eb-btn:hover {
        transform: translateY(-1px);
    }

.eb-btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--eb-fuchsia), var(--eb-pink));
    box-shadow: 0 16px 30px rgba(236, 72, 153, 0.28);
}

    .eb-btn-primary:hover {
        box-shadow: 0 18px 34px rgba(236, 72, 153, 0.35);
    }

.eb-btn-ghost {
    color: var(--eb-pink-strong);
    background: rgba(255,255,255,0.92);
    border: 1px solid #fbcfe8;
    box-shadow: 0 4px 12px rgba(24, 24, 27, 0.04);
}

.eb-btn-outline {
    color: #27272a;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(161, 161, 170, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.eb-btn-lg {
    padding: 15px 28px;
    font-size: 15px;
}

.eb-navBag {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #27272a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(161, 161, 170, 0.28);
    box-shadow: 0 8px 20px rgba(24, 24, 27, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

    .eb-navBag:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(24, 24, 27, 0.10);
        color: var(--eb-pink-strong);
    }

.eb-bagSvg {
    width: 26px;
    height: 26px;
    overflow: visible;
}

@media (max-width: 767px) {
    .eb-navBag {
        width: 42px;
        height: 42px;
    }

    .eb-bagSvg {
        width: 24px;
        height: 24px;
    }
}

/* HERO */

.eb-hero {
    position: relative;
    padding: 132px 0 70px;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(246,237,242,0.7) 35%, rgba(233,213,255,0.55) 65%, rgba(244,114,182,0.16) 100%);
}

.eb-heroGlow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.eb-heroGlow-left {
    top: 40px;
    left: -120px;
    width: 290px;
    height: 290px;
    background: rgba(251, 207, 232, 0.6);
}

.eb-heroGlow-right {
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: rgba(233, 213, 255, 0.55);
}

.eb-heroGrid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.eb-pill {
    display: inline-flex;
    padding: 11px 16px;
    border-radius: var(--eb-radius-pill);
    border: 1px solid rgba(251, 207, 232, 0.9);
    background: rgba(255,255,255,0.8);
    color: var(--eb-pink-strong);
    box-shadow: 0 6px 18px rgba(24,24,27,0.04);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 11px;
    font-weight: 700;
}

.eb-heroTitle {
    max-width: 820px;
    margin: 18px 0 0;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.eb-heroText {
    max-width: 720px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--eb-muted);
}

.eb-heroActions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.eb-trustGrid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.eb-trustCard {
    padding: 18px 16px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--eb-shadow-soft);
    font-size: 11px;
    font-weight: 700;
    color: #5e5a62;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1.6;
}

/* HERO VISUAL */

.eb-heroVisual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.eb-heroCard {
    border-radius: var(--eb-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--eb-shadow);
}

.eb-heroCard-image {
    grid-row: span 2;
    min-height: 420px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .eb-heroCard-image img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
    }

.eb-heroCard-device {
    padding: 24px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.eb-cardEyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--eb-pink-strong);
}

.eb-cardEyebrow-light {
    color: rgba(255,255,255,0.82);
}

.eb-deviceTitle {
    margin-top: 12px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.eb-heroCard-device p,
.eb-heroCard-offer p {
    margin: 14px 0 0;
    color: var(--eb-muted);
    font-size: 14px;
    line-height: 1.9;
}

.eb-deviceBadge {
    margin-top: 22px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(90deg, #18181b, #27272a);
    color: #fff;
}

    .eb-deviceBadge > div {
        font-size: 14px;
        font-weight: 500;
    }

    .eb-deviceBadge span {
        display: block;
        margin-top: 6px;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
    }

.eb-heroCard-offer {
    padding: 24px;
    color: #fff;
    background: linear-gradient(135deg, #ec4899, #c026d3);
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.32);
}

.eb-launchTitle {
    margin-top: 12px;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.eb-heroCard-offer p {
    color: rgba(255,255,255,0.88);
}

/* SECTIONS */

.eb-section {
    padding: 28px 0 56px;
}

.eb-section-tight {
    padding-top: 8px;
    padding-bottom: 12px;
}

.eb-sectionHead {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.eb-sectionEyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--eb-pink-strong);
}

.eb-sectionTitle {
    margin: 10px 0 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.eb-sectionTitle-sm {
    font-size: clamp(28px, 2.5vw, 38px);
}

/* PROMO */

.eb-promoStrip {
    padding: 22px 28px;
    border-radius: var(--eb-radius-xl);
    background: var(--eb-dark);
    color: #fff;
    box-shadow: 0 22px 40px rgba(24,24,27,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.eb-promoEyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #f9a8d4;
}

.eb-promoTitle {
    margin-top: 6px;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.eb-promoText {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* OFFERS */

.eb-sliderArrows {
    display: flex;
    gap: 8px;
}

.eb-arrowBtn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #d4d4d8;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(24,24,27,0.04);
}

.eb-offersGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.eb-offerCard {
    padding: 24px;
    border-radius: var(--eb-radius-xl);
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--eb-shadow-soft);
}

.eb-offerTop {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

    .eb-offerTop h3 {
        margin: 0;
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.03em;
        font-weight: 600;
    }

    .eb-offerTop p {
        margin: 14px 0 0;
        color: var(--eb-muted);
        font-size: 14px;
        line-height: 1.9;
    }

.eb-priceBadge {
    flex-shrink: 0;
    background: #fdf2f8;
    color: var(--eb-pink-strong);
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
}

.eb-offerCard .eb-btn {
    margin-top: 24px;
}

.eb-dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .eb-dots span {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: #d4d4d8;
        display: inline-block;
    }

        .eb-dots span.is-active {
            width: 32px;
            background: var(--eb-pink);
        }

/* TREATMENTS */

.eb-treatmentGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.eb-treatmentCard {
    display: block;
    border-radius: var(--eb-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.82);
    box-shadow: var(--eb-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

    .eb-treatmentCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 38px rgba(24,24,27,0.10);
    }

.eb-treatmentImageWrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

    .eb-treatmentImageWrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

.eb-treatmentCard:hover img {
    transform: scale(1.05);
}

.eb-treatmentOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.70), rgba(0,0,0,0.10), transparent);
}

.eb-treatmentBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--eb-pink-strong);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.eb-treatmentContent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: #fff;
}

.eb-treatmentTitle {
    font-size: 31px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.eb-treatmentSub {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.84);
}

/* INFO */

.eb-infoGrid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
}

.eb-infoCard,
.eb-statsCard {
    padding: 32px;
    border-radius: var(--eb-radius-xl);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--eb-shadow-soft);
}

.eb-infoCard {
    background: rgba(255,255,255,0.82);
}

.eb-statsCard {
    background: linear-gradient(135deg, #ffffff, #f3dce7);
}

.eb-infoText {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 2;
    color: var(--eb-muted);
}

.eb-infoList {
    margin: 24px 0 0;
    padding-left: 18px;
    color: #3f3f46;
}

    .eb-infoList li {
        margin-bottom: 14px;
        line-height: 1.8;
    }

.eb-statsGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.eb-statBox {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 12px rgba(24,24,27,0.04);
}

.eb-statBox-wide {
    grid-column: span 2;
}

.eb-statValue {
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.eb-statText {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--eb-muted);
}

.eb-statBoxTitle {
    font-size: 18px;
    font-weight: 600;
}

.eb-linksList {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--eb-muted);
    word-break: break-all;
}

/* FOOTER */

.eb-footer {
    border-top: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.6);
}

.eb-footerInner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--eb-muted);
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
    .eb-menu {
        gap: 20px;
    }

    .eb-whatsapp {
        display: none;
    }

    .eb-trustGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eb-heroGrid,
    .eb-infoGrid {
        grid-template-columns: 1fr;
    }

    .eb-offersGrid,
    .eb-treatmentGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    /*.eb-menu {
        display: none;
    }*/

    .eb-menu {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        padding: 20px;
        border-top: 1px solid #ddd;
    }

    .eb-menu.active {
        display: flex;
    }




    .eb-btn-whatsapp {
        display: none;
    }

    .eb-hero {
        padding-top: 118px;
    }

    .eb-heroVisual {
        grid-template-columns: 1fr;
    }

    .eb-heroCard-image {
        grid-row: auto;
    }

    .eb-promoStrip,
    .eb-footerInner,
    .eb-sectionHead {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .eb-container {
        width: min(100% - 28px, 1280px);
    }

    .eb-nav {
        min-height: 74px;
    }

    .eb-brandTitle {
        font-size: 16px;
    }

    .eb-brandSub {
        font-size: 10px;
    }

    .eb-navActions .eb-btn {
        padding: 11px 16px;
        font-size: 13px;
    }

    .eb-heroText {
        font-size: 16px;
    }

    .eb-trustGrid,
    .eb-offersGrid,
    .eb-treatmentGrid,
    .eb-statsGrid {
        grid-template-columns: 1fr;
    }

    .eb-statBox-wide {
        grid-column: auto;
    }

    .eb-offerTop {
        flex-direction: column;
    }

    .eb-sliderArrows {
        display: none;
    }

    .eb-infoCard,
    .eb-statsCard,
    .eb-offerCard,
    .eb-promoStrip,
    .eb-heroCard-device,
    .eb-heroCard-offer {
        padding: 22px;
    }

    .eb-treatmentImageWrap {
        height: 280px;
    }
}
