@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Diphylleia&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Passion+One:wght@400;700;900&family=Sriracha&family=Yuji+Mai&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #b8b8b8;
    color: #333;
    min-height: 100vh;
}

.cabecalho {
    padding: 2rem;
}

.logo-pequeno {
    font-size: 1rem;
    color: #363636;
}

.conteudo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.secao-principal {
    margin-bottom: 4rem;
}

.titulo {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.marca-registrada {
    font-size: 1.5rem;
    vertical-align: super;
}

.descricao {
    max-width: 600px;
    color: #363636;
    line-height: 1.6;
    margin-top: 2rem;
}

.rodape {
    margin-top: 4rem;
    color: #666;
    font-size: 0.9rem;
}

.botao-produtos {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botao-produtos:hover {
    background-color: #444;
}

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

.cartao-produto {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cartao-produto:hover {
    transform: translateY(-5px);
}

.imagem-produto {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.info-produto {
    padding: 1.5rem;
}

.info-produto h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-produto p {
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .titulo {
        font-size: 3rem;
    }
    
    .produtos-destaque {
        grid-template-columns: 1fr;
    }
}