/*==========================================================
    1. SEÇÃO PRINCIPAL (SOBRE)
==========================================================*/

/* Container que envolve a imagem e o texto */
.chica-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
}

/*==========================================================
    2. COMPONENTE IMAGEM
==========================================================*/

/* Container da foto */
.chica-img {
    flex: 1 1 600px;
    display: flex;
    justify-content: center; /* Centraliza a imagem no container */
}

/* A imagem em si */
.chica-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.chica-img img:hover {
    transform: scale(1.05);
}

/*==========================================================
    3. COMPONENTE TEXTO
==========================================================*/

/* Container do texto */
.chica-text {
    flex: 1 1 700px;
}

.chica-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.chica-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/*==========================================================
    4. RESPONSIVIDADE
==========================================================*/

@media (max-width: 768px) {
    .chica-container {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding: 20px;
    }

    .chica-img {
        flex: none;
        max-width: 280px;
    }

    .chica-text {
        flex: none;
    }
    
    .chica-img img {
        aspect-ratio: 4 / 5;
        border-radius: 14px;
        box-shadow: 0 6px 18px rgba(60, 33, 21, 0.14);
        height: 350px;
        margin-bottom: 0;
        object-fit: cover;
        object-position: center top;
    }

    .chica-img img:hover {
        transform: none;
    }

    .chica-text h2 {
        font-size: 1.9rem;
    }

    .chica-text p {
        font-size: 0.98rem;
        line-height: 1.65;
    }
}
