@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');

.links{
    font-family: Chivo;
}

body {
    margin: 0;
    font-family: Chivo, sans-serif;
    background-color: #f4f4f4;
}

/* Navegação */
nav {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-logo .logo {
    width: 80px;
    height: 80px;
}

.search {
    width: 30vw;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.search-button {
    padding: 6px;
    border: 2px solid #ccc;
    border-left: none;
    background-color: #fff;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.search-button img {
    width: 20px;
    height: 20px;
}


.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.links-selected p {
    color: #ff0077;
    font-weight: bold;
}

/* Página do Produto */
.product-page {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.product-container {
    display: flex;
    max-width: 1200px;
    gap: 50px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.product-image img {
    width: 350px;
    border-radius: 10px;
}

.product-details {
    max-width: 600px;
}

.product-details h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #303031;
}

.product-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    color: #ff0077;
    font-weight: bold;
    margin: 20px 0;
}

.buy-button {
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    background-color: #ff0077;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #ff1997;
}

.footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Rodapé inferior */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}
