/* Reset de márgenes y padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'ubuntu';
    color: #2e1b0d;
}

body{
    background-color: #fdcbd2;
}

/* enlace whatssap */
.wts{
    top: 20%;
    left: 62%;
    position: fixed;
    cursor: pointer;
    filter: drop-shadow(5px 5px 3px #356948);
    z-index: 10;
}

/* ------ texto sobre imagen ---------- */
.hero {
    display: flex;
    
    justify-content: center;
    height: 90vh;
    background: url(img/3.jpg) no-repeat center;
    object-fit: cover;
    background-attachment: fixed;
}

.hero-content {
    background-color: #fdcbd2ad;
    padding: 20px;
    border-radius: 30px;
    /* width: 100%; 
    height: 100%; */
    position: sticky;
    top: 10%;
    max-width: 600px;
    max-height: 30%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;

    
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.6em;
    line-height: 1.6;
}
/* ------------ presentacion --------- */
.container{
    min-height: 100vh;
    width: 60%;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
    repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    font-size: 30px;
}
.doc{
    margin: 15%;
    width: 70%;
    height: 70%;
    object-fit: cover;
    filter: drop-shadow(5px 5px 7px #614c4f);
}

.item{
    width: 100%;
    height:100%;
}

.item2{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding-bottom: 50px;
    color: rgb(233, 73, 45);
    font-size: 1.2em;
}

h3{
    color: #2e1b0d;
}
/* ----------- servicios ---------- */
.servicios{
    display: flex;
    column-gap: 20%;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    margin-bottom: 6%;
}

/* ------- maps ---------- */

.map{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    padding: 0 0 10% 0;
}

/* ------- footer ---------- */
/* footer {
    text-align: center;
    font-size: 14px;
    
    padding: 10% 0 5% 0;
} */

/* --------- responsive ------ */

@media (max-width: 600px) {
    .container{
        width: 100%;
    }
    .hero-content{
        border-radius: 0;
        width: 100%;
    }
    .servicios{
        flex-direction: column;
    }
    .wts{
        top: 30%;
        left: 80%;
    }
}



