* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.btn {
            background-color: #FAD6DC;
            color: #2a2a2a;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            font-family: 'Nunito Sans', sans-serif;
        }
        
        .btn:hover {
            background-color: #FFD95A;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
.btn-secondary {
            background-color: #A3C7F0;
        }

body {
    background-color: #FDFDFD;
    background-image: url('../imagens/index.jpg');
    color: #2a2a2a;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    padding-top: 70px;
}

/* NAVEGAÇÃO */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FAD6DC;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 1.5rem;
    color: #469BD7;
}

.nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    padding-top: 1rem;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    margin: 0.5rem 0;
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 800;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    font-family: 'Nunito Sans', sans-serif;
}

.nav-links a:hover {
    color: #469BD7;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #469BD7;
}

/* SEÇÃO DE PRODUTOS */
.products-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #469BD7;
    text-align: center;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
	max-width: 350px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.product-description {
    color: #5a5a5a;
    margin-bottom: 1rem;
    min-height: 60px;
    font-family: 'Nunito Sans', sans-serif;
}

.product-price {
    font-weight: 800;
    color: #FFD95A;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-family: 'Nunito Sans', sans-serif;
}

.product-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #A3C7F0;
    border-radius: 30px;
    overflow: hidden;
    background-color: #FDFDFD;
}

.quantity-btn {
    background-color: #FAD6DC;
    border: none;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 800;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #FFD95A;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 2px solid #A3C7F0;
    border-right: 2px solid #A3C7F0;
    padding: 0.5rem 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
}

.buy-btn {
    background-color: #469BD7;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.buy-btn:hover {
    background-color: #3a8bc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* MENSAGENS */
.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #ef9a9a;
    font-family: 'Nunito Sans', sans-serif;
}

.no-products {
    text-align: center;
    padding: 2rem;
    grid-column: 1 / -1;
    font-family: 'Nunito Sans', sans-serif;
    color: #2a2a2a;
    font-size: 1.2rem;
}

/* MODAL DE IMAGEM */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.modal-content {
    margin: 50px auto 20px;
    display: block;
    max-width: 90%;
    max-height: 70vh;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

.close-btn {
    display: block;
    margin: 0 auto 30px;
    padding: 12px 30px;
    background-color: #469BD7;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.close-btn:hover {
    background-color: #3a8bc7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    nav {
        padding: 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .products-section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 60vh;
    }
    
    .close-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
        padding-top: 0;
    }
    
    .nav-links a {
        margin-left: 2rem;
        margin-bottom: 0;
    }
}