/* ───── Reset e Fonte ───── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    padding-top: 80px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* ───── Plano de fundo desfocado ───── */
.background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: url('/static/img/bg.jpg') no-repeat center center / cover;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.5;
}

/* ───── Navbar ───── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    color: #222;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.whatsapp-link {
    background-color: #25d366;
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #1ebe57;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-link::before {
    content: '📱';
    font-size: 1.1rem;
}

/* ───── Container e Card ───── */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 3.5rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease 0.3s forwards;
}

.card h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
}

.card h2 {
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.card p {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: .9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp::before {
    content: '📞';
    font-size: 1.25rem;
}

.produtos-lista-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.produtos-titulo {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.produto-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.produto-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.produto-imagem {
    flex: 0 0 180px;
    height: 120px;
    background-color: #e0e0e0;
    border-radius: 12px;
    margin-right: 1.5rem;
    background-image: url('/static/img/bg.jpg'); /* opcional: placeholder */
    background-size: cover;
    background-position: center;
}

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

.produto-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    color: #222;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #444;
}

.section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    color: #444;
    line-height: 2;
}

.section p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
}

.section.contato {
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.footer {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
}

.footer-content p {
    margin: 0;
    line-height: 1.6;
}

.hamburger {
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    user-select: none;
}

/* Navbar padrão */
.nav-links {
    display: flex;
    gap: 1.2rem;
}

/* Estilo para mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

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

    .nav-links a,
    .whatsapp-link {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


/* Responsivo */
@media (max-width: 768px) {
    .produto-item {
        flex-direction: column;
        text-align: center;
    }

    .produto-imagem {
        width: 100%;
        height: 160px;
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 600px) {
    .footer {
        font-size: 0.85rem;
        padding: 1.5rem 1rem;
    }
}


/* ───── Animações ───── */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ───── Responsivo ───── */
@media (max-width: 600px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .card {
        padding: 2rem 1.2rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .nav-links a,
    .whatsapp-link {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 1.5rem;
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-content p {
        line-height: 1.4;
    }
}


.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 600px) {
    .container {
        padding: 30px 16px;
    }
}