:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(26, 26, 26, 0.8);
    --bg-card-hover: rgba(40, 40, 40, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-gold: #d4af37;
    --accent-purple: #9b59b6;
    --accent-blue: #3498db;
    --accent-pink: #e91e63;
    --accent-orange: #ff9800;
    --gradient-magic: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        url('capa.webp'),
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-size: cover, auto, auto, auto;
    background-position: center, 20% 50%, 80% 80%, 40% 20%;
    background-repeat: no-repeat;
    filter: blur(2px);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    z-index: 100;
    /* backdrop-filter: blur(10px); */
    /* background: rgba(10, 10, 10, 0.5); */
}

.menu-btn, .share-btn, .music-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-btn:hover, .share-btn:hover, .music-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.music-btn i {
    color: var(--accent-gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.music-btn:hover i {
    color: #f4d03f;
    transform: scale(1.1);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.share-btn svg {
    stroke: var(--text-primary);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-glow);
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.logo-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: visible;
}

.logo-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    border-radius: 50%;
}

.logo-vq {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.restaurant-name {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.location svg {
    fill: var(--accent-gold);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.link-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.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover .link-icon {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.link-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: var(--shadow-card), 0 0 20px rgba(212, 175, 55, 0.4);
}

.link-card:active {
    transform: translateY(-2px);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.link-icon svg {
    stroke: var(--accent-gold);
    fill: var(--accent-gold);
    z-index: 1;
    width: 24px;
    height: 24px;
}

.link-icon i {
    color: var(--accent-gold);
    font-size: 22px;
    z-index: 1;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon i {
    transform: scale(1.1);
    color: #f4d03f;
}


.reserva-niteroi .link-icon,
.reserva-cabo-frio .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.reserva-niteroi .link-icon svg,
.reserva-cabo-frio .link-icon svg {
    stroke: var(--accent-gold);
    fill: var(--accent-gold);
}

.franqueado .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.franqueado .link-icon svg {
    fill: var(--accent-gold);
    stroke: var(--accent-gold);
}

.pedido .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    gap: 0.25rem;
}

.mini-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-gold);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 2;
}

.pedido .link-icon svg {
    stroke: var(--accent-gold);
    fill: var(--accent-gold);
}

.cardapio .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.cardapio .link-icon svg {
    stroke: var(--accent-gold);
    fill: var(--accent-gold);
}

.fotos .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.fotos .link-icon svg {
    stroke: var(--accent-gold);
    fill: var(--accent-gold);
}

.localizacao .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.localizacao .link-icon svg {
    fill: var(--accent-gold);
    stroke: var(--accent-gold);
}

.fila .link-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    gap: 0.25rem;
}

.stg-logo {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 2;
}

.fila .link-icon svg {
    fill: var(--accent-gold);
    stroke: var(--accent-gold);
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.link-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.link-arrow {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.link-arrow svg {
    stroke: var(--text-primary);
}

.social-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-4px) scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.social-link svg {
    fill: currentColor;
}

.social-link i {
    font-size: 20px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-link:hover i {
    color: #f4d03f;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animation="delay-1"] {
    animation-delay: 0.1s;
}

[data-animation="delay-2"] {
    animation-delay: 0.2s;
}

[data-animation="delay-3"] {
    animation-delay: 0.3s;
}

[data-animation="delay-4"] {
    animation-delay: 0.4s;
}

[data-animation="delay-5"] {
    animation-delay: 0.5s;
}

[data-animation="delay-6"] {
    animation-delay: 0.6s;
}

[data-animation="delay-7"] {
    animation-delay: 0.7s;
}

[data-animation="delay-8"] {
    animation-delay: 0.8s;
}

[data-animation="delay-9"] {
    animation-delay: 0.9s;
}

[data-animation="delay-10"] {
    animation-delay: 1s;
}

@media (max-width: 480px) {
    .container {
        padding: 5rem 1rem 2rem;
    }

    .restaurant-name {
        font-size: 2rem;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-inner {
        width: 85px;
        height: 85px;
    }

    .logo-vq {
        font-size: 1.5rem;
    }

    .link-card {
        padding: 1rem 1.25rem;
    }

    .link-title {
        font-size: 0.95rem;
    }

    .link-subtitle {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




