@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins;
    font-size: 20px;
}

body {
        background-color: #fff;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

img {
    object-fit: cover;
}
    
.header {
        background-color: #1b3039;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 85px;
        padding: 5px 10px;
    }
    
.header .logo{
        cursor: pointer;
        margin-right: auto;
    }
    
.header .logo img {
        height: 70px;
        width: auto;
        transition: all 0.3s;
    }
    
.header .logo img:hover{
        transform: scale(1.2);
    }
    
.header .nav-links{
        list-style: none;
    }
    
.header .nav-links li{
        display: inline-block;
        padding: 0 20px;
    }
    
.header .nav-links li:hover{
        transform: scale(1.1);
    }
    
.header .nav-links a{
        font-size: 700;
        color: #eceff1;
        text-decoration: none;
    }
    
.header .nav-links li a:hover{
        color: #ffbc0c;
    }
    
.header .btn button {
        margin-left: 20px;
        font-weight: 700;
        color: #1b3039;
        padding: 9px 25px;
        background: #eceff1;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease 0s;
    }
    
.header .btn button:hover {
        background-color: #eceff1;
        color: #ffbc0c;
        transform: scale(1.1);
    }
/* Seccion de Inicio */
    
.section-inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-inicio-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-inicio-2{
    display: flex;
    flex-direction: column;
    width: 400px;
    margin: 50px;
}
.div-inicio-2 h1 {
    margin-bottom: 20px;
    font-size: 30px;
}

.imagen-casa {
    width: 90vw;
    height: 100vh;
    margin-top: 50px;
    object-fit: contain;
}

.imagen-casa-interior {
    width: 40vw;
    height: 70vh;
    margin-top: 40px;
    object-fit: contain;
}


.div-h2 {
    text-align: center;
    margin-top: 100px;
}
.div-h2 h2 {
    font-size: 40px;
}

.div-section-3 {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    margin-bottom: 100px;
}

.div-section-3 p {
    font-size: 25px;
    font-weight: 700;
    color: #dd882f;
}

    
/* Servicios */


.service-div{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 10vh;
    margin-bottom: 40px;
}

.seccion-servicios, .seccion-servicios-2 {
    display: flex;
    justify-content: space-between;
}
.div-fotos{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 100px;
    margin-left: 50px;
}
.div-servicios p {
    margin-top: 30px;
    font-weight: bold;
}
.img-servicios {
    width: 500px;
    height: 450px;
    object-fit: cover;
}
.seccion-servicios-2 {
    margin-top: 50px;
    margin-bottom: 30px;
}
/* Fin de Servicios */
/* Trabajos */


.seccion-videos, .seccion-videos-2 {
    display: flex;
    justify-content: space-between;
}

.div-videos {
    margin: auto;
}
.videos {
    width: 500px;
    height: 500px;
    object-fit: cover;
}
.seccion-videos-2{
    margin-bottom: 50px;
}
/* Fin de Trabajos */

/* Contacto */

.div-container {
    background-color: #1b3039;
    margin-top: 20vh;
    width: 50vw;
    height: 80vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: auto;
    border-radius: 10px;
}

.div-contact {
    margin-top: auto;
    padding: 10px;
}

.div-contact p, .div-contact h1{
    color: white;
    font-size: 40px;
}

footer {
    display: flex;
    background-color: #1b3039;
    color: #fff;
    width: 100%;
    height: 60px;
    justify-content: space-evenly;
}

/* Responsive */



@media (max-width:975px)

{

/* CONTACTO */
    .div-container {
        min-width: 80vw;
        margin-top: 5vh;
        margin-bottom: 5vh;
    }
    .div-contact h1, .div-contact p {
        font-size: 20px;
    }
/* TRABAJOS */

.seccion-videos, .seccion-videos-2 {
    display: flex;
    flex-direction: column;
}

.div-videos video {
    width: 90vw;
}

/* SERVICIOS */

.seccion-servicios, .seccion-servicios-2{
    display: flex;
    flex-direction: column;
}
.div-fotos img {
    width: 90vw;
    object-fit: cover;
    margin-left: 40px;
}
.div-fotos p {
    margin-left: 30px;
}

/* INICIO */


.imagen-casa {
    width: 300px;
    height: 300px;
}


.imagen-casa-interior {
    width: 100vw;
    height: 300px;
}

.section-inicio-2 {
    display: flex;
    flex-direction: column;
}


.div-inicio-2 {
    width: 300px;
}
.div-section-3 {
    display: flex;
    flex-direction: column;
}

.div-section-3 p {
    font-size: 15px;
    margin-top: 10px;
    text-align: center;
}


.footer, .footer p {
    height: 70px;
    font-size: 10px;
    bottom: 0;
}
}