.imagem_texto_lateral_1 {
    padding: 100px 0;
    background: var(--white);
}

.imagem_texto_lateral_1 .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.imagem_texto_lateral_1 .sobre-image-wrap {
    position: relative;
}

.imagem_texto_lateral_1 .sobre-image-main {
    aspect-ratio: 3/3.5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--sky), var(--aqua));
    box-shadow: var(--shadow-lg);
}

.imagem_texto_lateral_1 .sobre-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagem_texto_lateral_1 .sobre-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 180px;
    aspect-ratio: 1;
    border-radius: var(--r-md);
    background: var(--navy);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
}

.imagem_texto_lateral_1 .sobre-image-accent strong {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--aqua);
    font-weight: 700;
    line-height: 1;
}

.imagem_texto_lateral_1 .sobre-image-accent span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .65);
    text-align: center;
}

.imagem_texto_lateral_1 .sobre-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.imagem_texto_lateral_1 .sobre-content h2 b {
    font-style: normal;
    color: var(--ocean);
}

.imagem_texto_lateral_1 .sobre-content p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.imagem_texto_lateral_1 .sobre-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.imagem_texto_lateral_1 .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--r-md);
    background: var(--off);
    border: 1px solid var(--border);
    transition: all var(--trans);
}

.imagem_texto_lateral_1 .feature-item:hover {
    border-color: var(--aqua);
    box-shadow: 0 4px 16px rgba(6, 182, 212, .12);
}

.imagem_texto_lateral_1 .feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, var(--aqua), var(--ocean));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.imagem_texto_lateral_1 .feature-icon svg {
    width: 20px;
    height: 20px;
}

.imagem_texto_lateral_1 .feature-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.imagem_texto_lateral_1 .feature-text span {
    font-size: .83rem;
    color: var(--muted);
}

@media (max-width: 1024px) {

    .imagem_texto_lateral_1 .sobre-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .imagem_texto_lateral_1 .sobre-image-wrap {
        max-width: 480px;
    }
}

@media (max-width: 768px) {


    .imagem_texto_lateral_1 {
        padding: 72px 0;
    }
}