/**
 * Estilos Principais - VERSÃO COMPLETA PREMIUM
 * Hashi Yūgo Sushi Restaurante
 */

/* ====================================
   VARIÁVEIS CSS APRIMORADAS
   ==================================== */
:root {
    /* Cores */
    --primary: #C9A961;
    --primary-dark: #B39551;
    --primary-light: #D4B571;
    --primary-glow: rgba(201, 169, 97, 0.4);
    --secondary: #1a1a1a;
    --accent: #8B0000;
    --accent-glow: rgba(139, 0, 0, 0.3);
    --background: #0a0a0a;
    --background-light: #1a1a1a;
    --background-card: #141414;
    --text: #ffffff;
    --text-muted: #999999;
    --border: #333333;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Noto Sans JP', sans-serif;
    
    /* Tamanhos */
    --container-width: 1200px;
    --header-height: 80px;
    --header-top-height: 40px;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Sombras Aprimoradas */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --shadow-glow-accent: 0 0 30px var(--accent-glow);
    
    /* Transições */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   RESET E BASE APRIMORADO
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Efeito de partículas no fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ====================================
   CONTAINER
   ==================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ====================================
   HEADER PREMIUM
   ==================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}

.header-top {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8), rgba(20, 20, 20, 0.8));
    border-bottom: 1px solid var(--border);
    height: var(--header-top-height);
    backdrop-filter: blur(10px);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-size: 0.875rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact a {
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header-contact a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.header-contact a i {
    font-size: 1rem;
}

.header-contact .separator {
    color: var(--border);
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    color: var(--primary);
    transition: var(--transition);
}

.header-social a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.header-main {
    height: var(--header-height);
    background: transparent;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
    transition: var(--transition);
}

.logo:hover img {
    filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.5));
    transform: scale(1.05);
}

.main-nav .menu {
    display: flex;
    gap: 30px;
}

.main-nav .menu li a {
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.main-nav .menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-glow);
}

.main-nav .menu li a:hover::before,
.main-nav .menu li.active a::before {
    width: 100%;
}

.main-nav .menu li a:hover,
.main-nav .menu li.active a {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.btn-menu-mobile {
    display: none;
    color: var(--text);
    font-size: 1.5rem;
}

/* Body offset para header fixo */
body {
    padding-top: calc(var(--header-height) + var(--header-top-height));
}

/* ====================================
   HERO SECTION PREMIUM
   ==================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15), transparent 50%),
        linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.hero-content {
    text-align: center;
    color: var(--text);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-secondary);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px var(--primary-glow));
    }
    to {
        filter: drop-shadow(0 0 30px var(--primary-glow));
    }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ====================================
   BOTÕES PREMIUM
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.6), 0 0 40px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 50px var(--primary);
    color: var(--secondary);
    transform: translateY(-3px) scale(1.05);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

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

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn i {
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

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

/* ====================================
   SECTIONS PREMIUM
   ==================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary-glow);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background) 100%);
    position: relative;
}

.section-dark::before {
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
}

/* ====================================
   GRID SYSTEM
   ==================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-2 {
    width: 50%;
    padding: 0 15px;
}

.col-3 {
    width: 33.333%;
    padding: 0 15px;
}

.col-4 {
    width: 25%;
    padding: 0 15px;
}

/* ====================================
   CARDS PREMIUM
   ==================================== */
.card {
    background: var(--background-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.3);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
    opacity: 0;
    transition: var(--transition);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.15) rotate(2deg);
}

