.seccion-exclusiva {
    font-family: 'Montserrat', sans-serif;
    margin: 0 auto;
    padding: 60px 20px 150px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.seccion-exclusiva *, .seccion-exclusiva *::before, .seccion-exclusiva *::after {
    box-sizing: inherit;
}

.cce-titulo {
    font-weight: bold;
    font-size: 50px;
    color: #4B4B4B;
    text-align: center;
    margin-top: 0;
    margin-bottom: 100px;
}

.cce-tarjetas-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.cce-tarjeta {
    flex: 1;
    max-width: 362px;
    min-height: 407px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
}

.cce-icono-container {
    height: 35%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.cce-icono {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

img.cce-icono { 
    width: auto;
    max-width: 80px;
    height: 64px; 
}

img.cce-icono:not([src]), img.cce-icono[src=""] {
    background-color: #e9ecef;
    width: 64px;
    height: 64px;
    border-radius: 10px;
}

.cce-texto-container{
    height: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cce-texto {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 32px;
    color: #565656;
    margin: 0;
    line-height: 1.4;
    display: block;
    width: 100%;
}

.cce-boton-container {
    text-align: center;
}

.cce-boton {
    font-family: 'Montserrat', sans-serif;
    background-color: #319324;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 33px;
    text-decoration: none;
    border-radius: 20px;
    width: 444px;
    height: 78px;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 1050px) {
    .cce-texto{
        font-size: 23px;
    }
}

@media screen and (max-width: 837px) {
    .seccion-exclusiva {
        padding: 40px 15px;
    }

    .cce-titulo {
        margin-bottom: 40px;
    }

    .cce-tarjetas-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cce-tarjeta {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
        min-height: 330px;
        padding: 30px 15px 30px 15px;
    }

    .cce-icono-container {
        height: 40%;
        margin-bottom: 20px;
    }

    .cce-texto {
        font-size: 25px;
    }
}

@media screen and (max-width: 720px) {
    .cce-titulo {
        font-size: 30px;
    }

    .cce-texto{
        font-size: 20px;
    }

    .cce-boton {
        width: 345px;
        font-size: 25px;
        height: 70px;
    }
}

@media screen and (max-width: 590px) {
    .contenedor-servicios-adicionales .cchv-pasos-wrapper{
        max-width: 350px !important;
    }

    .cce-titulo{
        font-size: 20px;
    }

    .cce-tarjeta{
        min-height: 240px;
    }

    .cce-texto{
        font-size: 17px;
    }

    .cce-boton {
        width: 205px;
        font-size: 15px;
        height: 40px;
        border-radius: 10px;
    }
}