@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,800;0,900;1,400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;

}

header {
    width: 100%;
    height: 60px;
    background: #f9ece4;
    color: #757575;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.contenedor {
    width: 98%;
    margin: auto;
}

______


#presentacion .titulo {
    width: 100%;
    height: 100%;
    position: relative;
    top: 50%;
    left: 40%;
    transform: translateX(-50%) translateY(-50%);
    color: rgb(49, 49, 49);
    text-align: left;
}

#presentacion .titulo h2 {
    font-weight: lighter;
    font-size: 50px;
}

#presentacion .titulo .nombre{
    color: rgb(230, 11, 118);
    font-style: normal;
}

#presentacion h2 {
    font-size: 100px;
}

_______

h2 .nombre {
    margin-top: 5px;
}

h1 {
    margin-top: 5px;
    margin-left: 10px;
    float: center;
    font-weight: 500;
    font-size: 24px;
    width: 40%;
}


h1:hover {
    color: #eb5744;
}

header .contenedor {
    display: table;
    float: right;
}

header .contactme {
    width: 50%;
    height: 60px;
}


#presentacion {
    width: 100%;
    text-align: center;
}

#presentacion .titulo {
    font-size: 50px;
    margin-top: 100px;
    justify-content: center;
    font-weight: 150px;
    float: center;
    color: #f7b599;
}

#presentacion .nombre {
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 0px;
    justify-content: center;
    font-weight: 50px;
    float: center;
    color: #bc9f8e;
}

#presentacion h3 {
    color: #2b2b2b;
    font-size: 18px;
    margin-top: 0px;
    justify-content: center;
    font-weight: lighter;
    float: center;
    margin-bottom: 50px;
}

.texto1 , .texto2 {
    float: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.texto2 {
    margin-top: 5px;
}

.typed {
    margin-top: 100px;
    padding-top: 30px;
    font-size: 50px;
    color: #2b2b2b;
}

.titulo {
    margin-top: 200px;
}


_____ MENÚ ________

.contenedor {
    width: 100%;
}

#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 28px;
    cursor: pointer;
    margin-top: 20px;
}

.menu {
    position: absolute;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    transform: translateX(-100%);
    background: #f9ece4;
    display: table;
    margin-top: 50px;
}

.menu a {
    display: block;
    color: rgba(68, 68, 68, 0.9);
    text-decoration: none;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.menu a:hover {
    background: #bc9f8e;
    color: #fff;
}

#menu-bar:checked ~ .menu {
    transform: translateX(0%);
}




@media (min-width:1024px) {
    .menu {
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
        margin-top: 0;
    }

    .menu a {
        border: none;
    }

    header label {
        display: none;
    }

    .material-icons {
        display: none;
    }
}

______ SERVICIOS ______

#servicios {
    background: #f9ece4;
    width: 90%;
    margin: auto;
    margin-top: 200px;
    padding: 40px;
    text-align: center;
    height: 500px;
}

#servicios .material-icons {
    font-size: 50px;
    color: #a87866;
}

#servicios h3 {
    font-size: 20px;
    font-weight: 350;
    color: #2b2b2b;
}

#servicios h4 {
    font-size: 16px;
    font-weight: lighter;
    color: #2b2b2b;
}


#servicios .flyer {
    width: 100%;
    padding: 20px;
    text-align: center;
    justify-content: center;
}

#servicios .editorial {
    width: 100%;
    padding: 20px;
    text-align: center;
    justify-content: center;
}

#servicios .web {
    width: 100%;
    padding: 20px;
    text-align: center;
    justify-content: center;
}

#servicios .branding {
    width: 100%;
    padding: 20px;
    text-align: center;
    justify-content: center;
}


@media(min-width:480px) {

    h1 {
        width: 80%;
    }
}

@media(min-width:1024px) {
    
    #servicios .material-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        }

    #servicios {
        background: #f9ece4;
        display: flex;
        justify-content: center;
        flex-direction: row;
        margin-top: 50px;
        height: 230px;
    }
}


______ GALERIA _______


#galeria .titulogaleria {
    padding: 10px;
    padding-bottom: 10px;
    margin: auto;
}

#galeria .titulogaleria h1{
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

#galeria img {
    width: 100%;
}



#galeria .row {
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#galeria .contenedor figure {
    position: relative;
    overflow: hidden;
}

#galeria .contenedor figure img {
    transition: all 500ms ease-out;
}

#galeria .contenedor figure .texto {
    position: absolute;
    top: 0%;
    width: 100%;
    height: 100%;
    background: rgba(168, 120, 102, 0.8);
    transition: all 500ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

#galeria .contenedor figure:hover > .texto {
    opacity: 1;
    visibility: visible;
    padding: 3em 3em;
}

#galeria .contenedor figure:hover > .texto h3{
    margin-top: 40%;
    margin-bottom: 15px;
    font-size: 30px;
    border-top: 3px solid rgba(252,224,215, 0.8);
}

#galeria .contenedor figure .texto h3 {
    color: rgb(252, 224, 215);
    font-weight: 600;
    margin-bottom: 130px;
    transition: all 500ms ease-out;
    margin-top: 150px;
}

#galeria .contenedor figure .texto p {
    color: rgb(252, 224, 215);
    font-size: 20px;
    line-height: 1.5px;
    width: 100%;
    margin: auto;
}

#galeria .contenedor figure:hover img {
    transform: scale(1.2);
}





#galeria .column {
    flex: 50%;
    padding: 5px;
}

#galeria .column img {
    margin-top: 5px;
    margin-bottom: 5px;
}


#galeria img:hover{
    cursor: pointer;
    opacity: 0.3;

}


@media (max-width:480px) {
    #galeria .column {
        flex: 100%;
        padding: 5px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #galeria img {
        width: 100%;
        flex: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width:780px) {
    #galeria .column {
        flex: 50%;
        width: 50%;
        padding: 5px;
    }
}

@media (min-width:1024px) {

    #galeria .titulogaleria {
        margin-top: 100px;
    }
    #galeria .column {
        flex: 20%;
        padding: 5px;
        width: 33,3%;
        display: flex;
        flex-wrap: wrap;
    }  

    #galeria img {
        width: 33,33%;
    }
}
