:root {
    --violet-950: #171047;
    --violet-850: #242071;
    --violet-700: #4d36b4;
    --violet-600: #6046cf;
    --blue-500: #168bd6;
    --cyan-400: #20c5e8;
    --ink: #242231;
    --muted: #696676;
    --line: #ebe8f4;
    --soft: #f8f6fc;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(31, 24, 78, .12);
    --shadow-soft: 0 12px 30px rgba(31, 24, 78, .08);
    --radius: 8px;
    --header-height: 82px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open,
body.lightbox-open,
body.modal-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(32, 197, 232, .85);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    transform: translateY(-140%);
    background: var(--violet-950);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(860px, calc(100% - 40px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(235, 232, 244, .75);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 35px rgba(31, 24, 78, .09);
}

.nav-wrap {
    width: min(1240px, calc(100% - 34px));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    transition: min-height .25s ease;
}

.site-header.is-scrolled .nav-wrap {
    min-height: 68px;
}

.brand-link {
    flex: 0 0 auto;
}

.brand-link img {
    width: clamp(172px, 18vw, 246px);
    aspect-ratio: 3 / 1;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--violet-950);
    font-size: 14px;
    font-weight: 700;
}

.nav-menu a:not(.btn) {
    position: relative;
    padding: 8px 0;
}

.nav-menu a:not(.btn)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--violet-700), var(--cyan-400));
    transition: transform .2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: var(--violet-850);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--violet-700), var(--blue-500));
    box-shadow: 0 14px 28px rgba(77, 54, 180, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(77, 54, 180, .28);
}

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

.btn-ghost {
    color: var(--violet-850);
    background: var(--white);
    border: 1px solid rgba(77, 54, 180, .2);
    box-shadow: none;
}

.btn-ghost:hover {
    background: #fbfbff;
}

.btn-wide {
    width: 100%;
}

.section,
.section-band {
    position: relative;
    padding: 92px 0;
}

.section-soft {
    background: linear-gradient(180deg, #fbfaff 0%, #f7fbfd 100%);
}

.section-heading {
    max-width: 690px;
    margin: 0 auto 42px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--blue-500);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--violet-950);
    line-height: 1.08;
}

h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
}

h2 {
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 48px);
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

p {
    color: var(--muted);
}

.hero {
    min-height: 100vh;
    padding-top: 132px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 92% 12%, rgba(32, 197, 232, .12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfaff 68%, #ffffff 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77, 54, 180, .28), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .85fr);
    align-items: center;
    gap: 54px;
}

.hero-copy > p {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-row span,
.about-highlights span,
.contact-mini a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .76);
    color: var(--violet-850);
    font-size: 14px;
    font-weight: 800;
}

.trust-row i,
.about-highlights i,
.contact-mini i {
    color: var(--blue-500);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 5% 4% 2%;
    border: 1px solid rgba(77, 54, 180, .18);
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(247,251,253,.72));
    box-shadow: var(--shadow);
}

.hero-visual img {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 32 / 38;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-card,
.package-card,
.benefit-card,
.review-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover,
.package-card:hover,
.benefit-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 54, 180, .2);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 100%;
    aspect-ratio: 19 / 13;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.card-body {
    padding: 20px;
}

.card-body > i,
.benefit-card > i,
.contact-card > i {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--violet-700), var(--cyan-400));
    font-size: 20px;
}

.card-body p,
.benefit-card p,
.review-card p {
    min-height: 78px;
    margin-bottom: 14px;
    font-size: 15px;
}

.card-body strong,
.package-card strong {
    display: block;
    margin-bottom: 16px;
    color: var(--violet-850);
}

.text-btn {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(77, 54, 180, .18);
    border-radius: var(--radius);
    color: var(--violet-850);
    background: #fbfbff;
    font-weight: 800;
    transition: background .2s ease, color .2s ease;
}

.text-btn:hover {
    color: var(--white);
    background: var(--violet-700);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.package-card {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.package-card.is-popular {
    border-color: rgba(32, 197, 232, .55);
    box-shadow: 0 20px 48px rgba(22, 139, 214, .14);
}

.popular-label {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--violet-700), var(--blue-500));
    font-size: 12px;
    font-weight: 900;
}

.package-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.package-card li {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
}

.package-card li i {
    color: var(--blue-500);
}

.package-card .btn {
    margin-top: auto;
}

.benefit-card {
    padding: 24px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--violet-700), var(--cyan-400));
}

.timeline-step {
    position: relative;
    padding: 74px 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.timeline-step span {
    position: absolute;
    top: 16px;
    left: 50%;
    width: 46px;
    height: 46px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--violet-700);
    font-weight: 900;
}

.about-grid,
.appointment-grid {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    align-items: center;
    gap: 54px;
}

.about-image img {
    width: min(100%, 480px);
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-copy p {
    font-size: 18px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 22px 0 28px;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.gallery-tabs button {
    min-height: 40px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--violet-850);
    background: var(--white);
    font-weight: 800;
}

.gallery-tabs button.active {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--violet-700), var(--blue-500));
}

