/* ABOUT PAGE - CSS LIMPO E AUTOSSUFICIENTE */

/* HERO */
.about-hero {
    background: linear-gradient(135deg, #2d8659 0%, #1a5f3f 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
}

.about-hero p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* MAIN CONTAINER */
.about-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTIONS */
.about-section {
    padding: 50px 0;
}

.about-section.alt-bg {
    background: #f5f5f5;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-section h2 {
    text-align: center;
    color: #2d8659;
    font-size: 2rem;
    margin: 0 0 30px 0;
}

/* FLEXBOX ROW - TEXTO E IMAGEM */
.about-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    line-height: 1.7;
    color:#2d8659;
    margin: 0 0 15px 0;
}

.about-text strong {
    color: #2d8659;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* BLOCKQUOTE */
blockquote {
    background: #e8f5e9;
    border-left: 4px solid #2d8659;
    padding: 20px;
    margin: 20px 0 0 0;
    font-style: italic;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: #2d8659;
}

/* SEÇÃO PIQUIRA - TEXTO CENTRALIZADO */
.about-text-center {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.about-text-center p {
    line-height: 1.7;
    color: #fff;
    margin: 0 0 15px 0;
}

.about-text-center strong {
    color: #2d8659;
}

.about-image-center {
    text-align: center;
}

.about-image-center img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* GALERIA */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* RESPONSIVO - DESKTOP */
@media (min-width: 768px) {
    .about-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-row.reverse {
        flex-direction: row-reverse;
    }

    .about-text,
    .about-image {
        flex: 1;
    }

    .gallery img {
        max-width: 320px;
    }
}
