/* ===== CONTEÚDO PRINCIPAL ===== */
#content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Zain', sans-serif;
}

/* BANNER PRINCIPAL */

.loja-fisica-banner h1 {
    font-size: 3rem;
    color: #E89AA3;
    margin: 15px 0;
}
.container-galeria {
    max-width: 850px; /* Ajuste conforme a largura do seu site */
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* FOTO PRINCIPAL */
.foto-principal img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    border-radius: 20px;
    border: 1.5px solid #d6b98c;
}

/* CONTAINER DAS MINIATURAS */
.miniaturas-grid {
    display: flex; /* Mudamos para flex para elas ficarem bem juntinhas */
    justify-content: center;
    gap: 8px; /* Espaço reduzido entre elas */
    flex-wrap: wrap;
}

/* AS MINI FOTOS */
.miniatura {
    width: 60px;  /* Tamanho menor que você pediu */
    height: 60px; /* Mantendo quadrada */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
}

.miniatura:hover, .miniatura.active {
    opacity: 1;
    border: 2px solid #d6b98c;
    transform: scale(1.1); /* Um leve zoom para destacar qual está selecionada */
}

/* TEXTO HISTÓRIA */

.sobre-loja {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px;
    text-align: center;
    font-family: 'Zain', sans-serif;
}

.sobre-loja h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #d6b98c;
}

.sobre-loja p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.sobre-loja .loja-fisica {
    margin-top: 30px;
    font-weight: 600;
}

.sobre-loja .slogan {
    margin-top: 35px;
    font-size: 1.1rem;
    color: #d6b98c;
}


/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #fff;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* SEÇÃO DE INFORMAÇÕES */
.loja-fisica-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 15px;
    flex: 1 1 250px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 20px;
    border: 1.5px solid #d6b98c;
}

.info-card h2 {
    font-size: 1.8rem;
    color: #E89AA3;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
}

.info-card a {
    color: #E89AA3;
    text-decoration: none;
    font-weight: bold;
}

/* MAPA */
.loja-fisica-mapa iframe {
    border-radius: 15px;
    border: 2px solid #E89AA3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.loja-fisica-mapa {
    border: 1.5px solid #d6b98c;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* RESPONSIVO */
@media screen and (max-width: 768px) {

    #content {
        padding-left: 20px;
        /* espaço da esquerda */
        padding-right: 20px;
        /* espaço da direita */
    }

    .loja-fisica-banner h1 {
        font-size: 2.2rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }
}