* { /* V2.10 - 8:00am a 12:30 y de 2:00 a 5:00pm*/
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
	font-size: 62.5%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    /* font-family: "Poppins", sans-serif; */
	background-color: rgb(230, 240, 227);
}

header {
    display: flex;
    justify-content: center;
}

nav {
    text-align: center;
    width: 100%;
    height: max-content;
}

li {
    background: rgb(0, 105, 211);
    font-style: none;
    font-size: 2.2rem;
    height: max-content;
    color: white;
    list-style: none;
    display: flex;
    column-gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    border-radius: 1rem;
    height: 100%;
    padding: 1rem;
    color: white;
    transition: 0.35s ease-out;
    align-content: center;
}

a:hover {
    color: rgb(27, 28, 90);
    background: rgb(166, 189, 223);
}

.pages-div {
    background: transparent;
    display: flex;
    gap: 0.5rem;
}

/* EMPIEZA EL BODY */

.title {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    width: 100%;
    height: max-content;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    background-color: #ddd54f;
    h3 {
        font-size: 2.6rem;
        color: rgb(64, 50, 126)
    }

}

.services {
    display: flex;
    justify-content: center;
    background: rgb(166, 189, 223);
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.product {
    background: rgb(240, 240, 240);
    border: 0.250rem solid rgb(0, 105, 211);
    box-shadow: 0 0.7rem 0.2rem rgba(0, 0, 0, 0.6);
    width: 30%;
    min-width: 35rem;
    height: 52rem;
    max-height: 55rem;
    border-radius: 1.5rem;
    margin: 1rem;
    text-align: center;
    padding: 2.2rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    transition: 0.2s ease-out;

    h3 {
        font-size: 2.6rem;
        color: rgb(27, 28, 90);
    }

}

.product:hover {
    transform: scale(1.03);
    background: rgb(185, 197, 206);
    border: 0.2rem rgb(255, 255, 255) solid;

}

.info {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;

    a {
        padding: 0.7rem;
    }
}

.image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: 100%;
    max-height: 26rem;

    img {
        width: 100%;
        height: 100%;
        border-radius: 2rem;
        z-index: 1;
    }

    h3 {
       font-size: 2rem;
       color: white;
       background: rgb(0, 105, 211);
        width: 30%;
        border-radius: 1rem;
        margin-top: -3.2rem;
        padding: 0.5rem;
        z-index: 100;
    }
}

.span {
    font-size: 1.8rem;
    color: rgb(27, 28, 90);
    background: rgb(166, 189, 223);
    border-radius: 1rem;
    padding: 0.5rem;
    height: max-content;
}

.purchase {
    background: rgb(4, 185, 25);
    font-size: 2.4rem;
    transition: 0.35s ease-out;
    border: 0.2rem rgb(20, 67, 21) solid;
    height: 4.5rem;
    width: 100%;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.purchase:hover {
    color: rgb(4, 185, 25);
    background: rgb(255, 255, 255);
}
