.cabeceraAreas {
    position: relative;
    width: 100%;
    padding: 80px 0px;
    display: block;
}

.cabeceraAreas .color {
    width: 60%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0px;
    right: 0px;
    display: block;
    overflow: hidden;
}

.cabeceraAreas .color .svg1 {
    animation: spin 15s linear infinite;
    position: relative;
    top: -50%;
    max-width: 1240px;
    right: 60%;
    z-index: -1;
    object-position: center;
}

.cabeceraAreas .bloque-contenido {
    max-width: 1280px;
    padding: 0px 20px;
    margin: 0px auto;
}

.cabeceraAreas .bloque-contenido .contenido {
    width: 66.66%;
    max-width: 826px;
    padding: 40px;
    box-sizing: border-box;
    background: #FFF;
}

.cabeceraAreas .bloque-contenido .contenido h1.titulo {
    font-family: 'Sua';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    color: #1F1F1F;
    margin-top: 0px;
}

.cabeceraAreas .bloque-contenido .contenido .descripcion {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.03em;
    color: #1F1F1F;
}

.cabeceraAreas .bloque-contenido .contenido a.enlace {
    position: relative;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: #1F1F1F;
    padding-right: 40px;
    transition: all 0.3s ease-in-out;
}

.cabeceraAreas .bloque-contenido .contenido a.enlace:hover {
    padding-right: 50px;
    transition: all 0.3s ease-in-out;
}

.cabeceraAreas .bloque-contenido .contenido a.enlace:after {
    content: "";
    position: absolute !important;
    right: 0px;
    left: auto !important;
    width: 20px !important;
    height: 1px !important;
    background: #222222;
    top: 50% !important;
    transform: translateY(-50%);
    transition: all 0.3s linear !important;
}

.cabeceraAreas .bloque-contenido .contenido a.enlace:before {
    content: "";
    position: absolute !important;
    right: 0px;
    left: auto !important;
    width: 7px !important;
    height: 7px !important;
    border: 1px solid #222222;
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg);
    border-left: 0px solid transparent;
    border-bottom: 0px solid transparent;
    transition: all 0.3s linear !important;
}







@media screen and (max-width: 1300px) {
    .cabeceraAreas .color .svg1 {
        left: -70%;
        width: 1070px;
        top: -20%;
    }
  }

  @media screen and (max-width: 1000px) {
    .cabeceraAreas .color .svg1 {
    left: -70%;
    width: 610px;
    top: -30%;
}
  }

  @media screen and (max-width: 800px) {
    .cabeceraAreas .color .svg1 {
        left: -120%;
        width: 680px;
        top: -10%;
    }
  }  





@keyframes spin {
    0% { transform: translateX(50%) rotate(0deg); }
    100% { transform: translateX(50%) rotate(360deg); }
  }
  @keyframes spin2 {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
  }