.containerpro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.text-section {
    max-width: 50%;
}

.text-section h3 {
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}

.text-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.btnpro {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.btnpro:hover {
    background-color: #0056b3;
}

.quote {
    font-size: 16px;
    color: #555;
}

.quote p {
    margin-bottom: 10px;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .containerpro {
        flex-direction: column;
        text-align: center;
        flex-wrap: wrap;

    }

    .text-section {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .image-section {
        max-width: 100%;
    }

    .quote {
        padding: 0 10px;
    }
}

#productosBtn {
    background-color: #339EAA;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#productosBtn:hover {
    background-color: #339EAA;
}

section {
    padding-top: 60px;
    scroll-margin-top: 60px;
}