:root {
    --bg: #0b0b0f;
    --dark: #050507;
    --neon: #ff2fd6;
    --cyan: #18f7ff;
    --text: #eaeaf0;
    --muted: #9aa0a6;
    --gold: #FFD700;
    --purple: #9d4edd;
}

* {
    box-sizing: border-box;
}

a {
    cursor: pointer !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 600;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav.scrolled {
    padding: 12px 6vw;
    background: rgba(5, 5, 7, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--neon), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 47, 214, 0.3);
}

.logo-type1 {
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%);
    width: 100px;
    border-radius: 200px;
    padding: 20px;
}

.logo-type1 svg path {
    fill: white;
}

.nav>ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav a,
.nav .nav-a {
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav .nav-a:hover {
    color: var(--cyan);
}

/* RESET BÁSICO */
#menu-cr,
#menu-cr ul {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* CONTENEDOR PRINCIPAL */
#menu-cr {
    display: flex;
    gap: 30px;
}

/* ITEMS PRINCIPALES */
#menu-cr>li {
    position: relative;
}

/* SUBMENÚ */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    gap: 0;
    visibility: hidden;
    transform: translate(-25%, 100%);
    transition: all 0.3s ease;
    z-index: 1000;
}

.submenu ul {
    gap: 0 !important;
}

.submenu a {
    padding: 20px 25px;
    color: var(--text);
    white-space: nowrap;
    width: 100%;
    display: block;
}

.submenu li {
    width: 100%;
}

/* HOVER SUBMENÚ */
#menu-cr li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-25%, 0);
}

/* HOVER SUBMENU LINKS */
.submenu li:hover {
    background-color: rgba(24, 247, 255, 0.1);
}


.burger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.burger:hover {
    color: var(--cyan);
}

/* Hero Section */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), var(--dark));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1200px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon), var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 47, 214, 0.5);
    opacity: 0;
    transform: translateY(50px);
}

.hero .subtitle {
    letter-spacing: 0.3em;
    color: var(--cyan);
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    display: block;
    text-shadow: 0 0 10px rgba(24, 247, 255, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text);
    opacity: 0;
    transform: translateY(30px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    color: var(--cyan);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-container {
    margin-top: 100vh;
    position: relative;
    min-height: auto;
}

.page {
    background: var(--bg);
    z-index: 10;
    position: sticky;
    bottom: 0;
}

.page-2 {
    position: relative;
    background: var(--bg);
    z-index: 11;
}

/* Sections */
.section {
    padding: 100px 8vw;
    position: relative;
    overflow: hidden;
}

.section.dark {
    background: var(--dark);
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100vw;
}

.image-box {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    height: max-content;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.3;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
}

.image-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-slide-2 {
    position: absolute;
    top: 0;
    left: 0;
}

.image-slide.active {
    opacity: 1;
}

.image-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilos para móvil */
@media (max-width: 768px) {
    .images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .image-box {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .image-box {
        height: 200px;
    }
}

/* Story Section */
.story {
    text-align: center;
    padding-bottom: 200px;
}

.lead {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text);
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-item img {
    width: 100%;
    height: auto;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(50px);
    filter: brightness(0.7);
    display: block;
}

/* img from transparent to black gradient top to bottom*/
.story-item .img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}


.story-item-preset {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.story-item-preset:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 10px 30px rgba(24, 247, 255, 0.1);
}

.story-item-preset h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    color: var(--cyan);
}


.sushitoker {
    position: relative;
    z-index: 1;
    padding-top: 350px;
    text-align: center;
    color: var(--dark) !important;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(255, 255, 255, 1) 30%,
            rgba(255, 255, 255, 1) 100%);
}

.sushitoker::before {
    content: "";
    position: absolute;
    inset: 0;
    bottom: 0;
    background-image: url('../img/banner.jpeg');
    background-size: contain;
    width: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: -1;
}


/* Sushitoker - estados iniciales para GSAP */
#sushitoker h2 {
    opacity: 0;
    transform: translateY(40px);
}

#sushitoker .text-content p {
    opacity: 0;
    transform: translateY(30px);
}

#sushitoker img {
    opacity: 0;
    transform: translateX(60px);
}

.sushitoker .join-button a {
    margin-top: 40px;

    /* Basic button styles */
    padding: 15px 30px;
    border: 1px solid rgba(0, 0, 0, 1);
    transition: all 0.4s ease;
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.sushitoker .join-button a:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    background-color: rgba(24, 247, 255, 0.1);
    box-shadow: 0 10px 20px rgba(24, 247, 255, 0.1);
}


.sushitoker .text-content {
    max-width: 300px;
}

.philosophy {
    height: 100vh;
    position: fixed;
    width: 100vw;
    top: 100vh;
    background-color: #000 !important;
}

.philosophy h1 {
    position: absolute;
    top: 30%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 3;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(90deg, var(--neon), var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 47, 214, 0.5);
    filter: blur(6px);
}

.philosophy .subtitle {
    position: absolute;
    top: 60%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text);
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0;
    filter: blur(6px);
}

