html {
    display: flex;
    justify-content: center;
}
h1, h2, h3,h4,h5,h6 {
            font-family: 'Anton', sans-serif;
            font-weight: normal;
            margin-top: 0 !important;
        }
body {
    font-family: 'Open Sans', sans-serif;
    background: black;
    color: white;
    margin: 0;
    padding: 20px;
    width: 100vw;
}


@media screen and (min-width: 1024px) {
.ordenadores{
		display:none;
	}
}

/*-----------------------------------------------Header----------------------------------------------*/
.logo {
            position: fixed;
            z-index: 1000;
            top: 10%;
            left: 0;
            width: 10%;
            transition: ease-in opacity .5s;
        }

        @media (max-width: 767px) {
            .logo{
                width: 25%;
            }

        }

        .logo:hover{
            transition: ease-out opacity .5s;
            opacity: 0;
        }

.nav-menu ul li a{
	font-family: 'Open Sans', sans-serif;	
	font-weight: normal;
}
.main-header {
    background-color: black;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    
    font-size: 0.9rem;
    color: white;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color:#962f2f;
}

a.highlight {
    color:#962f2f;
    font-weight: bold;
}

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


@media (max-width: 768px) {
    .aviso-legal{
        padding: 0;
    }
    .main-header {
        justify-content: right;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: black;
        width: 200px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1;
        display: none;
    }

    .nav-menu.open {
        transform: translateX(0);
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0.8rem;
    }
}
.main-header {
    display: flex;
    align-items: center;
    
    padding: 0.5rem 1rem;
    background-color: black;
}

.main-header > * {
    margin-left: 0.5rem;
}
.main-header a{
    text-decoration: none;
    font-weight: bold;
}


/*-----------------------------------------------Footer---------------------------------------------*/
footer {
    background-color: #000;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.5;
}

.review {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    color: gold;
    font-size: 1.2rem;
}

.google-icon {
    width: 30px;
    
}
footer ul li{
    list-style: none;
}
footer svg{
    margin-right: 1em;
}
.aviso-legal{
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer{
    color: white;
}

i:hover{
    color:white !important;
}
.redes-sociales{
    display: grid;
    margin-top: 1em;
    grid-template-columns: repeat(3,1fr);
    gap: .5em;
}
 .fa-instagram {
    font-size: 60px;
    /* Degradado oficial de Instagram */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s;
    display: inline-block;
  }
  .fa-youtube{
    color:#FF0000;

  }
  .fa-facebook{
   color: #1877F2;
  }
  .enlace_google{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
  }
footer a{
	text-decoration:none;
	color:white;
}


.redes-sociales{
            display:flex;
            
        }
        .redes-sociales i{
            color:white;
             -webkit-text-fill-color:white;
        }