.containerd {
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

.rowd {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.cold {
    flex: 1;
    max-width: 33.33%;
    padding: 5px;
    box-sizing: border-box;
    flex-basis: 150px;
}

.cold img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
}

.cold img:hover {
    transform: scale(1.05);
}

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

.modal-content {
    display: block;
    max-width: 800px;
    margin: 10% auto;
    padding: 20px;
    background-color: transparent;
    box-sizing: border-box;
    border-radius: 4px;
}

.modal-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.prevd,
.nextd {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.prevd:hover,
.nextd:hover {
    transform: scale(1.2);
}

.prevd {
    left: 20px;
}

.nextd {
    right: 20px;
}

@media screen and (max-width: 768px) {
    .cold {
        max-width: 500%;
    }
}

@media screen and (max-width: 480px) {
    .cold {
        max-width: 100%;
    }
}


.comodidades{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px
}
.comodidades .com{
    display: flex;
    flex-basis: 300px;
    flex-grow: 1;
    flex-wrap: wrap;
    padding: 10px;
    margin: 5px;
    background: rgba(19, 55, 74, 0.1);
    border-radius: 5px
}
.comodidades .com div{
    width: 100%;
    text-align: center;
    font-size: 3em;
    color: #C90C4E;
    margin-top: 10px
}
.comodidades .com h6{
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    color: #C90C4E;
    margin-top: 10px;
    font-weight: 600;
}
.comodidades .com p{
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: #000000;
    margin-top: 10px;
    height: 100px;
    margin-bottom: 10px
}

.chamada{
    text-align: center;
    padding: 200px 0;
    
    background-image: url(../images/chamada.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.chamada h1{
    font-weight: 600;
    color: #ffffff;
}
.chamada a{
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 1.2em;
    font-weight: 600;
    color: #C90C4E;
    transition: 0.5s;
    border: 2px #ffffff solid;
}
.chamada a:hover{
    background: #C90C4E;
    padding: 15px 40px;
    border-radius: 100px;
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    border: 2px #ffffff solid;
}