* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Teko", sans-serif, 'Poppins';
    background: #ffffff;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
}

#menuBtn {
    font-size: 34px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }

    .nav-toggle {
        display: block;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #009688;
    padding-top: 100px;
    transition: .3s ease;
    z-index: 998;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 30px;
}

.mobile-menu a {
    color: white;
    font-size: 24px;
    font-family: "Teko", sans-serif;
    text-decoration: none;
}

.mobile-menu.open {
    right: 0;
}

.navbar {
    width: 100%;
    background: #009688;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.nav-content {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 110px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: "Teko", sans-serif;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.produtos-section {
    padding: 160px 20px 50px 0;
    text-align: center;
}

.produtos-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #000;
    text-transform: uppercase;
}

.produtos-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
    font-family: "Instrument Sans", sans-serif;
}

/* Carrossel */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.produto-card {
    min-width: 300px;
    padding: 0 35px;
}

.produto-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.produto-link:hover {
    transform: translateY(-8px);
}

.produto-link img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.produto-link h3 {
    margin: 12px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #222;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    background: transparent;
    color: #000000;
    border: none;
    font-size: 50px;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn.prev {
    left: 40px;
}

.carousel-btn.next {
    right: 40px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .produto-card {
        min-width: 260px;
        flex: 0 0 260px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .produtos-section {
        padding: 100px 15px;
    }

    .carousel-track {
        gap: 20px;
    }

    .produto-card {
        min-width: 240px;
        flex: 0 0 240px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
        background: rgba(255, 255, 255, 0.95);
        top: 90%;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        gap: 15px;
    }

    .produto-card {
        min-width: calc(100vw - 80px);
        flex: 0 0 calc(100vw - 80px);
    }

    .carousel-btn {
        top: 100%
    }

    .produtos-section h2{
        margin-top: 40px;
    }
}

.fixed-icons {
    position: fixed;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 9999;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

footer {
    background-color: #029686;
    color: #ffffff;
    padding: 70px 10%;
    position: relative;
    overflow: hidden;
    font-family: "Instrument Sans", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/* Estrutura principal */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Lista de links */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Logo */
.logo-footer {
    justify-content: flex-start;
    max-width: 70px;
}

.logo-pitinin-footer {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-section .logo img:hover {
    transform: scale(1.05);
}

/* Linha inferior */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    footer {
        padding: 50px 5%;
    }

    nav {
        position: absolute;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .navbar {
        gap: 10px;
    }

    .logo h1 {
        max-width: 1000px;
    }
}