#estudo-caso {
    background-color: #fff9ea; 
    padding: 80px 20px 60px 20px; 
}
#estudo-caso .section-title {
    text-align: center;
    color: #383838;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
#estudo-caso .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}
.noticia-real-box {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.noticia-imagem {
    flex: 1;
    max-width: 45%; 
}
.noticia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.noticia-conteudo {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.noticia-fonte {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.noticia-titulo {
    font-size: 1.6rem;
    color: #383838;
    margin-bottom: 15px;
    line-height: 1.3;
}
.noticia-texto {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic; 
    border-left: 3px solid #efc899;
    padding-left: 15px;
}
.noticia-link {
    color: #b69771;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.noticia-link:hover {
    color: #383838;
}
.chamada-solucao {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    background-color: #383838;
    border-radius: 8px;
    max-width: 1000px; 
    margin: 0 auto; 
    color: #fff9ea;
    border-top: 5px solid #efc899; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px 50px;
    gap: 40px; 
}
.chamada-conteudo {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; 
}
.chamada-foto {
    width: 25%;
    max-width: 220px;
    border-radius: 8px; 
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    flex-shrink: 0;
}
.chamada-foto img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4; 
    object-fit: cover; 
    object-position: center;
    transform: scale(1.3);
    display: block;
}
.chamada-header {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #efc899;
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.chamada-titulo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 700;
}
.chamada-texto {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
}
.btn-chamada {
    display: inline-block;
    background-color: #efc899;
    color: #383838;
    padding: 16px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-chamada:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

@media screen and (max-width: 900px) {
    #estudo-caso { padding: 40px 20px 20px 20px; }
    #estudo-caso .section-title {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .noticia-real-box { flex-direction: column; }
    .noticia-imagem {
        max-width: 100%;
        width: 100%;
        height: 250px; 
    }
    .noticia-conteudo { padding: 25px; }
    .noticia-titulo { font-size: 1.3rem; }
    .chamada-solucao {
        flex-direction: column;
        padding: 40px 25px;
        gap: 30px;
    }
    .chamada-conteudo { padding: 0; }
    .chamada-foto {
        order: -1;
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
    }
    .chamada-titulo { font-size: 1.6rem; }
    .chamada-texto { font-size: 1rem; }
}