* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #2d6a4f; --primary-light: #40916c; --primary-dark: #1b4332;
  --secondary: #d8f3dc; --accent: #ffb703; --bg: #f8f9fa;
  --text: #1a1a2e; --text-light: #6c757d; --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,.08); --radius: 12px; --transition: .3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

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

/* Nav */
nav { background: var(--white); box-shadow: var(--shadow); position: fixed; width: 100%; top: 0; z-index: 1000; padding: 12px 0; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: .95rem; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 3px; background: var(--primary); border-radius: 3px; transition: var(--transition); }

/* Hero */
.hero { margin-top: 72px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); color: var(--white); padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom; background-size: cover; }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; position: relative; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; opacity: .9; max-width: 600px; margin: 0 auto 32px; position: relative; }
.hero-btns { display: flex; gap: 16px; justify-content: center; position: relative; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { background: #e6a400; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 183, 3, .3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* Sections */
.section { padding: 80px 0; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--primary-dark); text-align: center; margin-bottom: 8px; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 48px; font-size: 1.1rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); transition: var(--transition); text-align: center; border: 1px solid rgba(0,0,0,.04); }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.card-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.card h3 { font-size: 1.25rem; color: var(--primary-dark); margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: .95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid h2 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 16px; }
.about-grid p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }
.features-list { list-style: none; margin-top: 20px; }
.features-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.features-list li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 1.2rem; }
.about-img { background: var(--secondary); border-radius: var(--radius); height: 100%; min-height: 350px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }

/* Info Bar */
.info-bar { background: var(--primary); color: var(--white); padding: 24px 0; }
.info-bar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.info-item { padding: 12px; }
.info-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; opacity: .7; margin-bottom: 4px; }
.info-item span { font-size: 1.05rem; font-weight: 500; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .icon { font-size: 1.4rem; min-width: 36px; }
.contact-detail div strong { display: block; font-size: .85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.contact-detail div span { font-size: 1rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; color: var(--primary-dark); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { background: var(--primary); color: var(--white); padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Footer */
footer { background: var(--primary-dark); color: var(--white); padding: 40px 0 20px; }
footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
footer h4 { font-size: 1.1rem; margin-bottom: 16px; color: var(--accent); }
footer p, footer a { color: rgba(255,255,255,.7); font-size: .9rem; text-decoration: none; display: block; margin-bottom: 6px; }
footer a:hover { color: var(--white); }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-links a { background: rgba(255,255,255,.1); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition); margin-bottom: 0; }
.social-links a:hover { background: var(--accent); color: var(--primary-dark); }
.footer-bottom { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: rgba(255,255,255,.5); }

/* Alert */
.alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; display: none; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; background: #25d366; color: var(--white); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 16px rgba(37, 211, 102, .3); transition: var(--transition); z-index: 999; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, .4); }

/* Page Header */
.page-header { margin-top: 72px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 2.4rem; font-weight: 700; }
.page-header p { opacity: .85; margin-top: 8px; font-size: 1.1rem; }

/* Map */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 30px; }
.map-container iframe { width: 100%; height: 350px; border: 0; display: block; }

/* Horários */
.horarios { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.horarios table { width: 100%; border-collapse: collapse; }
.horarios td { padding: 10px 16px; border-bottom: 1px solid #eee; }
.horarios td:last-child { text-align: right; font-weight: 600; color: var(--primary); }

/* Hamburger active */
.nav-links.active { display: flex; }

/* Legal pages */
.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h2 { font-size: 1.3rem; color: var(--primary-dark); margin: 28px 0 12px; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text p { color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.legal-text ul { margin: 0 0 16px 20px; color: var(--text-light); }
.legal-text ul li { margin-bottom: 6px; line-height: 1.6; }
.legal-text a { color: var(--primary); }

/* Cookie banner */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--primary-dark); color: var(--white); padding: 16px 20px; z-index: 9999; display: none; box-shadow: 0 -4px 20px rgba(0,0,0,.15); }
.cookie-bar.show { display: block; }
.cookie-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-bar p { font-size: .9rem; flex: 1; min-width: 200px; }
.cookie-bar a { color: var(--accent); text-decoration: underline; }
.cookie-close { background: var(--accent); color: var(--primary-dark); border: none; padding: 8px 24px; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: .9rem; transition: var(--transition); white-space: nowrap; }
.cookie-close:hover { background: #e6a400; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.show { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 60px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow); }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 60px 0 50px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }
}
