* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;

}

/* STYLE OF CABECERA */
header {
    position: relative;
    background-color: white;
    border-bottom: 5px solid transparent;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 13px 20px;
}

.logo_brevas img {
    height: 50px;
}

.logo_brevas {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sections {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sections a {
    text-decoration: none;
    margin-right: 5px;
    padding: 13px 10px;
    border: unset;
    border-radius: 15px;
    color: #5a5b5b;
    z-index: 1;
    position: relative;
    font-size: 25px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    transition: all 250ms;
    overflow: hidden;
}
  
.sections a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #FF69B4;
    z-index: -1;
    box-shadow: 16px 16px 19px -3px #32CD32;
    transition: all 400ms
}
  
.sections a:hover {
    color: #ffffff;
}
  
.sections a:hover::before {
    width: 100%;
}

header::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #FF69B4 30%, #32CD32 30%);
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* STYLE OF FOOTER */

footer{
    width: 100%;
    padding: 50px 0px;
    background-image: url(../img/background-footer.svg);
    background-size: cover;
}

.container__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
}

.box__footer {
    display: flex;
    flex-direction: column;
    padding: 40px;

}

.box__footer .logo img {
    width: 180px;

}

.box__footer .terms{
    max-width: 300px;
    margin-top: 20px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 18px;
}

.box__footer h2 {
    margin-bottom: 30px;
    color: #343434;
    font-weight: 700;
}

.box__footer a{
    margin-top: 10px;
    color: #7a7a7a;
    font-weight: 600;
    text-decoration: none ;
}

.box__footer a:hover {
    opacity: 0.8;
}

.box__footer a .fab {
    font-size: 20px;
}

.box__copright {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copright p {
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copright hr {
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}


/* BREAKPOINS  */

/* Estilos para el botón de menú hamburguesa */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .sections {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #fbebf5;
        position: absolute;
        top: 85px;
        left: 0;
        z-index: 10;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .sections a {
        padding: 10px;
        width: 100%;
        border-radius: 0px;
        margin: 0px;
    }
    
    .sections a:hover {
        background-color: #FF69B4;
    }

    .sections.show {
        display: flex;
    }
}