body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdeaed;
    max-width: 1440px;
    margin: 0 auto;
    color: #994F7A;
    box-sizing: border-box;
}

.header {
    display: flex;
    align-items: center;
    padding: 20px 60px 10px;
    font-family: 'Heebo';
}

.principal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.principal .info {
    margin: 60px 0 0 80px;
}

.principal .info h1 {
    font-size: 43px;
    font-weight: 900;
    line-height: 41px;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    max-width: 600px;
}

.principal .info div p {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: -2px;
    text-transform: uppercase;
    max-width: 580px;
}

.principal .info div p span {
    font-weight: 800;
    font-style: italic;
}

.principal .info div {
    margin-bottom: 70px;
}

.principal .info a {
    background-color: #994F7A;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 15px;
    transition: 0.4s;
}

.principal .info a:hover {
    background-color: #fff;
    color: #994F7A;
    border: solid 1px #994F7A;
}

.principal .img-center {
    width: 45px;
    height: 45px;
}

.principal .foto-dra-paola {
    width: 450px;
    height: 600px;
    background: url(../images/ACB04256.jpg) no-repeat;
    background-size: 500px;
    background-position: -40px -20px;
    border-radius: 40px 0 0 0;
}

.hidden {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s;
}

.show {
    opacity: 1;
    transform: translateY(30px);
    transition: all 1s;
}