.philosophy video {
    position: absolute;
    inset: 0;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    object-fit: cover;
    display: block;
    z-index: 1;
    will-change: contents;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.philosophy .manifesto {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.philosophy .manifesto h2 {
    margin-bottom: 30px;
}

.philosophy .manifesto p {
    font-size: 1.3rem;
    color: #fff;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
}

.philosophy .video-dim {
    filter: brightness(0.3) blur(4px);
    transition: filter 1.2s ease;
}


.text-show {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100vw;
    height: 100vh;
}

.philosophy .text-show>h2 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}



#restaurants {
    min-height: 100vh;
    padding-bottom: 200px;
}

/* Restaurants Section - MODIFICADO */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.restaurant-card {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.restaurant-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.restaurant-card:hover:before {
    left: 100%;
}

.restaurant-card:hover {
    transform: translateY(-15px);
    border-color: var(--cyan);
    box-shadow: 0 15px 30px rgba(24, 247, 255, 0.2);
}

.restaurant-card.disabled {
    opacity: 0.5 !important;
    filter: grayscale(80%);
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.restaurant-card.disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.restaurant-card.disabled:before {
    display: none;
}

.restaurant-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-card.disabled .restaurant-image {
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-image:hover .restaurant-buttons {
    opacity: 1;
}

.restaurant-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.restaurant-image:hover:after {
    opacity: 1;
}

.restaurant-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.restaurant-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--cyan);
}

.restaurant-card .location {
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.restaurant-card.disabled .location {
    color: var(--neon);
    font-weight: 700;
}

.restaurant-card .address {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
}

.restaurant-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 2;
}

.restaurant-card .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.restaurant-card .feature {
    background: rgba(24, 247, 255, 0.1);
    color: var(--cyan);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-card.disabled .feature {
    background: rgba(255, 47, 214, 0.1);
    color: var(--neon);
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.menu-item p {
    height: 80px;
}

.menu-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--cyan);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.img {
    height: 600px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
}

.img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.img:hover:after {
    opacity: 1;
}

.img1 {
    background-image: url("../img/gallery/1.jpg");
}

.img2 {
    background-image: url("../img/gallery/2.jpeg");
}

.img3 {
    background-image: url("../img/gallery/3.jpg");
}

.img4 {
    background-image: url("../img/gallery/4.jpeg");
}

.img5 {
    background-image: url("../img/gallery/5.jpg");
}

.img6 {
    background-image: url("../img/gallery/6.jpeg");
}


/* Contact Section */
/* ===== CONTACT CLEAN ===== */

.contact-lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.contact-block {
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-block.highlight {
    border-color: var(--cyan);
    background: linear-gradient(
        180deg,
        rgba(24,247,255,0.08),
        rgba(255,255,255,0.02)
    );
}

.contact-block h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--cyan);
    margin-bottom: 25px;
}

/* Contact list */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--cyan);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-list a {
    color: var(--text);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--cyan);
}

/* Hours */
.hours-clean {
    list-style: none;
    padding: 0;
}

.hours-clean li {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.hours-clean span {
    color: var(--muted);
    font-size: 0.85rem;
}

.hours-clean strong {
    color: var(--cyan);
    font-weight: 600;
}

/* CTA */
.contact-cta {
    display: inline-block;
    margin: 30px 0;
    padding: 14px 32px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 10px 30px rgba(24,247,255,0.3);
}

/* Newsletter */
.newsletter-clean {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-clean h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--cyan);
    margin-bottom: 10px;
}

.newsletter-clean p {
    color: var(--muted);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
}

.newsletter-form button {
    padding: 0 30px;
    border: none;
    color: #000;
    font-weight: 700;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--cyan);
    box-shadow: 0 10px 30px rgba(24,247,255,0.3);
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ===== CONTACT GSAP INITIAL STATES ===== */

#contact h2,
.contact-lead {
    opacity: 0;
    transform: translateY(40px);
}

.contact-block {
    opacity: 0;
    transform: translateY(60px);
}

.newsletter-clean {
    opacity: 0;
    transform: translateY(40px);
}

/* Performance */
.contact-block,
.contact-cta,
.newsletter-clean {
    will-change: transform, opacity;
}



/* Footer */
footer {
    padding: 60px 8vw 40px;
    text-align: center;
    color: var(--muted);
    background: #000;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--cyan);
    margin-bottom: 20px;
    font-size: 1.2rem;
}


.footer-locations {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.footer-location h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    color: var(--text);
}

.footer-location span {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.9;
}

.footer-location p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-locations {
        text-align: center;
    }
}


.end {
    height: 500px;
    background: linear-gradient(var(--dark), var(--cyan));
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 5px 15px rgba(24, 247, 255, 0.3);
}

.copyright {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.esfera {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    z-index: 999;
    border-radius: 50%;
    background-color: var(--purple);
    opacity: 0.4;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease-out;
    mix-blend-mode: screen;
}

/* Responsive para restaurantes */
@media (max-width: 768px) {
    .restaurant-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-buttons {
        opacity: 1;
        flex-direction: column;
        gap: 10px;
    }

    .restaurant-image:after {
        opacity: 0.7;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}