* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background:white;
    background-attachment: fixed;
    background: url(../imagenes/iconos/mejor.svg) no-repeat center center fixed;
    background-size: cover;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.nav {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav a {
    font-family: "Anonymous Pro", monospace;
}

.nav:hover {
    background: rgba(101, 101, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 48, 142, 0.2);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: rgb(119, 0, 255);
    transform: scale(1.05);
}

.navegador {
    display: flex;
    list-style: none;
}

.navegador a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navegador a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(102, 0, 255), #7a5cff);
    transition: width 0.3s ease;
}
hr {
    margin: 1rem 0;
}

.navegador a:hover::after {
    width: 100%;
}

.navegador a:hover {
    color: rgb(102, 0, 255);
}

.contenido {
    border: solid 1px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: rgba(255, 255, 255);
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-top: 25vh;
}
.contacto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}
.contacto div {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}
.contacto a {
    color: rgb(0, 0, 0);
}
div img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}
.sociales{
    display: flex;
    justify-content: center;
}
.sociales img {
    width: 80px;
    height: auto;
}
.sociales img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}
@media screen and (max-width: 820px) {
    header {
        position: relative;
    }
    nav {
        flex-direction: column;
        text-align: center;
    }
    .nav{
        padding: 0;
    }
    .navegador {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .contenido {
        padding: 1rem;
        margin-top: 10vh;
    }
    footer {
        font-size: 0.8rem;
    }
}