/* ========================================
   RESTORAN TEMPLATE STYLE - COZINHA LIMA
   ======================================== */

/* Importando a fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* Estilos temporários para debug */
body {
    background-color: #f8f9fa;
}

.navbar {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos do Logo */
.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand h1 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #FEA116; /* Laranja */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(254, 161, 22, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.restaurant-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #222;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.restaurant-subname {
    font-size: 14px;
    font-weight: 600;
    color: #8B0000; /* Vinho escuro */
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.logo:hover {
    transform: scale(1.02);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FEA116;
}

.btn-book {
    background: #FEA116;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #e08c00;
    transform: translateY(-2px);
    height: 28px;
    font-size: 13px;
}

.navbar-brand .restaurant-name {
    font-size: 1.8rem;
}

.navbar-brand .restaurant-subname {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .wine-glass {
        font-size: 20px;
    }
    
    .utensils {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .restaurant-name {
        font-size: 1.5rem;
    }
    
    .restaurant-subname {
        font-size: 1.2rem;
    }
}


:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #666;
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary) !important;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.me-3 { margin-right: 1rem; }

.w-100 { width: 100%; }

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.g-4 {
    gap: 1.5rem;
}

/* Navbar */
.navbar {
    background: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    color: var(--primary);
    font-size: 36px;
    margin: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.btn-book {
    background: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-book:hover {
    background: #ff9800;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 43, 0.9), rgba(15, 23, 43, 0.9)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--primary);
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    margin-bottom: 20px;
}

.hero-title {
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

/* Service Section */
.service-section {
    padding: 80px 0;
    background: var(--light);
}

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

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    transition: 0.3s;
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-item i {
    color: var(--primary);
}

.service-item h5 {
    margin: 20px 0 10px;
    font-size: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-1,
.about-img-2 {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
}

.about-img-1 {
    width: 60%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 10px solid #ffffff;
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-subtitle {
    color: var(--primary);
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-stat {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: var(--light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: 2px solid var(--primary);
    padding: 20px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.tab-btn i {
    font-size: 30px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.tab-btn div {
    color: var(--dark);
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
}

.tab-btn:hover i,
.tab-btn:hover div,
.tab-btn.active i,
.tab-btn.active div {
    color: #ffffff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.menu-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.menu-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-content {
    padding: 20px;
    flex: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-header h5 {
    margin: 0;
    font-size: 18px;
}

.menu-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: #ff9800;
    transform: translate(-50%, -50%) scale(1.1);
}

.booking-form {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.team-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.3s;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.team-item:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.team-social a:hover {
    background: #ff9800;
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h5 {
    margin-bottom: 5px;
}

.team-content small {
    color: #666;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    transition: 0.3s;
}

.testimonial-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    font-size: 16px;
}

.testimonial-author small {
    color: #666;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 15px;
}

.footer-col h6 {
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.footer-social a:hover {
    background: #ff9800;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #ff9800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

/* Back to Top Button */
.btn-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
}

.btn-back-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-top:hover {
    background: #ff9800;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--primary);
    font-size: 48px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

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

    .menu-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-title {
        font-size: 40px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar-nav.active {
        right: 0;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .btn-book {
        width: 100%;
        text-align: center;
    }

    .nav-user {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--primary);
        font-size: 32px;
        cursor: pointer;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* Page Header for Menu */
.page-header-menu {
    background: linear-gradient(rgba(15, 23, 43, 0.9), rgba(15, 23, 43, 0.9)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    padding: 100px 20px;
    text-align: center;
}

.text-white {
    color: #ffffff !important;
}


/* Admin Dashboard Styles */
.admin-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.stat-icon {
    color: var(--primary);
    font-size: 48px;
}

.stat-icon i {
    color: var(--primary);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 5px 0;
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.admin-sections {
    display: grid;
    gap: 30px;
}

.admin-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.admin-section h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--light);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.admin-table tbody tr:hover {
    background: var(--light);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* Login Page Styles */
.login-section {
    padding: 80px 20px;
    background: var(--light);
}

.login-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.login-intro {
    text-align: center;
    margin-bottom: 50px;
}

.login-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.login-intro p {
    font-size: 18px;
    color: #666;
}

.login-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.login-option-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.login-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 161, 22, 0.1), transparent);
    transition: 0.5s;
    pointer-events: none;
    z-index: 0;
}

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

.login-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(254, 161, 22, 0.3);
    border: 2px solid var(--primary);
}

.login-icon {
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.login-option-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.login-option-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.login-arrow {
    color: var(--primary);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.login-option-card:hover .login-arrow {
    opacity: 1;
    transform: translateX(0);
}

.admin-login-form {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.admin-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(254, 161, 22, 0.1);
}

.alert-error {
    background: #fee;
    color: #c33;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #c33;
    font-size: 14px;
}

.alert-error i {
    margin-right: 8px;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.form-actions button {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-actions .btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.form-actions .btn-primary:hover {
    background: #e59010;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(254, 161, 22, 0.4);
}

.form-actions .btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.form-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .login-options-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-form-card {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Menu Tabs/Filters */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.tab-btn i {
    font-size: 20px;
    color: var(--primary);
}

.tab-btn:hover {
    background: var(--light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(254, 161, 22, 0.2);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.tab-btn.active i {
    color: #ffffff;
}

/* Menu Badge */
.menu-badge {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* Menu Item Transition */
.menu-item {
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .menu-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .tab-btn i {
        font-size: 16px;
    }
}

/* Alert Success */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
    font-size: 14px;
}

.alert-success i {
    margin-right: 8px;
}

/* Login Options Grid -/* Login Options */
.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.login-option-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.login-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(254, 161, 22, 0.2);
    border-color: #FEA116;
}

.login-option-card .login-icon {
    width: 80px;
    height: 80px;
    background: #FEA116;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(254, 161, 22, 0.3);
}

.login-option-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-option-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.login-option-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.login-option-btn:hover {
    background: #f1f1f1;
    transform: translateX(5px);
}

.login-option-btn i:first-child {
    margin-right: 15px;
    color: #FEA116;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.login-option-btn span {
    flex: 1;
    text-align: left;
    font-weight: 500;
    color: #333;
}

.login-option-btn .fa-arrow-right {
    color: #999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.login-option-btn:hover .fa-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

.login-option-btn.register-btn {
    background: #FEA116;
    border-color: #FEA116;
}

.login-option-btn.register-btn span {
    color: white;
}

.login-option-btn.register-btn i {
    color: white !important;
}

.login-option-btn.register-btn .fa-arrow-right {
    color: white !important;
}

.login-option-btn.register-btn:hover {
    background: #e5941a;
    border-color: #e5941a;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider::before {
    margin-right: 15px;
}

.divider::after {
    margin-left: 15px;
}

.login-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .login-options-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .login-options-grid {
        grid-template-columns: 1fr !important;
    }
}

/* User name in navbar */
.nav-user {
    color: #ffffff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-user i {
    color: var(--primary);
}

/* ========================================
   RESERVATION PAGE STYLES
======================================== */

.reservation-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,165,0,0.05)"/></svg>');
    opacity: 0.3;
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Info Cards */
.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid rgba(255,255,255,0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
    transition: 0.6s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255,140,0,0.3);
    border-color: rgba(255,140,0,0.5);
}

.info-card:hover::before {
    top: -100%;
    right: -100%;
}

.info-icon {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255,140,0,0.4);
    position: relative;
    z-index: 1;
}

.info-icon i {
    color: #ffffff !important;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-content p {
    margin: 10px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.info-content strong {
    color: #ff8c00;
    font-weight: 700;
    font-size: 16px;
}

.info-content i {
    color: #ff8c00;
    margin-right: 10px;
    font-size: 16px;
}

/* Form Container */
.reservation-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.reservation-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,140,0,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-header-reservation {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.form-header-reservation i {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255,140,0,0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-header-reservation i.fa-calendar-check {
    color: #ffffff !important;
}

.form-header-reservation h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.form-header-reservation p {
    color: #666;
    font-size: 17px;
    font-weight: 500;
}

/* Alert Success */
.alert-success-reservation {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
    color: #155724;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #28a745;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(40,167,69,0.2);
    position: relative;
    z-index: 1;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success-reservation i {
    font-size: 24px;
}

/* Form Styles */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-reservation {
    display: flex;
    flex-direction: column;
}

.form-group-reservation label {
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-reservation label i {
    color: #ff8c00;
    font-size: 18px;
}

.form-group-reservation input,
.form-group-reservation select {
    padding: 18px 22px;
    border: 2px solid #e0e6ff;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group-reservation input:hover,
.form-group-reservation select:hover {
    border-color: #ff8c00;
}

.form-group-reservation input:focus,
.form-group-reservation select:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 4px rgba(255,140,0,0.15);
    transform: translateY(-2px);
}

.form-group-reservation input::placeholder {
    color: #aaa;
}

/* Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-height: 350px;
    overflow-y: auto;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    border-radius: 15px;
    border: 2px solid #e0e6ff;
}

.dishes-grid::-webkit-scrollbar {
    width: 8px;
}

.dishes-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dishes-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    border-radius: 10px;
}

.dish-checkbox {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    transition: all 0.3s ease;
    border: 2px solid #e0e6ff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.dish-checkbox:hover {
    border-color: #ff8c00;
    box-shadow: 0 5px 20px rgba(255,140,0,0.25);
    transform: translateY(-3px);
}

.dish-checkbox:hover::before {
    left: 100%;
}

.dish-checkbox input[type="checkbox"] {
    display: none;
}

.dish-checkbox label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.dish-checkbox input[type="checkbox"]:checked + label {
    color: #ff8c00;
}

.dish-checkbox input[type="checkbox"]:checked + label::before {
    content: '✓ ';
    font-weight: bold;
    color: #ff8c00;
    font-size: 18px;
}

.dish-checkbox input[type="checkbox"]:checked ~ .dish-checkbox {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-color: #ff8c00;
}

.dish-name {
    flex: 1;
    color: #333;
}

.dish-price {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 16px;
}

/* Submit Button */
.btn-submit-reservation {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
    color: #ffffff;
    padding: 22px 50px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(255,140,0,0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6347 0%, #ff8c00 100%);
    transition: 0.5s;
    z-index: -1;
}

.btn-submit-reservation:hover::before {
    left: 0;
}

.btn-submit-reservation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,140,0,0.6);
}

.btn-submit-reservation:active {
    transform: translateY(-2px);
}

/* Error Message */
.error-message {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    color: #c33;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 12px;
    font-size: 15px;
    border-left: 5px solid #c33;
    box-shadow: 0 5px 15px rgba(204,51,51,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message i {
font-size: 18px;
}

/* Logo styles */
.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-monogram {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monogram-c {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #FEA116;
    left: 0;
    top: 0;
    line-height: 1;
    z-index: 1;
}

.monogram-l {
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #000000;
    left: 15px;
    top: 0;
    line-height: 1;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .cozinha {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text .lima {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FEA116;
    line-height: 1;
}

/* Hover effects */
.navbar-brand:hover .monogram-c {
    text-shadow: 0 0 8px rgba(254, 161, 22, 0.6);
}

.navbar-brand:hover .monogram-l {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover .logo-text .lima {
    text-shadow: 0 0 5px rgba(254, 161, 22, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .monogram-c,
    .monogram-l {
        font-size: 2rem;
    }
    
    .logo-text .cozinha {
        font-size: 0.85rem;
    }
    
    .logo-text .lima {
        font-size: 1rem;
    }
    
    .logo-monogram {
        width: 40px;
        height: 40px;
    }
    
    .monogram-l {
        left: 12px;
    }
}

/* Animação da chama */
.flame {
position: relative;
width: 30px;
height: 30px;
margin: 0 auto;
}

.flame-main {
position: absolute;
width: 30px;
height: 30px;
background: #FEA116;
border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
transform: rotate(45deg);
animation: flame-flicker 3s ease-in-out infinite;
box-shadow: 0 0 10px #FEA116, 0 0 20px #FEA116, 0 0 30px #FEA116;
}

.flame-main-2 {
position: absolute;
width: 20px;
height: 20px;
top: 5px;
left: 5px;
background: #FFD700;
border-radius: 50%;
animation: flame-flicker 2s ease-in-out infinite;
opacity: 0.8;
}

.flame-sec {
position: absolute;
width: 15px;
height: 15px;
top: 8px;
left: 8px;
background: #fff;
border-radius: 50%;
animation: flame-flicker 2.5s ease-in-out infinite alternate;
opacity: 0.6;
}

@keyframes flame-flicker {
0%, 100% { transform: scale(1); opacity: 0.9; }
50% { transform: scale(0.95); opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .reservation-info {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .info-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .reservation-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-info {
        flex-direction: column;
    }
}
