/* Porto Shop27 Instagram Style — fiel ao demo oficial */

.hs-ig-section {
    background-color: #212529;
    padding: 0;
    overflow: hidden;
    max-width: none !important;
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.hs-ig-row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch !important;
    min-height: 280px;
    margin: 0;
    padding: 0;
    gap: 0;
}

/* Coluna info (esquerda) */
.hs-ig-col-info {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #212529;
    text-align: center;
}

.hs-ig-info-box { text-align: center; }

.hs-ig-icon-wrap { margin-bottom: 14px; }

.hs-ig-icon-wrap svg {
    width: 50px;
    height: 50px;
    color: #ffffff;
    display: inline-block;
}

.hs-ig-info-text h2 {
    font-family: 'Poppins','Open Sans',sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 6px 0;
    text-transform: none;
    letter-spacing: normal;
}

.hs-ig-info-text p {
    font-family: 'Poppins','Open Sans',sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    line-height: 1.2;
    margin: 0;
    letter-spacing: normal;
}

/* Coluna gallery (direita) */
.hs-ig-col-gallery {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
}

.hs-ig-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
}

.hs-ig-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    background: #1a1c1f;
}

.hs-ig-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
    filter: none;
}

.hs-ig-thumb:hover img { transform: scale(1.04); }

/* Overlay escuro permanente que fade no hover (estilo .porto-ig-overlay) */
.hs-ig-thumb-overlay {
    display: block !important;
    position: absolute;
    inset: 0;
    background-color: rgba(34,37,41,0.8);
    opacity: 1;
    transition: opacity .35s ease;
    pointer-events: none;
}

.hs-ig-thumb:hover .hs-ig-thumb-overlay { opacity: 0; }

/* Placeholder */
.hs-ig-soon {
    text-align: center;
    padding: 80px 20px;
    font-family: 'Poppins',sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
    .hs-ig-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop md */
@media (min-width: 992px) {
    .hs-ig-col-info {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 50px 23px 50px 36px;
        text-align: left;
        justify-content: flex-start;
    }
    .hs-ig-info-box { text-align: left; }
    .hs-ig-col-gallery {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .hs-ig-gallery {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Large desktop xl */
@media (min-width: 1200px) {
    .hs-ig-gallery { grid-template-columns: repeat(6, 1fr) !important; }
}

@media (min-width: 1400px) {
    .hs-ig-gallery { grid-template-columns: repeat(6, 1fr) !important; }
}
