/* ===================================================
   SEÇÃO QUEM SOMOS (#SOBRE)
   =================================================== */

.s-sobre {
    background: #fff; /* Fundo branco ou neutro */
    padding: clamp(60px, 8vw, 100px) 0;
    color: var(--text-dark, #243047);
}

.s-sobre .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: var(--gutter, 24px); 
}

/* --- MÍDIA (IMAGEM PRINCIPAL) --- */
.sobre__media {
    margin: 0 0 40px;
    border-radius: 0px 22px 0px 22px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}
.sobre__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- CABEÇALHO/TÍTULO --- */
.sobre__head {
    margin-bottom: 30px;
}
.sobre__logo-min-wrapper {
    margin-bottom: 10px;
}
.sobre__logo-min {
    /* 💥 REQUISITO: Largura de 70px */
    width: 70px;
    height: auto;
    display: block;
}
.sobre__h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}
.sobre__rule {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand, #e6b043); /* Cor Dourada/Âmbar */
    border-radius: 2px;
    margin-top: 10px;
}

/* --- GRID DE CONTEÚDO (Desktop) --- */
.sobre__grid {
    /* 💥 LAYOUT DESKTOP: 2 Colunas */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Espaçamento entre as colunas */
}

.sobre__p {
    font-size: 1rem;
    line-height: 1.6;
    color: #44516a;
    margin-bottom: 15px;
}
.sobre__col--left {
    padding-right: 20px;
}
.sobre__col--right {
    padding-left: 20px;
    border-left: 1px solid #ddd; /* Divisor vertical sutil */
}

.sobre__local {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark, #243047);
}
.sobre__local strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.descSoobre{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 30px;
    background: #000000c7;
    display: block;
    display: flex;
    border-radius: 20px 0px 0px ;
}

.descSoobre p{
    color: #fff;
    text-align: center;

    font-size: 1.0em;
}


/* ===================================================
   RESPONSIVIDADE (Abaixo de 760px)
   =================================================== */
@media (max-width: 760px) {
    .sobre__grid {
        /* 💥 LAYOUT MOBILE: 1 Coluna */
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Remove os paddings e divisores laterais desnecessários no mobile */
    .sobre__col--left {
        padding-right: 0;
    }
    .sobre__col--right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #ddd; /* Adiciona divisor horizontal para separar as colunas */
        padding-top: 30px;
    }
    .sobre__local {
        /* Tira o divisor de topo extra se for o layout de 1 coluna */
        border-top: none; 
    }
    .why-cta{
        width: 100%;
        min-width: 100%;    
    
    }

    .descSoobre p{
    color: #fff;
    text-align: center;
    font-size: 0.7em;
    }

    .descSoobre{
    padding: 5px 25px;
    }
}

