/* Seção Nossa História */
.nossa-historia {
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    background-color: #ffffff;
}

.historia-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.historia-title {
    margin-right: 50px;
    margin-top: 100px;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: bold;
    color: #0d0d0d;
    text-transform: uppercase;
    line-height: 1;
}

.historia-decor {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #b86b3a;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.historia-text {
    flex: 1;
    max-width: 600px;
}

.historia-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.historia-text em {
    font-style: italic;
    font-weight: bold;
    color: #000;
}

/* Seção Instagram */
.instagram-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 10%;
    background-color: #ffffff;
}

.instagram-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.instagram-box {
    background-color: #111717;
    width: 100%;
    max-width: 850px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
}

.instagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: right;
}

.instagram-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.instagram-content p {
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.5;
}

/* Seção Estrutura */
.estrutura-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.estrutura-container {
    max-width: 900px;
    margin: 0 auto;
}

.estrutura-title {
    font-size: 42px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #000;
    margin-bottom: 20px;
}

.estrutura-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.estrutura-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    max-width: 700px;
}

.estrutura-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.estrutura-list em {
    color: #b86b3a;
    font-weight: bold;
}

.estrutura-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.estrutura-gallery img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.estrutura-gallery img:hover {
    transform: scale(1.05);
}


/* Responsividade */
@media (max-width: 768px) {
    .nossa-historia {
        padding: 60px 5%;
    }

    .historia-container {
        flex-direction: column;
        text-align: left;
    }

    .historia-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .historia-text {
        max-width: 100%;
    }

    .estrutura-title {
        font-size: 36px;
    }

    .estrutura-text,
    .estrutura-list li {
        font-size: 16px;
    }

    .estrutura-gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
