* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
}

h1, h2, h3 {
    font-family: 'Fredoka', sans-serif; /* Fonte arredondada e amigável */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.secao {
    padding: 80px 0;
}

.titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff9f43;
}

/* Hero */
.hero {
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?q=80&w=2071&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.main-icon {
    font-size: 4rem;
    color: #ff9f43;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
}

.highlight {
    color: #ff9f43;
}

/* Galeria de Produtos */
.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.item-galeria {
    text-align: center;
}

.foto-placeholder {
    height: 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px dashed #ccc;
    margin-bottom: 15px;
    font-weight: bold;
    color: #999;
}

/* História */
.historia {
    background: #fff8f0;
}

.flex-historia {
    display: flex;
    align-items: center;
    gap: 50px;
}

.texto-historia {
    flex: 1;
}

.texto-historia h2 {
    font-size: 2.5rem;
    color: #ee5253;
    margin-bottom: 20px;
}

.historia-img {
    flex: 1;
    height: 400px;
}

/* Contato */
.contato {
    text-align: center;
    background: #ee5253;
    color: white;
}

.centralizar {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-zap {
    background: #25d366;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-zap:hover {
    transform: scale(1.05);
}

footer {
    padding: 30px;
    text-align: center;
    background: #222;
    color: #888;
}

footer span {
    color: #ff9f43;
}

/* Mobile */
@media (max-width: 768px) {
    .flex-historia {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 { font-size: 2.5rem; }
}