/*Contacta un asesor*/

.adviser-section {
    background-color: #f3f3f3;
    color: #000;
    padding: 40px 20px 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.adviser-text h1 {
    color: #FFA500;
    font-size: 2.5rem;
    font-weight: bold;
}

.adviser-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00A4A7;
}

.adviser-text p {
    font-size: 1.2rem;
    color: #00A4A7;
}

.btn-adviser-section {
    background-color: #FFA500;
    border: 2px solid #ff8800;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s linear;

}

.btn-adviser-section:hover {
    background-color: #ffffff;
    color: #ff8800;
    border: 2px solid #ff8800;
    transition: all 0.2s linear;
}

.adviser-image {
    width: 550px;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .adviser-section {
        flex-direction: column;
    }

    .adviser-text {
        text-align: center;
    }

    .adviser-image {
        display: none;
    }
}

