/* CSS SECCIÓN PRINCIPAL */

section{
    padding: 0 3rem;
    padding-top: 8rem;
}

.principal{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    background-image: url(../images/img-principal-bg.png);
    background-size: cover;
}

.principal .contenido{
    width: 90%;
}

.principal .imagen img{
    width: 100%;
    animation: float 3s linear infinite;
}

@keyframes float{
    0%, 100%{
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(-1.5rem);
    }
}

.principal .contenido h3{
    font-size: 2rem;
    color:#1d1d1d;
    text-transform: uppercase;
    line-height: 1.2;
}

.principal .contenido h3 span{
    color: var(--rosa);
    text-transform: uppercase;
    display: block;
}

.principal .contenido p{
    font-size: 1.3rem;
    color:#1f1f1f;
    padding:1rem 0;
}

.boton{
    display: inline-block;
    margin-top: 1rem;
    background: var(--degradado);
    padding: .5rem 2rem;
    border-radius: 5rem;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all .3s linear;
}

.boton:hover{
    transform: scale(1.1);
}