.chamamento-home {
    background-color: var(--laranja);
    color: #fff;
    padding: 40px 20px;
}

.chamamento-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.chamamento-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chamamento-texto {
    flex: 1;
}

.chamamento-texto h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.chamamento-texto p {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

    .chamamento-container img {
        max-width: 100%;
    }
}