/**
    Estils pel web: pianosclaror.com
    Fet per La Fleca Digital (www.laflecadigital.cat)
 */

 body {
    background:#000000;
    color:#d2d2d2;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

a { 
    color:#d2d2d2; 
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:hover,
a:active {
    color:#d2d2d2;
    text-decoration: underline;
}
a:visited { color:#eee; }

.contenidor {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1em;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logotip-empresa img {
    max-width: 250px;
}
h1 {
    font-size: 1.4em;
    color: #d2d2d2;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #8d8d8d;
    border-bottom: 1px solid #8d8d8d;
    padding-top: 20px;
    padding-bottom: 20px;
}
.lloguer-piano {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.lloguer-piano .descripcio {
    padding-top: 60px;
}
.lloguer-piano .descripcio h2 {
    font-size: 3em;
    color: #e6c666;
    font-weight: 600;
    line-height: 1.2em;
    margin-top: 40px;
}
.lloguer-piano .descripcio .cta {
    border: 1px dashed #e6c666;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    text-align: center;
    color: #e6c666;
    display: block;
}
.lloguer-piano .descripcio .cta:hover { 
    border: 1px solid #e6c666;
    color:#d2d2d2;
    text-decoration: none;
}
.lloguer-piano .descripcio .cta .boto { 
    display:block; 
    font-size: 1.2em;
    color:#d2d2d2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.lloguer-piano .descripcio .cta:hover .boto{ 
    color: #e6c666;
}

.lloguer-piano .especificacions span {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e6c666;
}
.lloguer-piano .especificacions ul { 
    list-style-type: square; 
    margin-bottom: 40px;
}

.altres-informacions {
    background-color: #e6c666;
    color: #1f1f1f;
    padding: 1.2em 2em 1.4em;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}
.altres-informacions span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.avis-legal { 
    padding-top: 40px;
    padding-bottom: 20px;
}
.avis-legal h2 { 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1em;
    color: #e6c666;
    font-weight: 400;
    margin-bottom: 16px;
    margin-top: 40px;
}
.avis-legal p { 
    margin: 0 0 1em; 
}

footer {
    margin: 2em 0em 1em;
    font-size: 0.8em;
    color: #d2d2d2;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #8d8d8d;
    padding-top: 2em;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 1.2em;
    }
    .lloguer-piano {
        flex-wrap: wrap;
    }
    .lloguer-piano .cont-text {
        order: 2;
    }
    .lloguer-piano .descripcio {
        padding-top: 0;
    }
    .lloguer-piano .descripcio h2 {
        font-size: 2em;
        margin-top: 0;
    }
    .lloguer-piano .fotografia {
        order: 1;
    }
    .lloguer-piano .fotografia img {
        max-width: 100%;
    }
    .avis-legal {
        padding-top: 0;
    }
    footer {
        flex-direction: column;
    }
    footer .drets {
        margin-bottom: 10px;
    }
}