@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    text-decoration: none;
    overflow-x: hidden;
    font-family: Chivo;
}
/* Slider */
.slide-container {
    width: 100vw;
    height: 50vh;
    margin: 5rem 0;
    overflow: hidden;
    position: relative;
}

.image-container {
    width: 300vw;
    height: 100vh;
    display: flex;
    animation: slideAnimation 35s infinite ease-in-out;
    animation-play-state: running;
}

.slider-image {
    width: 100vw;
    height: 100%;
    object-fit: contain;
}

.button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-button {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background-color: #888;
}

.slider-button:hover ~ .image-container {
    animation-play-state: paused;
}

.image-container:hover {
    animation-play-state: running;
}

#slider-image1:target ~ .image-container {
    animation: none;
    transform: translateX(0);
}

#slider-image2:target ~ .image-container {
    animation: none;
    transform: translateX(-100vw);
}

#slider-image3:target ~ .image-container {
    animation: none;
    transform: translateX(-200vw);
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }

    33.33% {
        transform: translateX(-100vw);
    }

    66.66% {
        transform: translateX(-200vw);
    }

    100% {
        transform: translateX(0);
    }
}

/* Nav bar */
nav {
    width: 100vw;
    height: 100px;
    display: flex;
    padding: 0 16px;
    align-items: center;
}

.nav-logo {
    display: flex;
    overflow: hidden;
    margin-bottom: -28px;
}

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

.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;
}

ul {
    display: flex;
    gap: 3rem;
}

.links {
    font-family: 'poppins';
    font-weight: 500;
}

.links p {
    color: #303031;
}

.links-selected {
    font-family: 'poppins';
    font-weight: 600;
}

.links-selected p {
    background: linear-gradient(75deg, #ffab0f, #ff1997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.links p {
    font-size: 20px;
}

.blur {
    margin-top: 20px;
    background: linear-gradient(45deg, #ff9100, #ae00ff, #ffbb00, #ff0077, #ff9100, #ff0077, #7700ff, #ff3c00);
    height: 6px;
    width: 350vw;
    animation: slideAnimation 5s infinite ease-in-out;
    animation-play-state: running;
}

.space {
    height: 60px;
}

.acesse {
    background: linear-gradient(45deg, #ff9100, #ae00ff, #ff8800);
    background-size: 450%;
    padding: 16px 80px;
    border-radius: 8px;
    transition: 3s;
    color: #fff;
}

.acesse:hover {
    background-position: 100%;
}

.bot {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.box-desc {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 16px;
    box-shadow: 5px 5px 15px #881fff;
    border-radius: 12px;
    transition: 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.box-desc:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: -5px -5px 15px #ff1997;
}

.box-desc img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.produtos .content {
    width: 100%;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    overflow: hidden;
}

.desc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    width: 300px;
    height: 300px;
    position: relative;
    padding: 16px;
    box-shadow: 5px 5px 15px #881fff;
    border-radius: 12px;
    transition: 2s;
}

.box:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: -5px -5px 15px #ff1997;
}

.produtos .content {
    width: 1076px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.normal {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 85px;
}

.normal .content .box img {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.content{
    display: flex;
    justify-content: space-between;
}

/* Estilo Geral do Footer */
.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 li{
    width: 200px;
}

.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;
}

.mo{
    text-align: center;
    font-size: 50px;
}

.mo2{
    text-align: center;
    font-size: 50px;
    margin-bottom: 20px;
}