/* ============================================
   GALLERY MODAL/LIGHTBOX
   ============================================ */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
    animation: slideIn 0.3s ease;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.gallery-modal-close:hover {
    color: #C88F97;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   LAYOUT INFO GRID DESKTOP REFORMULADO
   ============================================ */

/* Layout para Desktop: 2 colunas */
@media (min-width: 993px) {
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }
    
    .info-left-column,
    .info-right-column {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: 100%;
    }
}

/* Layout para Tablet: 1 coluna */
@media (max-width: 992px) {
    .info-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .info-left-column,
    .info-right-column {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: 100%;
    }
}

/* Layout para Mobile: 1 coluna com melhor espaçamento */
@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-left-column,
    .info-right-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}
