    .back1 {
        background: #00a786;
    }

    .back2 {
        background: var(--azulFuerte);
    }

    .back1 h1 {

        color: var(--azulFuerte);
    }

    .back2 h1 {
        color: white;
    }

    .container_capsule {
        display: flex;
        flex-direction: row;
        padding: 20px;
        border-radius: 9999px 0 0 9999px;
        margin-bottom: 20px;
        align-items: center;
    }

    .capsule_information {
        width: 80%;
        margin-left: auto;
        margin: 2rem 4rem;
    }

    .capsule_information h1 {
        font-size: 40px;
        text-transform: uppercase;
    }

    .capsule_information p {
        color: white;
        font-size: 18px;
    }

    .capsule_img {
        padding: 15px;
        background: white;
        border-radius: 50% !important;
        width: 180px;
        height: 180px;
        flex-shrink: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img_cap {
        width: 90%;
        height: 90%;
        object-fit: contain;
    }

    .img_desktop {
        width: 100%;
        display: block;
    }

    .img_movil {
        width: 100%;
        display: none;
    }

    @media (max-width: 768px) {
        .container_capsule {
            flex-direction: column;
            border-radius: 0;
        }

        .capsule_information h1 {
            text-align: center;
            font-size: 32px;
        }

        .capsule_information p {
            font-size: 16px;
        }

        .capsule_information {
            width: 100%;
        }

        .img_desktop {
            width: 100%;
            display: none;
        }

        .img_movil {
            width: 100%;
            display: block;
        }
    }

    @media (max-width: 768px) {
        .capsule_information h1 {
            font-size: 24px;
        }
    }