/* ============================== */
/* ESTILO GERAL */
/* ============================== */

.informacoes {
    text-align: center;
    padding: 80px 20px;
    background-color: #fdf6f2;
}

.informacoes h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.informacoes p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* ============================== */
/* HOTÉIS */
/* ============================== */

.hotel {
    background: white;
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.hotel h2 {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.hotel h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.hotel ul {
    list-style-type: disc;
    padding-left: 20px;
}

.hotel ul li {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Galeria de imagens */
.galeria {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.galeria img {
    width: 18%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================== */
/* MAPAS */
/* ============================== */

iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    margin-top: 20px;
}

/* ============================== */
/* DRESS CODE */
/* ============================== */

.dress-code {
    background: linear-gradient(to right, #ff6600, #8a1b1b);
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 12px;
    margin-top: 50px;
}

.dress-code h2 {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 15px;
}

.dress-code .cores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.cor {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

/* ============================== */
/* CONHEÇA OS PAIS */
/* ============================== */

.pais {
    padding: 50px 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    margin-top: 50px;
}

.pais h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* GRID DOS PAIS */
.grid-pais {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* ESTILIZAÇÃO DOS PAIS */
.pai {
    width: 220px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pai img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}

.pai p {
    font-size: 1rem;
    margin-top: 10px;
}

/* GRID DOS CASAIS (ABAIXO DOS PAIS) */
.grid-casais {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

/* ESTILIZAÇÃO DOS CASAIS */
.casal {
    width: 220px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.casal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================== */
/* RESPONSIVIDADE */
/* ============================== */

@media (max-width: 1024px) {
    .pai {
        width: 200px;
        height: auto;
    }

    .casal {
        width: 200px;
        height: 140px;
    }

    .dress-code .cores {
        gap: 10px;
    }

    .cor {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .grid-pais {
        flex-direction: column;
        align-items: center;
    }

    .grid-casais {
        flex-direction: column;
        align-items: center;
    }

    .pai {
        width: 100%;
    }

    .casal {
        width: 100%;
        height: auto;
    }

    .galeria img {
        width: 45%;
    }

    .dress-code h2 {
        font-size: 1.5rem;
    }

    .cor {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .pai {
        width: 100%;
        max-width: 250px;
    }

    .casal {
        width: 100%;
        height: auto;
        max-width: 250px;
    }

    .dress-code {
        padding: 30px 15px;
    }

    .dress-code .cores {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cor {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .galeria {
        flex-direction: column;
        align-items: center;
    }

    .galeria img {
        width: 100%;
        max-width: 250px;
    }

    iframe {
        height: 300px;
    }
}
