﻿/* CONTAINER */
.store-container {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD LOJA */
.store-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

    .store-card:hover {
        transform: translateY(-6px);
    }

    .store-card img {
        width: 100%;
        object-fit: cover;
    }

.store-info {
    padding: 20px;
    height: 15rem;
}

.store-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.store-rating {
    color: #FFA41C;
    font-size: 14px;
    margin-bottom: 8px;
}

.store-location {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.store-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    height: 18%;
}

.enter-btn {
    background: #007dc3;
    border: none;
    width: 100%;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    color: white !important;
    font-weight: bold;
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    text-align: center;
}

    .enter-btn:hover {
        background: white;
        color: #007dc3 !important;
        border: 1px solid #007dc3;
    }


.pagination {
    text-align:center;
}

.page-btn {
    border: 1px solid #007dc3;
    font-size: 1.2em;
    border-radius: 2px;
    margin: 0 2px 0 2px;
    min-width: 40px;
}

    .page-btn.active {
        background-color: #007dc3;
        color: white;
    }

/* RESPONSIVO */
@media(max-width:768px) {
    .store-container {
        padding: 20px;
    }
}

.linkButtonRegressar {
    font-size: 1.5rem;
    padding: 10px;
    color: white;
}

.buttonAcessoSocio {
    font-size: 0.5em;
    border-radius: 15px;
    width: 18%;
    height: 30px;
    text-align: center;
    align-content: center;
}