.card-body {
    padding: 25px;
    position: relative;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.card:hover .card-title {
    transform: translateX(5px);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.card-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(201, 169, 97, 0.03);
}

/* ====================================
   PRODUTO CARD PREMIUM
   ==================================== */
.produto-card {
    position: relative;
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

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

.produto-badge.destaque {
    background: linear-gradient(135deg, var(--accent), #a00000);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.produto-badge.novidade {
    background: linear-gradient(135deg, var(--success), #20a040);
}

.produto-categoria {
    margin-bottom: 10px;
}

.produto-categoria small {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.produto-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.produto-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--primary);
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition);
}

.produto-icon:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.2) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.produto-preco {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preco-atual {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preco-antigo {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ====================================
   CATEGORIAS NAV PREMIUM
   ==================================== */
.categorias-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.categoria-item {
    padding: 14px 28px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.categoria-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    border-radius: 50%;
}

.categoria-item:hover::before,
.categoria-item.active::before {
    width: 300px;
    height: 300px;
}

.categoria-item:hover,
.categoria-item.active {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5), 0 0 40px var(--primary-glow);
}

.categoria-item i {
    margin-right: 8px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.categoria-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ====================================
   FORMS PREMIUM
   ==================================== */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-label.required::after {
    content: ' *';
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2), 0 8px 30px rgba(0, 0, 0, 0.4);
    background: rgba(20, 20, 20, 0.95);
    transform: translateY(-2px);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    cursor: pointer;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.form-error {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--danger);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

/* ====================================
   SEARCH BOX PREMIUM
   ==================================== */
.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-box input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2), 0 8px 30px rgba(0, 0, 0, 0.4);
    background: rgba(20, 20, 20, 0.95);
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.search-box button:hover {
    transform: translateY(-50%) scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
}

/* ====================================
   ALERTS PREMIUM
   ==================================== */
.alert {
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid;
}

.alert i {
    font-size: 1.5rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(23, 162, 184, 0.15);
    border-color: var(--info);
    color: var(--info);
}

.alert-dismissible {
    padding-right: 50px;
    position: relative;
}

.btn-close-alert {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close-alert:hover {
    opacity: 1;
}

/* ====================================
   BADGES
   ==================================== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-primary {
    background: var(--primary);
    color: var(--secondary);
}

.badge-success {
    background: var(--success);
    color: white;
}

.badge-danger {
    background: var(--danger);
    color: white;
}

.badge-warning {
    background: var(--warning);
    color: var(--secondary);
}

.badge-info {
    background: var(--info);
    color: white;
}

/* ====================================
   PAGINATION PREMIUM
   ==================================== */
.pagination-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.2);
    color: var(--text);
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.page-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    border-radius: 50%;
    z-index: -1;
}

.page-link:hover::before,
.page-item.active .page-link::before {
    width: 150px;
    height: 150px;
}

.page-link:hover,
.page-item.active .page-link {
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 12px 25px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.pagination-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-simple .btn-prev,
.pagination-simple .btn-next {
    padding: 10px 20px;
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text);
    transition: var(--transition);
}

.pagination-simple .btn-prev:hover,
.pagination-simple .btn-next:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.pagination-simple .page-info {
    color: var(--text-muted);
}

/* ====================================
   BREADCRUMB
   ==================================== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--border);
}

/* ====================================
   FOOTER PREMIUM
   ==================================== */
.site-footer {
    background: linear-gradient(180deg, var(--background) 0%, var(--secondary) 100%);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), transparent) 1;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

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

.footer-col h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary-glow);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    border-radius: 50%;
    z-index: -1;
}

.footer-social a:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social a:hover {
    color: var(--secondary);
    transform: translateY(-5px) rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px var(--primary-glow);
    border-color: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
}

.footer-links a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: var(--transition);
    opacity: 0.5;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(5px);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-hours li:hover {
    padding-left: 10px;
    color: var(--primary);
    border-color: rgba(201, 169, 97, 0.3);
}

.footer-hours .day {
    font-weight: 600;
}

.footer-hours .time {
    color: var(--primary);
    font-weight: 500;
}

.footer-contact li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-contact li:hover {
    transform: translateX(10px);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 2px;
    transition: var(--transition);
}

.footer-contact li:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-content a {
    color: var(--primary);
}

.footer-bottom-content i.fa-heart {
    color: var(--accent);
    animation: heartbeat 1.5s infinite;
}

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

/* ====================================
   WHATSAPP BUTTON PREMIUM
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-text {
    display: none;
}

/* ====================================
   LOADING
   ==================================== */
.loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-glow);
}

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

/* ====================================
   EMPTY STATE
   ==================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: rgba(201, 169, 97, 0.3);
    margin-bottom: 25px;
}

.empty-state h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ====================================
   UTILITIES
   ==================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }

/* ====================================
   ANIMAÇÕES PARA DATA-ANIMATE
   ==================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fadeInUp"].animated {
    animation: fadeInUp 0.6s ease;
}

[data-animate="fadeInLeft"].animated {
    animation: fadeInLeft 0.6s ease;
}

[data-animate="fadeInRight"].animated {
    animation: fadeInRight 0.6s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}