@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1;
}

/* Header superior */

.header__superior {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.logo img {
    width: 150px; /* Ajustado para móviles */
}

.redes {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.btn_contacto button {
    background: #930142;
    color: #f1f1f1;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 25px;
    border-color: #808080;
    cursor: pointer;
}

.redes a {
    text-decoration: none;
    margin: 0 5px;
    font-size: 24px; /* Ajustado para móviles */
    width: 40px; /* Ajustado para móviles */
    height: 40px; /* Ajustado para móviles */
    line-height: 40px; /* Ajustado para móviles */
    text-align: center;
    background-color: #808080;
    color: #f1f1f1;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgb(0,0,0,.5);
    transition: all 0.3s ease-in-out;
}

/* Barra menu */

.container__menu {
    width: 100%;
    height: 70px;
    background: #940143;
    padding: 0 20px;
}

.menu {
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

nav {
    height: 100%;
}

nav > ul {
    height: 100%;
    display: flex;
    justify-content: center;
}

nav > ul > li {
    height: 100%;
    list-style: none;
    margin: 0 10px;
    position: relative;
}

nav > ul > li:first-child > a {
    background-image: url(/Fotos/casa.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 40px;
}

nav > ul > li:first-child:hover > a {
    background-image: url(/Fotos/casa.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

nav > ul > li{
    height: 100%;
    list-style: none;
    position: relative;
    margin: 0 3px;
}

nav > ul > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 300ms ease;
}

nav > ul > li > a:hover {
    transform: scale(1.1);
    color: white;
    background: #808080;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

#selected {
    transform: scale(1.1);
    color: white;
    background-color: #808080;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*SUBMENU*/
nav ul li ul{
    width: 220px;
    display: flex;
    flex-direction: column;
    background: #ffff;
    position: absolute;
    top:90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgba(0,0, 0,0.5);
    z-index: 10;
    transition: all 300ms ease;
}
nav ul li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 70px;
}

nav ul li ul::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top:-12px;
    left:20px;
}
nav ul li ul li{
    display: block;
    color: black;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 300ms ease;
    z-index: 1;
}

nav ul li ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    color: black;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 300ms ease;
}

nav ul li ul li a:hover{
    color:white
}
nav ul li ul li:hover{
    background: #808080;
    color: white;
    transform: (1.1);
    padding-left: 30px;
    font-size: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0,0, 0,0.5);
}

/*elementos responsivos*/
.icon_menu{
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: none;
    align-items: center;
}
#label_check{
    width: 26px;
    height: 100%;
    display:none;
}
#check_menu{
    display: none;
}

/* Media Queries */

@media (max-width: 1200px) {
    .logo img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .header__superior {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .logo img {
        width: 180px;
    }

    .btn_contacto button {
        font-size: 18px;
        padding: 10px 20px;
    }

    .redes {
        justify-content: center;
        margin-top: 10px;
    }

    .container__menu {
        padding: 0;
    }

    nav > ul {
        flex-direction: column;
        align-items: center;
    }

    nav > ul > li {
        margin: 10px 0;
    }

    nav > ul > li > a {
        font-size: 18px;
        padding: 10px 20px;
    }
}