* { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }
        
        body { 
            font-family: 'Raleway', sans-serif; 
            background: url('images/fundo.jpg') center/cover fixed no-repeat #0a1a0a; 
            color: #ffffff; 
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header { 
            background: rgba(8, 33, 10, 0.9); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 2.5rem 1rem; 
            text-align: center; 
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 4px 20px rgba(0,0,0,0.6);
        }
        
        h1 { 
            font-family: 'Cinzel', serif; 
            font-size: 2.2rem; 
            letter-spacing: 3px; 
            color: #ffd700; 
            text-transform: uppercase;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        }
        
        .subtitle { 
            font-family: 'Cinzel', serif;
            font-size: 1rem; 
            color: #c8e6c9; 
            margin-top: 0.5rem; 
            letter-spacing: 1px;
        }
        
        .nav-bar { 
            display: flex; 
            justify-content: center; 
            gap: 15px; 
            margin-top: 2rem; 
            flex-wrap: wrap; 
        }
        
        .nav-bar button { 
            background: rgba(13, 54, 16, 0.7); 
            border: 1px solid #ffd700; 
            color: #ffd700;
            padding: 10px 24px; 
            border-radius: 4px; 
            cursor: pointer;
            font-family: 'Cinzel', serif; 
            font-size: 0.9rem; 
            letter-spacing: 1px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }
        
        .nav-bar button:hover, .nav-bar button.active-btn { 
            background: #ffd700; 
            color: #050d05; 
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            font-weight: bold;
        }

        main {
            flex-grow: 1;
        }

        section { 
            display: none; 
            padding: 3rem 1.5rem; 
            max-width: 900px; 
            margin: 0 auto; 
            width: 100%; 
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        section.active { 
            display: block; 
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        h2 { 
            font-family: 'Cinzel', serif; 
            color: #ffd700; 
            text-align: center; 
            font-size: 2rem;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
        }

        h3 { 
            font-family: 'Cinzel', serif; 
            color: #e8c600; 
            text-align: center; 
            font-size: 1.4rem;
            margin: 3rem 0 1.5rem; 
            border-bottom: 1px solid rgba(255, 215, 0, 0.3); 
            padding-bottom: 0.8rem; 
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }
        
        .info-click { 
            text-align: center; 
            color: #fff; 
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem; 
            margin-bottom: 2.5rem; 
            background: rgba(13, 54, 16, 0.85);
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.4);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .description-box { 
            background: rgba(13, 54, 16, 0.85); 
            backdrop-filter: blur(8px);
            padding: 2.5rem; 
            border-radius: 8px; 
            border-left: 4px solid #ffd700;
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.6);
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
            color: #ffffff;
        }

        .gallery { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
            gap: 25px; 
        }

        .card { 
            display: flex;
            flex-direction: column;
            text-decoration: none;
            background: rgba(8, 33, 10, 0.9);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px; 
            overflow: hidden; 
            transition: all 0.4s ease; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.6);
        }

        .card:hover { 
            border-color: #ffd700; 
            transform: translateY(-5px); 
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

  /* Removemos o 'aspect-ratio' para o card se ajustar à imagem */
        .img-wrapper {
            width: 100%;
            height: auto; 
            overflow: hidden;
            background: transparent; /* Remove qualquer cor de fundo */
            display: block; /* Garante que não haja espaços extras */
        }

        /* A imagem agora ocupa 100% da largura e ajusta a altura sozinha */
        .gallery img { 
            width: 100%; 
            height: auto; 
            display: block; 
            object-fit: contain; /* Garante que nada seja cortado */
            transition: transform 0.6s ease;
        }

        .card:hover img {
            transform: scale(1.05);
        }

        .card-title {
            padding: 1.2rem 1rem;
            text-align: center;
            font-family: 'Cinzel', serif;
            color: #ffd700;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(to top, rgba(5, 13, 5, 1), rgba(8, 33, 10, 0.9));
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }

        .socials { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
            gap: 15px; 
            max-width: 600px;
            margin: 0 auto;
        }

        .socials a { 
            display: flex; 
            align-items: center;
            justify-content: center;
            padding: 1.2rem; 
            background: rgba(13, 54, 16, 0.85); 
            border: 1px solid rgba(255, 215, 0, 0.4);
            color: #ffd700; 
            text-decoration: none; 
            border-radius: 6px; 
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .socials a:hover {
            background: #ffd700;
            color: #050d05;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            transform: translateY(-3px);
        }

        footer { 
            text-align: center; 
            padding: 2rem; 
            font-family: 'Cinzel', serif;
            font-size: 0.9rem; 
            color: rgba(255, 255, 255, 0.7); 
            margin-top: auto; 
            background: rgba(8, 33, 10, 0.95);
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .img-externa { 
            display: block; 
            width: 100%; 
            max-width: 300px; 
            margin: 2rem auto; 
            border-radius: 8px; 
            border: 2px solid rgba(255, 215, 0, 0.4);
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        }
        
        .citacao {
            text-align: center;
            font-style: italic;
            font-size: 1.2rem;
            color: #c8e6c9;
            padding: 1rem;
        }
/* --- ESTILO DO NOVO CATÁLOGO FILTRÁVEL --- */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(9, 80, 15, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 10px 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.tab-btn:hover, .tab-btn.active-tab {
    background: #ffd700;
    color: #050d05;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.category-content {
    display: none; /* Esconde as categorias por padrão */
    animation: fadeIn 0.5s ease;
}

.category-content.active-category {
    display: block; /* Mostra apenas a ativa */
}

/* Card Slim (Sem descrição) */
.card-slim {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(13, 54, 16, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-slim:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.card-body-slim {
    padding: 1.2rem;
    text-align: center;
    background: rgba(28, 83, 28, 0.64);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.card-title-slim {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-agendar {
    display: inline-block;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 6px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 20px;
    transition: 0.3s;
}

.card-slim:hover .btn-agendar {
    background: #ffd700;
    color: #050d05;
}