/* Variáveis Globais (Cores Tradição Gourmet) */
:root {
    --bg-color: #fdfbf7;
    --text-color: #2b1d16;
    --primary-color: #4a2c20; /* Marrom Chocolate */
    --accent-color: #cda153; /* Dourado */
    --wa-color: #25D366;
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(74, 44, 32, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #2b1d16);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Location Banner */
.location-banner {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.location-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    border-top: 4px solid var(--accent-color);
}

.location-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.location-card h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 1.1rem;
}

.location-card .dates {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 5px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    min-height: 200px;
}

.gallery-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.gallery-item.loaded {
    opacity: 1;
    transform: scale(1);
}

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

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

.loading-spinner {
    grid-column: 1 / -1;
    color: var(--primary-color);
    font-weight: 600;
    padding: 40px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Floating WA Button */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--wa-color);
    color: white;
    border-radius: 50px;
    padding: 12px 25px 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.float-wa:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero { padding: 80px 0 50px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); }
    .float-wa { 
        bottom: 20px; 
        right: 20px; 
        padding: 12px; 
    }
    .float-wa span { display: none; } /* Oculta texto em telas pequenas para ficar só o ícone */
}
