/* assets/css/style.css */
* { box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; margin: 0; padding: 0; background-color: #fcfcfc; color: #333; line-height: 1.6; }

.public-header { background: #ffffff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eee; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 24px; font-weight: bold; color: #2c3e50; text-decoration: none; }
.nav-links a { margin-left: 20px; text-decoration: none; color: #555; font-weight: 500; transition: 0.3s; }
.btn-login { background: #34495e; color: white !important; padding: 8px 18px; border-radius: 5px; }

.hero { background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); color: white; padding: 80px 20px; text-align: center; }
.hero h2 { font-size: 2.5rem; margin: 0; }

.container-public { max-width: 1100px; margin: 50px auto; padding: 0 20px; }

/* Planos e Preços */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 40px 0; }
.price-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid #eee; text-align: center; transition: 0.3s; }
.price-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.price-card h4 { color: #3498db; font-size: 1.5rem; margin: 10px 0; }
.price-card .price { font-size: 2rem; font-weight: bold; margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin-bottom: 20px; color: #666; }

/* Formulário de Lead */
.card-lead { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; border-top: 5px solid #27ae60; }
.card-lead input { padding: 15px; width: 300px; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 10px; }
.card-lead button { padding: 15px 30px; background: #27ae60; color: white; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; }

footer { background: #2c3e50; color: white; padding: 30px; text-align: center; margin-top: 50px; }
.msg-sucesso { background: #d4edda; color: #155724; padding: 15px; border-radius: 5px; text-align: center; margin-bottom: 20px; }