/* Bloco chamamento principal */
.bloco-chamamento {
    background: var(--bg-chamamento, #f5f5f5);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #eee;
}

/* NOVO – layout lado a lado */
.chamamento-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

/* Imagem menor à esquerda */
.chamamento-img img {
    width: 280px;          /* tamanho ideal */
    max-width: 100%;       /* não quebra no responsivo */
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Área de texto */
.chamamento-texto {
    flex: 1;
    text-align: left;
}

/* Título */
.chamamento-texto h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--chamamento-titulo, #222);
}

/* Descrição */
.chamamento-texto p {
    font-size: 1.1rem;
    color: var(--chamamento-texto, #444);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Botão */
.btn-chamamento {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--chamamento-botao, #0066cc);
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-chamamento:hover {
    background-color: var(--chamamento-botao-hover, #004999);
    transform: translateY(-2px);
}

/* Animação reveal */
.bloco-chamamento.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bloco-chamamento.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .chamamento-container {
        flex-direction: column;
        text-align: center;
    }

    .chamamento-texto {
        text-align: center;
    }

    .chamamento-img img {
        width: 70%;
    }

    .chamamento-texto h2 {
        font-size: 1.7rem;
    }
}