@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* CSS CATALOGO */
:root {
    --clr-main: #b6297798;
    --clr-white: #ececec;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    list-style: none;
}
ul {
    list-style-type: none;
}
.wrapper {
    display: grid;
    grid-template-columns: 1fr 4fr;
    background-color: var(--clr-main);
}
aside {
    padding: 2rem;
    padding-right: 0;
    color: var(--clr-white);
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.boton-menu {
    background-color: transparent;
    border: 0;
    color: var(--clr-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    padding: 1rem;
    font-size: .85rem;
    width: 100%;
}
.boton-menu.active {
    background-color: var(--clr-white);
    color: var(--clr-main);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    position: relative;
}
main {
    background-color: var(--clr-white);
    margin: 1rem;
    margin-left: 0;
    border-radius: 2rem;
    padding: 3rem;
}
.titulo-principal {
    color: var(--clr-main);
    padding: 1rem;
    margin-bottom: 2rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logocatalogo img{
    width: 250px;
 }

/* CSS CONTACTO */
 .container-form{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 50px;
    margin-top: 90px;
    padding: 1px;
}
.container-form h2{
    margin-bottom: 15px;
    font-size: 35px;
    color: rgb(153, 6, 141);
}
.container-form p{
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
    
}
.container-form a{
    font-size: 17px;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    margin-bottom: 15px;
    color: black;
    font-weight: 700;
}
.container-form a i{
    color: rgb(192, 71, 166);
    margin-right: 10px;
}
.container-form form .campo, textarea{
    width: 100%;
    padding: 10px 5px;
    font-size: 16px;
    border: 1px solid #dbdbdb;
    margin-bottom: 20px;
    border-radius: 3px;
    outline: 0px;
}
.container-form form textarea{
    max-width: 530px;
    min-width: 530px;
    min-height: 140px;
    max-height: 150px;
}
.mapouter{
    width: 100%;
    margin-bottom: 20px;
}




.container {
  max-width: 1200px;
  margin: 0 auto;

}
.header {
  background-image: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.4)),
    url(img/banner1.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 15vh;
    display: flex;
    align-items: center;
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.menu .navbar ul li{
  position: relative;
  float: left;
  
}

.menu .navbar ul li a {
  font-size: 18px;
  padding: 20px;
  color: #FFFDFC;
  display: block;
  font-weight: 600;
}
.menu .navbar ul li a:hover{
  color: #ce967b;

}

#menu{
  display: none;
}

.menu-icono{
  width: 25px;
}
.logo img{
   width: 110px;
}


.menu label{
  cursor: pointer;
  display: none;
}











