
/* Seção "Sobre Nós" */
#article-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 10%;
    background-size: cover;
    background-position: center;    
}

/* Container Principal */
#article-one-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    gap: 40px;
}

/* Imagem do Chef */
#article-one-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    overflow: hidden;
}

#article-one-image-container img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Texto */
#article-one-section-one {
    width: 50%;
    padding: 20px 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}

#article-one-section-one h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--red-velvet);
    font-weight: 500;
}

#article-one-section-one h2 {
    color: black;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

#article-one-section-one p{
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: black;
}

/* Botão */
#article-one-section-one button {
    font-family: "League Spartan", sans-serif;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: black;
    letter-spacing: 0.5px;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

#article-one-section-one button:hover {
    background-color: var(--red-velvet);
}


/* ============================= */
/* RESPONSIVIDADE PARA MOBILE */
/* ============================= */
@media (max-width: 768px) {

    #article-one{
        padding-bottom: 0;
    }

    #article-one-container {
        flex-direction: column; /* Muda para coluna */
        text-align: center; /* Centraliza o texto */
        gap: 10px;
    }

    #article-one-image-container {
        width: 100%; /* Imagem ocupa toda a largura */
    }

    #article-one-image-container img {
        width: 100%;
        height: 300px; /* Altura fixa para cortar a imagem */
        object-fit: cover; /* Garante que a imagem ocupe toda a área sem distorcer */
        border-radius: 0; /* Remove bordas arredondadas para tela cheia */
    }

    #article-one-section-one {
        width: 100%;
        padding: 20px;
    }

    #article-one-section-one h1 {
        font-size: 35px;
    }

    #article-one-section-one h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    #article-one-section-one p {
        font-size: 16px;
    }

    #article-one-section-one button {
        display: block;
        margin: 20px auto; /* Centraliza botão */
    }
}



