@charset "UTF-8";

/* ===== VARIÁVEIS E RESET ===== */
:root {
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-off-white: #f8f8f8;
    --color-cream: #f9f5f0;
    --color-gold: #d4af37;
    --color-green: #2e8b57;
    --color-red: #b22222;
    --color-burgundy: #800020;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    color: var(--color-burgundy);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--spacing-xl) 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-red));
    color: var(--color-white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-burgundy);
    border: 2px solid var(--color-burgundy);
}

.btn-secondary:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-success {
    background: var(--color-green) !important;
    color: var(--color-white) !important;
    border-color: var(--color-green) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.gold-accent {
    color: var(--color-gold);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0; /* Reduzido */
    transition: var(--transition);
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    height: 70px; /* Altura fixa menor */
}

header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: var(--shadow);
    padding: 5px 0; /* Reduzido quando scrolled */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    width: 85px; /* Reduzido em 30% */
    height: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--color-white);
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001; /* Garantir que fique acima de tudo */
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-white);
    border-radius: 3px;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/RvYPEGp.jpeg') center/cover no-repeat;
    z-index: -2;
    transition: opacity 0.8s ease;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(128, 0, 32, 0.5));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 var(--spacing-sm);
}

.hero-logo {
    max-width: 210px; /* Reduzido em 40% (350px -> 210px) */
    margin: 0 auto var(--spacing-md);
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--color-cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/wSKeqya.jpeg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    background: url('https://imgur.com/R198418.jpeg') center/cover no-repeat;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(128, 0, 32, 0.1));
}

.about-content {
    padding: var(--spacing-md);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* ===== MENU SECTION ===== */
.menu {
    background: linear-gradient(135deg, var(--color-dark), #2a2a2a);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/EyZPlXz.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.menu h2 {
    color: var(--color-white);
}

.menu-container {
    position: relative;
    z-index: 1;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.delivery-info {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gold);
    font-style: italic;
    font-size: 1.1rem;
}

.category-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    color: var(--color-white);
    position: relative;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
    transition: var(--transition);
}

.category-btn.active {
    color: var(--color-gold);
}

.category-btn.active::after {
    width: 100%;
}

.category-btn:hover::after {
    width: 100%;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition);
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.menu-item h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
    font-size: 1.4rem;
}

.menu-item p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
}

.menu-price {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: var(--spacing-xs);
}

.serving-time {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===== CART SIDEBAR & FAB ===== */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-gold), #b8941f);
    color: var(--color-dark);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.cart-fab:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-red);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-dark);
}

.cart-label {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px; /* Hidden by default */
    width: 400px;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-dark);
    color: var(--color-white); /* Ensure text is white */
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: var(--color-gold);
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-cart {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.close-cart:hover {
    color: var(--color-white);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section h4 {
    color: var(--color-white);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cart-footer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-body {
        padding: 15px;
    }

    .cart-footer {
        padding: 15px;
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }

    .order-summary {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .cart-fab {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .cart-label {
        font-size: 0.9rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
}

.form-label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-white);
}

.form-input, .form-textarea, .form-select {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-sm);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.quantity {
    margin: 0 10px;
    font-weight: bold;
}

.remove-item {
    background: rgba(178, 34, 34, 0.3);
    border: none;
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}

.remove-item:hover {
    background: var(--color-red);
}

.order-summary {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.payment-icon i {
    color: var(--color-dark); /* Corrigido: agora os ícones são visíveis */
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-info {
    text-align: center;
    color: #ccc;
    margin-bottom: var(--spacing-md);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-sm);
}

.service-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--color-cream);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/TjLoElg.jpeg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.gallery-container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh; /* Reduced to make room for UI */
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 2002;
    transition: var(--transition);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    .lightbox-img {
        max-height: 70vh;
    }
}



/* ===== LOCATION SECTION ===== */
.location {
    padding: 0;
    position: relative;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    max-width: 300px;
    z-index: 10;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-gold);
}

.map-btn {
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-gold), #b8941f);
    color: var(--color-dark);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, var(--color-cream), #f0e6d8);
    color: var(--color-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/WkA1uyn.jpeg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.contact h2 {
    color: var(--color-burgundy);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-burgundy);
}

.form-input, .form-textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--spacing-xs);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-burgundy);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    margin-top: var(--spacing-sm);
    transition: var(--transition);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Horário de funcionamento */
.opening-hours {
    margin-top: var(--spacing-md);
}

.opening-hours h4 {
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-sm);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.hours {
    color: #666;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--color-dark), #2a2a2a);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
}

.footer-logo {
    width: 120px;
    margin-bottom: var(--spacing-sm);
}

.footer-about p {
    color: #ccc;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-contact p, .footer-contact a {
    color: #ccc;
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit {
    margin-top: var(--spacing-xs);
    font-size: 0.85rem;
}

.developer-info {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 3px solid var(--color-gold);
}

.developer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #25D366;
    margin-bottom: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.developer-name:hover {
    color: #128C7E;
    transform: translateY(-2px);
}

.developer-company {
    font-size: 1rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.developer-description {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    h2 {
        font-size: 2.4rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }

    .header-container {
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-lg);
        transition: var(--transition);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero-logo {
        max-width: 150px; /* Ajustado para mobile pequeno */
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        gap: 8px;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
    }
}
