/* Llamada a la acción */
.llamada-python {
    width: 100%;
    max-width: 1075px;
    margin: 10px auto 30px;
    border-radius: 12px;
    padding: 30px;
    background: #F2C811;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.llamada--contenido {
    max-width: 900px;
}

.llamada-contenido h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    line-height: 1.2;
}

.llamada-contenido p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.llamada-botones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.btn-llamada {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.btn-rojo {
    background: #fff;
    color: #000000;
    border: none;
}

.btn-rojo:hover {
    background: #f1f1f1;
}

@media screen and (max-width: 768px) {
    .llamada-python {
        padding: 17px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .llamada-contenido h2 {
        font-size: 25px;
    }
}