* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

body {
    overflow-x: hidden ;
}

/*HEADER SUPERIOR*/
header {
    width: 100%;
    top: 0;
    left: 0;
    background: white;
}

/*HEADER SUPERIOR*/
.header__superior {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    
}

.logo img {
    width: 250px;
}

/*BARRA MENU*/
.container__menu {
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, #ff0000, #000000);
    padding: 0px 20px;
}

.menu {
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

nav {
    height: 100%;
}

nav > ul {
    height: 100%;
    display: flex;
}

nav > ul > li {
    height: 100%;
    list-style: none;
}

nav > ul > li:first-child > a {
    background-image: url(../images/logo-pagina-web-removebg-preview.png);
    background-size: 54px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 40px;
}

nav > ul > li:first-child:hover > a {
    background-image: url(../images/logo-pagina-web-removebg-preview.png);
    background-size: 54px;
    background-repeat: no-repeat;
    background-position: center center;
}

nav > ul > li > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 300ms ease;
    text-decoration: none;
}

nav > ul > li > a:hover {
    transform: scale(1.1);
    background: rgb(133, 0, 0);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

#selected {
    transform: scale(1.1);
    background-color: rgb(133, 0, 0);
    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;
}

#check__menu {
    display: none;
}

#label__check {
    width: 26px;
    height: 100%;
    display: none;
}


@media screen and (max-width: 720px) { /*Esto es como una condicional, cuando el tamaño de la pantalla llegue a estos pixeles va a ocurrir lo del menu de telefono*/
    .header__superior {
        padding: 10px;
    }

    .logo img {
        width: 200px;
    }

    nav > ul {
        flex-direction: column;
        background: rgb(133, 0, 0);
        position: fixed;
        left: 0;
        top: 70px; /*para aunmentar o disminuir la altura del menu pequeño*/
        width: 100%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    nav > ul > li > a:hover {
        transform: scale(1);
    }

    #selected {
        transform: scale(1);
    }

    #label__check {
        display: block;
    }

    .icon__menu {
        display: flex;
    }

    #check__menu:checked ~ nav > ul  {
        height: 300px;
        visibility: visible;
        opacity: 1;
    }
}


.contenedor {
  max-width: 800px;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.555);
}

h1 {
  color: rgb(176, 9, 9);
  text-align: center;
}

img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.info p {
  margin: 5px 0;
  font-size: 16px;
}
.tex{
    color: rgb(115, 0, 0);
}

.descripcion {
  margin-top: 15px;
  background-color: rgb(240, 165, 165);
  padding: 10px;
  border-left: 4px solid rgb(176, 9, 9);
}
.descripcion > li{
    list-style: none;
}

.boton-contactar {
    padding: 4px;
    font-size: 1rem;
    background: #ad0101;
    border-radius: 5px;
    border: 0px;
}

.boton-contactar > a {
    color: white;
}

.boton-contactar:hover {
    background: #570000;
}

footer {
    width: 100%;
    min-height: 100px;
    background: rgb(161, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.redes-sociales {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*margin 10px 4px*/
    /*flex-wrap wrap*/
}

.icono > img {
    width: 80px;
    height: 80px;
    transition: all 0.3s;
}

.icono > img:hover {
    transform: scale(1.2);
    transition: all 0.3s;
}

.menu {
    display: flex;
    font-size: 1.5rem;
    list-style: none;
}

.menu-elem {
    margin: 10px 10px;
}

.menu-icon {
    color: #a5cff0;

}

.textoFooter {
    color: white;
    font-size: 1.2rem;
}