/* Fuente y reset básico */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Contenedor principal */
.landing {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #000000;
}


/* Fondo por defecto (móvil) */
.landing {
    background-image: url(images/bg-proximamente-xs.jpg);
}

/* Contenido */
.content {
    max-width: 90%;
}

.logo {
    max-width: 150px;
    margin-top: 50px;
    margin-bottom: 20px;
}

h1 {
    font-family: "Quattrocento", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #693f15;
}

p {
    font-size: 1rem;
    color: #9f8060;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

/* Tablet vertical */
@media (min-width: 768px) and (max-width: 1024px) {
    .landing {
        background-image: url(images/bg-proximamente-md.jpg);
        align-items: flex-start; /* texto en la parte superior */
        padding-top: 60px;
    }
}

/* Escritorio */
@media (min-width: 1024px) {
    .landing {
        background-image: url(images/bg-proximamente-lg.jpg);
        justify-content: flex-end; /* texto en mitad derecha */
        padding-right: 60px;
    }
    .content {
        width: 50%;
    }
    .logo {
        width: 180px;
         max-width: 180px;
    }
    .landing {
        align-items: center;
   
    }
}

.icon-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width:80px;
    height: 80px;
}
.icon-whatsapp img {
    width: 100%;
    height: auto;
}

@media all and (min-width: 768px) {
    .icon-whatsapp {
        width: 100px;
        height: 100px;
        bottom: 40px;
        right: 40px;
    }
}
