@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f9fafb;
    --primary: #2563eb;
    --whatsapp: #22c55e;
    --text: #111827;
    --muted: #6b7280;
}

/* Reset Geral - Mata o underline e limpa o visual */
* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none !important; }

body { 
    background-color: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container { width: 92%; max-width: 1400px; margin: 0 auto; }

/* NAVBAR PROFISSIONAL (O que estava faltando no seu) */
.navbar { 
    background: #ffffff; 
    padding: 20px 0; 
    border-bottom: 1px solid #e5e7eb; 
    position: sticky; top: 0; z-index: 1000;
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-weight: 800; font-size: 1.5rem; color: var(--text); letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

.search-pill {
    background: #f3f4f6; border: 1px solid #e5e7eb; padding: 10px 20px;
    border-radius: 50px; width: 300px; outline: none; transition: 0.3s;
}
.search-pill:focus { background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }

/* GRID RESPONSIVO */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 30px; 
    padding: 50px 0; 
}

/* CARDS FLUTUANTES */
.card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid #e5e7eb; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.card:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: var(--primary); }

.card-img { height: 180px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.card-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 25px; flex-grow: 1; }

/* BOTÕES OCULTOS (Surgem no Hover) */
.card-actions { 
    display: flex; gap: 10px; 
    opacity: 0; transform: translateY(10px); transition: 0.3s ease;
}

.card:hover .card-actions { opacity: 1; transform: translateY(0); }

.btn-demo {
    flex: 1; background: var(--primary); color: #fff; padding: 12px;
    border-radius: 12px; text-align: center; font-weight: 600; font-size: 0.85rem;
}

.btn-wa {
    width: 45px; height: 45px; background: var(--whatsapp); color: #fff;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-content { flex-direction: column; gap: 15px; }
    .search-pill { width: 100%; }
    .card-actions { opacity: 1; transform: none; } /* Sempre visível no toque */
}