body {
    font-family: 'Montserrat', sans-serif;
}


h2 {
    font-size: 42px;
    font-weight: 800;
}

h3 {
    font-size: 35px;
    font-weight: 700;
}

h4 {
    font-size: 25px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
}

a:link {
    text-decoration: none;
}

i{
    font-size: 20px;
}



.gradiant {
    background: rgb(219, 18, 75);
    background: linear-gradient(180deg, rgba(219, 18, 75, 1) 0%, rgba(240, 83, 45, 1) 100%);
    color: white;
    padding: 3%;
    padding-top: 7%;
}

.texto-principal {
    padding: 7%;
    text-align: center;
    background: linear-gradient(90deg, #db124b 0%, #f0532d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.texto-principal2 {
    padding: 3%;
    text-align: center;
    background: linear-gradient(90deg, #db124b 0%, #f0532d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media screen and (min-width: 600px) {
    .recorrer {
        padding-left: 30px;
    }
}

@media screen and (min-width: 600px) {
    .recorrer2 {
        padding-right: 30px;
    }
}

@media screen and (max-width: 600px) {
    .esconder {
        display: none;
    }
}



.back-d{
    background: linear-gradient(to right, #db124b, #f0532d);
    padding: 55px;
    }


/*** Footer ***/

.container-all {
    max-width: 1000px;
    margin: auto;

}


.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}




/* Botón flotante */

:root{
    --primaryColor: #40bfb4;
    --colorHover: #db124b;
    --sizeButton: 60px;
    --sizeIcons: 25px;
    --widthContent: 250px;
    --heightContent: 130px;
}



.menu-content{
    width: var(--widthContent);
    height: var(--heightContent);
    position: fixed;
    bottom: 10px;
    right: -230px;
    transform: translateX(-50%);
}


.menu-item{
    width: var(--sizeButton);
    height: var(--sizeButton);
    background: var(--primaryColor);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 70px;
    transition: transform 300ms;
}

.menu-item:hover{
    background: linear-gradient(#db124b, #f0532d);
    transition: 0.6s;
    
}

.menu-item img{
    width: var(--sizeIcons);
    transition: transform 300ms;
}

#menu{
    z-index: 10;
}

/* Rotación
.menu-active #menu img{
    transform: rotate(45deg);
}
*/
.menu-active .menu-item:nth-child(2){
    transform: translateX(-100px);
}

.menu-active .menu-item:nth-child(3){
    transform: translateY(-100px);
}

.menu-active .menu-item:nth-child(4){
    transform: translateX(-70px) translateY(-70px);
    
}


.main-content{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content h1{
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-size: 3em;
}



/* Boton Flotante Responsivo */
.menu-content2{
    width: var(--widthContent);
    height: var(--heightContent);
    position: fixed;
    bottom: 10px;
    right:0px;
    transform: translateX(42%);
    z-index: 1;
}

.menu-item2{
    width: var(--sizeButton);
    height: var(--sizeButton);
    background: var(--primaryColor);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 70px;
    transition: transform 300ms;
}

.menu-item2:hover{
    background: linear-gradient(#db124b, #f0532d);
    transition: 0.6s;
    
}

.menu-item2 img{
    width: var(--sizeIcons);
    transition: transform 300ms;
}

#menu2{
    z-index: 10;
}



.menu-active2 .menu-item2:nth-child(2){
    transform: translateX(-100px);
}

.menu-active2 .menu-item2:nth-child(3){
    transform: translateY(-100px);
}

.menu-active2 .menu-item2:nth-child(4){
    transform: translateX(-70px) translateY(-70px);
    
}


.menu-content2{
    display: none;
}
@media screen and (max-width:500px){
    .menu-content2{
        display: flex;
    }
} 



@media screen and (max-width: 600px) {
    .menu-content{
    display:none;
    }
    }