:root {
    --main-color: #E6B68B;
    --white: #FFFFFF;
    --bg: #ADD8E6;
    --border: 0.1rem solid rgba(255,255,255,0.7);
    font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    border: none;
    transition: 0.2s linear;
}

body {
    background: url(./imgs/Fundo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: var(--border);
    font-family: "Playwrite IE", cursive;
    background-color: var(--bg);
}

section {
    padding: 1rem 2rem;
    margin: 0 auto;
    max-width: 1200px ;
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.logo img{
    width: 100px;
    height: auto;
}

.navbar a {
    margin: 0 1rem;
    font-size: 1.8rem;
    color: var(--white)
}

.navbar a:hover {
    cursor: pointer;
    color: var(--main-color);
    border-bottom: var(--border);
}
.icons img {
    margin: 1rem;
    cursor: pointer;

}

.icons img:hover {
    width: 55px;
    height: 55px;

}

.btn {
    background: var(--main-color);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.7rem;
    font-family: 'Times New Roman', Times, serif;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
}

.btn:hover {
    letter-spacing: 0.1rem;
}

.home-container section {
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.content {
    max-width: 60rem;
}

.content h3 {
    color: var(--white);
    font-size: 6rem;
    font-family: 'Times New Roman', Times, serif;
}

.content p {
    color: var(--white);
    font-size: 2rem;
    line-height: 1.5;
    padding: 1rem 0;
}

.about {
    margin-top: -70px;
}

.aboutimg img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.title {
    font-size: 6rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.title span {
    color: var(--main-color);
}

.about .row {
    display: flex;
    align-items: center;
    background-color: var(--bg);
    gap: 1.8rem;
    border: 3px solid white;
    border-radius: 10px;
    padding: 2rem;
}

.menu {
    margin-top: 100px;
}

.box .img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px; }

.box .tapete {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px; }

.box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    cursor: pointer;
}

.item {
    text-align: center;
    border: var(--border);
    padding: 5rem;
}

.item h3 {
    color: var(--white);
    font-family: "Playwrite IE", cursive;
    font-size: 2rem;
    padding: 1rem 0;
}

.item .price {
    color: var(--white);
    font-size: 2.5rem;
    font-family: 'Times New Roman', Times, serif;
    padding: 0.5rem 0;
}

.item .price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: 100;
    color: var(--main-color);
}

.item:hover {
    background-color: var(--white);
}

.item:hover>* {
    color: black;
}

.review {
    margin-top: 100px;
}

.box .person {
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}

.box .person p {
    font-size: 1.5rem;
    color: var(--white);
    padding: 2rem 0;
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
}

.box .person .foto {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
}

.box .person h3 {
    color: var(--main-color);
    font-family: "Playwrite IE", cursive;
    font-size: 1.5rem;
}

.address {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials {
    text-align: center;
}

.socials img {
    margin: 0.3rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
}
