html {
    scroll-behavior: smooth;
}
body {
    font-family: Segoe UI;
    color: #0f3f6b;
}
.productotemplate__barra {
    display:block ;
    justify-content: center;
    margin-top: 70px;
}
.productotemplate__botones {
    display: flex;
    flex-grow: 4;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
}
.productotemplate__link {
    flex-grow: 1;
    max-width: 100px;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
    color: #7e9bb8;
    transition-property: outline, border-radius;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.productotemplate__link:hover {
    outline: 1px solid #0f3f6b;
    border-radius: 5px;
    color: #0f3f6b;
}
.productotemplate__vacio {
    flex-grow: 1;
    flex-basis: 70px;
}
.productotemplate__contenedor {
    width: 800px;
    justify-self: center;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 0 10px #0003;
}
.productotemplate__tecnica,.productotemplate__modelo {
    width: 400px;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.productotemplate__tecnica {
    background-color: #edf0f5;
}
.productotemplate__datos {
    flex-grow: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.productotemplate__planos {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.productotemplate__titulo {
    font-size: 3.5em;
    font-weight: 200;
    margin: 10px;
    flex-grow: 2;
}
.productotemplate__lista {
    list-style: none;
    margin: 15px;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-items: end;

}
.productotemplate__lista--titulo, .productotemplate__lista--precio, .productotemplate__lista--tipo, .productotemplate__lista--envio {
    font-weight: 200;
    font-size: 1em;
    list-style: none;
    margin:0;
    margin-top: 5px;
    margin-bottom: 5px;
    flex-grow: 1;
}
.productotemplate__lista--tipo {
    font-size: 1.2em;
    font-weight: 400;
}
.productotemplate__lista--precio {
    font-size: 1.6em;
    font-weight: 400;
    flex-grow: 1;
    padding-top: 10px;
    margin-bottom: 0;
    border-top: 1px solid #0f3f6b;
}
.productotemplate__lista--titulo {
    flex-grow: 3;
}
.productotemplate__lista--envio {
    font-weight: 400;
    font-style: italic;
    margin-top: 0;
}
.productotemplate__modelo {
    overflow: hidden;
    width: 400px;
}
.productotemplate__foto {
    margin: 0;
    padding: 0;
    width: 400px;
    height: 400px;
}
.productotemplate__imagen {
    width: 400px;
    height: auto;
    flex-grow: 1;
}
.productotemplate__descripcion {
    font-size: 1.1em;
    line-height: 2.7ch;
    font-weight: 200;
    background-color: #d8e4f3;
    flex-grow: 1;
    padding: 20px;
    text-wrap: balance;
}
.productotemplate__descripcion p {
    margin-bottom: 15px;
}
.productotemplate__imagen--plano{
    width: 380px;
    height: auto;
    margin: 10px;
}
.productotemplate__album {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 0;
}
.productotemplate__album, .productotemplate__album--imagen {
    max-width: 800px;
}

@media screen and (max-width: 500px) {
    .productotemplate__link {
        font-size: 0.8em;
    }
    .productotemplate__vacio {
        flex-basis: 30px;
    }
    .productotemplate__contenedor {
        width: 340px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 40px;
    }
    .productotemplate__tecnica, .productotemplate__modelo{
        width: 340px;
        min-height: 600px;
    }
    .productotemplate__tecnica {
        display: block;
    }
    .productotemplate__datos {
        min-height: 300px;
    }
    .productotemplate__titulo {
        font-size: 2.5em;
        flex-grow: 1;
    }
    .productotemplate__lista--titulo {
        font-size: 1em;
    }
    .productotemplate__lista--tipo{
        font-size: 1.5em;
    }
    .productotemplate__planos {
        width: 340px;
        height: auto
    }
    .productotemplate__imagen--plano {
        width: 320px;
        height: auto;
        margin: 10px;
    }
    .productotemplate__imagen, .productotemplate__foto {
        max-width: 340px;
        height: 340px;
    }
    .productotemplate__album, .productotemplate__album--imagen {
        max-width: 340px;
        height: auto;
    }
}




