/* SECTION 1 */

.ambientes-sec1 {
    height: 500px;
    max-height: 100vh;
    width: 100%;
    background-image: url('imgevento4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    align-items: center;
}

.h1-amb-sec1 {
    border-radius: 15px;
    color: #E67638;
    text-shadow: 2px 2px 4px rgb(68, 68, 68);
    font-size: 70px;
}

@media (max-width: 800px) {
    .h1-amb-sec1 {
        font-size: 40px;
    }
    
}

/* SECTION 2 */

.btn-light {
    margin-top: 20px;
    color: #E67638;
    border: 1px solid #e67638;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-light:hover {
    background-color: #E67638;
    color: white;
}

.bi-whatsapp {
    color: green;
    margin-left: 5px;
}

.ambientes-sec2 {
    margin: 100px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.h2-ambsec4 {
    color: #E67638;
}

.div-p-sec2 {
    align-items: center;
    display: flex;
    justify-content: center;
}

.h4-ambientes {
    color: #FFAE06;
}


/* SECTION 3 */

#grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: minmax(250px, auto);
    grid-auto-flow: dense;
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    margin: 20px 0 0 0;
}

#grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.span-2 {
    grid-column-end: span 1;
    grid-row-end: span 2;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close {
    color: white;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}