﻿/* stylos call actión talleres*/


.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-left {
    flex: 1 1 60%;
    padding-right: 20px;
}

.banner-right {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.banner-text {
    font-size: 16px;
    line-height: 1.5;
}

.banner-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-description {
    font-size: 14px;
    color: #666;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1BAF4D;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .banner-button:hover {
        background-color: #159e43;
    }

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: center;
    }

    .banner-left,
    .banner-right {
        flex: 1 1 100%;
        padding: 0;
    }

    .banner-right {
        margin-top: 20px;
    }
}
