/* about-section.css */

.about-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #000000 40%, #cd0c0c);
    color: white;
}

.about-container {
    max-width: 1200px; /* Ajuste conforme necessário */
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Adicione bordas arredondadas se desejar */
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.category-button {
    text-align: center;
}

.category-button button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #8C3128;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.category-button button:hover {
    background-color: #A1372E;
}