* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #f9fafb;
    color: #1f2933;
}

/* HEADER */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #1f2933;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

nav a:hover {
    color: #2563eb;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav {
        display: flex;
        gap: 15px;
    }
    
@media (max-width: 480px) {
    nav a {
        margin-left: 0;
        font-size: 11px;
    }
}
}

/* HERO */
.hero {
    padding: 120px 20px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* BOTÃO */
.btn, .btn-produto {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 480px) {
    .btn, .btn-produto {
        padding: 12px 24px;
        font-size: 12px;
        margin-top: 20px;
    }
}

/* SEÇÕES */
.section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 20px;
    }
    
    .section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 15px;
    }
    
    .section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .section p {
        font-size: 14px;
    }
}

/* SERVIÇOS */
.servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    list-style: none;
    margin-bottom: 40px;
}

.servico {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.servico li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2933;
}

.servico img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* CONTATO */
#contato p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #1f2933;
    color: white;
    text-align: center;
    padding: 25px;
}

@media (max-width: 480px) {
    footer {
        padding: 20px 10px;
    }
    
    footer p {
        font-size: 12px;
        margin-bottom: 8px;
    }
}
.produto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}
.logo {
    width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px;
    }
}
/* FILTROS */
.filtros {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filtro {
    padding: 10px 25px;
    border: 1px solid #2563eb;
    background: white;
    color: #2563eb;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
}

.filtro.ativo,
.filtro:hover {
    background: #2563eb;
    color: white;
}

/* CONTAINER PRODUTOS */
.Produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .Produtos {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .Produtos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.produto {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.5s ease;
    overflow: hidden;
}

.produto:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .produto {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .produto {
        padding: 15px;
    }
}

.produto h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1f2933;
    font-weight: 600;
}

.produto p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

/* estado escondido */
.produto.escondido {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* estado visível */
.produto.visivel {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}