.gallery-grid,
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: var(--shadow-soft);
}

.gallery-item[hidden] {
    display: none;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
    filter: saturate(1.06);
}

.review-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.review-card {
    padding: 26px;
}

.stars {
    margin-bottom: 14px;
    color: #f5b93f;
    font-size: 17px;
    letter-spacing: 2px;
}

.review-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.appointment-section {
    background:
        radial-gradient(circle at 8% 14%, rgba(32, 197, 232, .1), transparent 28%),
        linear-gradient(135deg, #ffffff, #faf9ff 74%);
}

.appointment-copy {
    align-self: start;
    position: sticky;
    top: 116px;
}

.contact-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-form {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--violet-950);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #ded9eb;
    border-radius: var(--radius);
    padding: 11px 13px;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(32, 197, 232, .14);
    outline: 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 24px;
    margin: 0 0 12px;
    color: #b3261e;
    font-size: 14px;
    font-weight: 800;
}

.form-status.success {
    color: #12784a;
}

.insta-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

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

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

summary {
    position: relative;
    padding: 18px 52px 18px 20px;
    color: var(--violet-950);
    font-weight: 900;
    list-style: none;
    cursor: pointer;
}

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

summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue-500);
    font-size: 24px;
}

details[open] summary::after {
    content: "-";
}

details p {
    margin: 0;
    padding: 0 20px 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    padding: 22px;
}

.contact-card span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.contact-card strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--violet-950);
}

.map-placeholder {
    min-height: 220px;
    margin-top: 22px;
    display: grid;
    place-items: center;
    gap: 8px;
    border: 1px dashed rgba(77, 54, 180, .32);
    border-radius: var(--radius);
    color: var(--violet-850);
    background: rgba(255, 255, 255, .68);
    font-weight: 900;
}

.map-placeholder i {
    font-size: 30px;
    color: var(--blue-500);
}

.site-footer {
    padding: 58px 0 110px;
    color: rgba(255,255,255,.82);
    background: linear-gradient(145deg, var(--violet-950), #282177 72%, #133f7a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 36px;
}

.site-footer img {
    width: 118px;
    border-radius: 50%;
    background: var(--white);
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
}

.site-footer h2 {
    margin: 16px 0 4px;
    font-size: 28px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.site-footer a:hover,
.footer-bottom button:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    width: min(var(--container), calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.footer-bottom button {
    border: 0;
    color: rgba(255,255,255,.82);
    background: transparent;
    padding: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 95;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .32);
    font-size: 27px;
    animation: pulse 2.6s infinite;
}

.mobile-action-bar {
    display: none;
}

.lightbox,
.modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(11, 8, 34, .84);
}

.lightbox.is-open,
.modal.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(880px, 82vw);
    max-height: 84vh;
    border-radius: var(--radius);
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.lightbox button,
.modal-close {
    position: absolute;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,.12);
}

.lightbox-close,
.modal-close {
    top: 22px;
    right: 22px;
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.modal-panel {
    position: relative;
    width: min(640px, 100%);
    padding: 34px;
    border-radius: var(--radius);
    background: var(--white);
}

.modal-panel h2 {
    margin-right: 48px;
}

.modal-panel .modal-close {
    color: var(--violet-850);
    border-color: var(--line);
    background: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .32), 0 16px 36px rgba(37, 211, 102, .32); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 16px 36px rgba(37, 211, 102, .32); }
}

@media (max-width: 1120px) {
    .service-grid,
    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 72px;
    }

    body {
        padding-bottom: 78px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: 14px;
        left: 14px;
        display: grid;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .98);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease;
    }

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

    .nav-menu a:not(.btn) {
        padding: 12px 4px;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    .hero-grid,
    .about-grid,
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-visual img {
        width: min(100%, 430px);
    }

    .appointment-copy {
        position: static;
    }

    .timeline,
    .review-track,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .mobile-action-bar {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
        border: 1px solid rgba(77, 54, 180, .18);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 16px 40px rgba(31, 24, 78, .18);
        backdrop-filter: blur(18px);
    }

    .mobile-action-bar a {
        min-height: 56px;
        display: grid;
        place-items: center;
        gap: 1px;
        color: var(--violet-850);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .mobile-action-bar i {
        color: var(--blue-500);
        font-size: 18px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 86px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 700px) {
    .container,
    .narrow {
        width: min(100% - 28px, var(--container));
    }

    .section,
    .section-band {
        padding: 68px 0;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-copy > p {
        font-size: 17px;
    }

    .hero-actions,
    .trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-grid,
    .benefit-grid,
    .package-grid,
    .gallery-grid,
    .insta-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form {
        padding: 20px;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox img {
        max-width: 92vw;
    }

    .lightbox-prev,
    .lightbox-next {
        bottom: 22px;
        top: auto;
    }
}

@media (max-width: 380px) {
    .brand-link img {
        width: 158px;
    }

    h1 {
        font-size: 38px;
    }

    .btn {
        padding-inline: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
