.contenedor-servicios {

    background-color: rgba(39, 55, 77, .95);
    display: flex;
    flex-direction: column;
}

.servicios-titulo {
    color: #DDE6ED;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}
.servicios-titulo h1{
    font-size: 2rem;
    padding: 10px;
}


.contenedor-servicios-cartas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 100px;
    gap: 30px;
}

.book {
    position: relative;
    width: 260px;
    height: 350px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 12px #000;
    transform: preserve-3d;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
}

.book:hover .cover {
    transition: all 0.5s;
    transform: rotatey(-80deg);
}

.cover {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e4e6e8;
    background-size: cover;
    transform-origin: 0;
    box-shadow: 1px 1px 12px #000;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: all 0.5s;
    cursor: pointer;
}

.cover img {
    width: 100px;
}

.cover h2 {
    font-size: 20px;
    padding: 0 20px 0 20px;
    font-weight: bold;
}

.cover>p {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.content>p {
    padding: 0 40px;
    text-align: center;
}