* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 0;
}

body {
    width: 100%;
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFFF;
    height: 4.688rem;
    border-bottom: 1px solid #56B28033;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.75rem;
    font-size: 1em;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: #272727;
}

nav ul li {
    cursor: pointer;
}

.nav-topico a:hover {
    color: #56B280;
    transition: .2s;
}

div#nav-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

nav a {
    text-decoration: none;
    color: #272727;
}

main {
    width: 100%;
    height: 80vh;
}

#title-cart {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.125rem;
}

#title-cart h1 {
    font-family:'Poppins';
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 3.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: center;
    color: #272727;
}

#title-cart a {
    font-family: 'Roboto';
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: center;
    color: #56B280;
    text-decoration: underline;
}

div#table {
    margin: 0 auto;
    width: 60vw;
}

div#table-line-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    padding: 1em;
}

div#table-line-1 p, div#table-line-1 ul li {
    font-family: 'Roboto';
    font-size: 1em;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: left;
    color: #272727;
}

div#table-line-1 ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.25rem;
}

#table-line-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    padding: 1em;
}

#img-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#img-product > img {
    width: 10rem;
    background-color: #F7F8FA;
}

#txt-product {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

#txt-product h2 a {
    font-family: 'Poppins';
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 3.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: left;
    color: #272727;
    text-decoration: none;
}

#txt-product h2 a:hover {
    text-decoration: underline;
}


#txt-product a {
    font-family: 'Roboto';
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: left;
    color: #56B280;
    text-decoration: underline;
}

#table-line-2 ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6.25rem;
    font-family: 'Roboto';
    font-size: 1em;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: left;
    color: #272727;
}

#input-number {
    width: 50px;
    height: 30px;
    border: 1px solid #56B280;
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: center;
    color: #1D252C;
}

#input-number::-webkit-outer-spin-button, #input-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

div#table-line-3 {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 5.625rem;
    padding: 1em;
}

div#table-line-3 p {
    font-family: 'Roboto';
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: left;
    color: #272727;
}

#tax-txt {
    display: flex;
    justify-content: center;
    font-family: 'Roboto';
    font-size: 1em;
    font-weight: 400;
    line-height: 1.625rem;
    letter-spacing: -0.8999999165534973px;
    text-align: right;
    color: #9E9E9E;
}

div#table-line-3 button {
    width: 183px;
    height: 40px;
    border-radius: 4px;
    border: none;
    padding: 8px, 44px, 8px, 44px;
    background-color: #56B280;
    color: #fff;
    font-family: 'Roboto';
    font-size: 1.313rem;
    font-weight: 500;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
}

div#table-line-3 button a {
    text-decoration: none; 
    color: #fff;
}

div#table-line-3 button:hover {
    box-shadow: 1px 1px 15px #56B280;
    transition: .3s;
}

footer {
    width: 100%;
    background-color: #272727;
    padding: 2em;
}

div#footer-container {
    border-top: 1px solid #fff;
    background-color: #272727;
    display: flex;
    justify-content: space-around;
    padding: 3rem 3.5rem;
}

ul.footer-list h3 {
    font-family: 'Poppins';
    font-size: 1em;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
    color: #56B280;
}

div#footer-logo p {
    font-family: 'Poppins';
    font-size: 1em;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: -0.5px;
    text-align: left;
    color: #FFFFFF;
}

ul.footer-list a {
    font-family: 'Poppins';
    font-size: 1em;
    font-weight: 300;
    line-height: 29px;
    letter-spacing: 0px;
    text-align: left;
    text-decoration: none;
    color: #E1E1E1;
}
