/* ===============================
   CONFIGURAÇÕES GERAIS
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Permite rolar a tela se a galeria ficar longa */
    min-height: 100vh;
    padding: 20px 0;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

/* ===============================
   CABEÇALHO E LOGO
   =============================== */
.logo {
    width: 160px;
    border-radius: 10px;
    margin-bottom: 20px;
    /* Leve brilho dourado ao redor da logo para destacar */
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15); 
}

h1 {
    color: #FFD700;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 25px;
}

/* ===============================
   SISTEMA DE ABAS (TABS)
   =============================== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tab-btn {
    background: transparent;
    border: 2px solid #333;
    color: #cccccc;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.tab-content {
    display: none; /* Esconde todas as abas por padrão */
    animation: fadeIn 0.4s ease-in-out;
}

#links.active-tab {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#galeria.active-tab {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   BOTÕES E LINKS
   =============================== */
.btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover:not(.btn-disabled) {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* ESTILO DO NOVO BOTÃO DE CATÁLOGO */
.btn-catalogo {
    background-color: #FFD700; /* Dourado da logo */
    color: #0a0a0a; /* Cor do fundo da tela para dar contraste na letra */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2); /* Sombra dourada suave */
}

.btn-disabled {
    background-color: #1a1a1a;
    color: #666666;
    border: 1px solid #333333;
    cursor: not-allowed;
}

/* ===============================
   DIVISOR "EM BREVE"
   =============================== */
.divider {
    margin: 25px 0 10px 0;
    position: relative;
    text-align: center;
    z-index: 1;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333333;
    z-index: -1;
}

.divider span {
    background: #0a0a0a;
    padding: 0 15px;
    color: #FFD700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===============================
   GALERIA E CARDS
   =============================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    border-color: #FFD700;
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background-color: #222; /* Fundo escuro enquanto a imagem carrega */
}

.card-desc {
    padding: 12px;
    font-size: 0.85rem;
    color: #e0e0e0;
    line-height: 1.4;
}