/* INCLUYE LA BASE - HEADER - MENU */

/** {
    box-sizing: border-box;
}*/

body {
    background: url('../images/remodelacion.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Poppins', Arial, sans-serif;
    color: #2d2d2d;
    max-width: 100%;
}

/* HEADER */

header {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    background: rgba(239, 222, 196, 0.9);
    box-shadow: inset 0 0 15px #000;
    border-radius: 15px;
    padding: 15px 15px;
    margin: 15px 15px;
}

nav {
    max-width: 100%;
}

.conte_red {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
}
.conte_red01 {
    display: block;
    margin: 0 0px;
    text-align: center;
    align-items: center;
}

.img_head {
    max-height: 120px;
    min-width: 100px;
}

img.redes_sociales {
    height: 50px;
    width: auto;
    margin:0 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img.redes_sociales:hover {
    transform: scale(1.25);
    box-shadow: 0 0 10px #000;
}

.contene_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 15px #ececec;
    padding: 15px 15px;
    border-radius: 15px;
    margin: 15px;
    justify-content: center;
}

/* MENU */

.page {
    color: #fff;
    text-shadow: 0 0 5px #000;
    text-decoration: none;
    min-width: 300px;
    gap: 30px;
    font-size: 1.5rem;
    padding: 10px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.page:hover {
    background: rgba(239, 222, 196, 0.9);
    color: #000;
    text-shadow: 0 0 10px #fff;
    box-shadow: inset 0 0 10px #000;
}

.botemer {
    background-color: #ff0000;
    box-shadow: inset 0 0 15px #fff;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 30px;
    max-width: 100%;
}

.botemer:hover {
    background-color: #fff;
    color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .conte_red { 
        max-width: 100%;
        }
    .conte_red01 {
        max-width: 100%;
    }
}
@media (max-width: 1000px) {
    header {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        grid-template-columns: 1fr;
        }   
    .redes_sociales {
        max-width: 100%;
        }
    img.redes_sociales {
        height: 50px;
        margin:0 5px;
        }
    .conte-red {
        display: block;
        max-width: 100%;
        }
    .img_head {
        max-height: 110px;
        }
    .conte_red01 {
        display: block;
        max-width: 100%;
        }
    .redes {
        max-width: 100%;
    }
}
@media (max-width: 800px) {
    .conte_menu {
        display: inline-block;
        width: 50%;
        }
    .conte_red { 
        max-width: 100%;
        }
    .img_head {
        max-height: 100px;
        }
    .conte_red01 {
        max-width: 100%;
        }
    .redes {
        max-width: 100%;
        }
    .page {
        max-width:320px;
        }
    img.redes_sociales {
        height: 40px;
        margin:0 3px;
        }
    
    }
    
@media (max-width: 599px) {
    img.redes_sociales {
        height: 37px;
        margin:0 1px;
        }
    .img_head {
        max-height: 100px;
        }
    }

