/* Fora Multas — design system */
:root {
  --navy: #0E1B2E;
  --navy-2: #16283F;
  --green: #2FAE4A;
  --green-dark: #1F8C38;
  --green-light: #5FC168;
  --bg: #FFFFFF;
  --bg-alt: #F4F7F9;
  --text: #1B2430;
  --muted: #5B6472;
  --border: #E4E8EE;
  --shadow: 0 10px 30px rgba(14,27,46,.08);
  --radius: 14px;
  color-scheme: light;
}
:root { padding-top: env(safe-area-inset-top, 0px); padding-bottom: env(safe-area-inset-bottom, 0px); }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; color: var(--navy); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; }
p { line-height: 1.7; color: var(--muted); margin: 0 0 1em; }
a { color: var(--green-dark); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.bg-alt { background: var(--bg-alt); }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-dark); margin-bottom: .5em; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; justify-content: center; padding: .85em 1.6em; border-radius: 999px; font-weight: 600; font-size: .95rem; border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-wa { background: var(--green-light); color: #fff; }
.btn-wa:hover { background: var(--green); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(47,174,74,.3); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--navy); }
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }
.btn-header-wa { background: var(--navy); color: #fff; padding: .6em 1.3em; font-size: .88rem; }
.btn-header-wa:hover { background: var(--navy-2); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 0 20px; height: 74px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.main-nav { display: none; align-items: center; gap: 1.6rem; margin-left: 1rem; flex: 1; }
.nav-link { font-weight: 600; font-size: .92rem; color: var(--navy); display: inline-flex; align-items: center; gap: .3em; background: none; border: none; cursor: pointer; padding: .3em 0; }
.nav-link:hover, .nav-link.is-active { color: var(--green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--navy); border-radius: 10px; padding: .5rem; min-width: 220px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: .6em .8em; border-radius: 6px; color: #dfe6ee; font-size: .9rem; font-weight: 500; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--green-light); }
.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; padding: 1rem 20px 1.4rem; border-top: 1px solid var(--border); }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: .7em 0; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); }
@media (min-width: 960px) {
  .main-nav { display: flex; }
  .btn-header-wa { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}
@media (max-width: 959px) {
  .btn-header-wa { display: none; }
}

/* Hero */
.hero {
  background:
    radial-gradient(120% 140% at 8% -10%, rgba(95,193,104,.35) 0%, rgba(95,193,104,0) 45%),
    radial-gradient(90% 120% at 100% 0%, rgba(47,174,74,.28) 0%, rgba(47,174,74,0) 50%),
    linear-gradient(160deg, #1E4A2C 0%, #123420 55%, #0A1F13 100%);
  background-size: 100% 100%, 100% 100%, 220% 220%;
  animation: hero-gradient-shift 14s ease-in-out infinite;
  color: #fff;
  padding: clamp(2.6rem,5.5vw,4.4rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@keyframes hero-gradient-shift {
  0%, 100% { background-position: 0% 0%, 0% 0%, 0% 30%; }
  50% { background-position: 0% 0%, 0% 0%, 100% 70%; }
}
@media (prefers-reduced-motion: reduce) { .hero { animation: none; } }
.hero-inner { max-width: 680px; position: relative; z-index: 2; }
.hero .eyebrow { color: var(--green-light); }
.eyebrow--hero { display: inline-flex; align-items: center; gap: .5em; background: rgba(255,255,255,.08); border: 1px solid rgba(95,193,104,.35); padding: .5em 1em; border-radius: 999px; backdrop-filter: blur(6px); }
.hero h1 { color: #fff; margin-top: .7em; text-shadow: 0 2px 24px rgba(0,0,0,.2); }
.hero p.lead { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.btn-outline--hero { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); color: #fff; backdrop-filter: blur(6px); }
.btn-outline--hero:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); color: #fff; }
.hero-trust { display: flex; gap: 1.6rem; margin-top: 1.8rem; flex-wrap: wrap; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust div { color: rgba(255,255,255,.75); font-size: .85rem; }
.hero-trust strong { display: block; color: #fff; font-size: 1.35rem; font-family: 'Poppins', sans-serif; }

/* Hero decorative layers */
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.hero-glow--a { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; top: -18%; right: -10%; background: radial-gradient(circle, rgba(95,193,104,.5) 0%, rgba(95,193,104,0) 70%); animation: hero-drift-a 11s ease-in-out infinite; }
.hero-glow--b { width: 30vw; height: 30vw; max-width: 420px; max-height: 420px; bottom: -15%; left: -6%; background: radial-gradient(circle, rgba(47,174,74,.4) 0%, rgba(47,174,74,0) 70%); animation: hero-drift-b 13s ease-in-out infinite; }
.hero-glow--c { width: 22vw; height: 22vw; max-width: 320px; max-height: 320px; top: 30%; left: 42%; background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 70%); animation: hero-drift-a 15s ease-in-out infinite reverse; }
.hero-grid { position: absolute; inset: 0; z-index: 1; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(120% 100% at 20% 0%, #000 0%, transparent 75%); }
@keyframes hero-drift-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-8%,9%) scale(1.15); } }
@keyframes hero-drift-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(9%,-7%) scale(1.18); } }

/* Floating particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particle { position: absolute; bottom: -10%; border-radius: 50%; background: rgba(95,193,104,.55); filter: blur(1px); animation: hero-particle-float linear infinite; }
.hero-particle:nth-child(1) { left: 8%; width: 6px; height: 6px; animation-duration: 9s; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 20%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 1.5s; background: rgba(255,255,255,.5); }
.hero-particle:nth-child(3) { left: 34%; width: 8px; height: 8px; animation-duration: 10.5s; animation-delay: 3s; }
.hero-particle:nth-child(4) { left: 52%; width: 5px; height: 5px; animation-duration: 8s; animation-delay: .8s; background: rgba(255,255,255,.4); }
.hero-particle:nth-child(5) { left: 68%; width: 7px; height: 7px; animation-duration: 13s; animation-delay: 4s; }
.hero-particle:nth-child(6) { left: 80%; width: 4px; height: 4px; animation-duration: 9.5s; animation-delay: 2.2s; background: rgba(255,255,255,.5); }
.hero-particle:nth-child(7) { left: 92%; width: 6px; height: 6px; animation-duration: 11.5s; animation-delay: 5s; }
@keyframes hero-particle-float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: .8; }
  90% { opacity: .5; }
  100% { transform: translateY(-70vh) translateX(20px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) { .hero-glow, .hero-particle { animation: none; } }
@media (max-width: 640px) { .hero-glow--c { display: none; } .hero-particle:nth-child(n+5) { display: none; } }

/* Feature 3-up */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1rem; }
.feature-card { background: var(--bg-alt); border-radius: var(--radius); padding: 1.8rem; }
.feature-card.is-accent { background: var(--navy); color: #fff; }
.feature-card.is-accent h3, .feature-card.is-accent p { color: #fff; }
.feature-card.is-accent p { color: rgba(255,255,255,.78); }
@media (min-width: 760px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

/* Quem somos preview */
.about-preview { display: grid; grid-template-columns: 1fr; gap: 2.4rem; align-items: center; }
.about-preview img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (min-width: 860px) { .about-preview { grid-template-columns: 1.1fr .9fr; } .about-preview.rev { grid-template-columns: .9fr 1.1fr; } .about-preview.rev .about-preview-media { order: 2; } }

/* Services grid */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.8rem; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
a.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.is-active { border-color: var(--green); }
.service-card--soft { opacity: .85; }
.service-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(47,174,74,.1); color: var(--green-dark); display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.service-card h3 { font-size: 1.02rem; margin-bottom: .35em; }
.service-card p { font-size: .88rem; margin: 0; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* Process steps */
.process-steps { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 1.8rem; }
.process-step { position: relative; padding-left: .2rem; }
.process-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.2rem; color: rgba(47,174,74,.25); display: block; }
@media (min-width: 760px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

/* Deferimentos */
.defer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.6rem; }
.defer-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.defer-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
@media (min-width: 760px) { .defer-grid { grid-template-columns: repeat(4, 1fr); } }

/* Testimonials */
.testi-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.4rem; margin-bottom: 1.8rem; }
.testi-badge { display: flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: .8rem 1.1rem; }
.testi-badge-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 1px; }
.testi-badge-text { font-size: .82rem; color: var(--muted); }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.testi-stars { color: #FBBF24; letter-spacing: 2px; margin-bottom: .6em; font-size: .9rem; }
.testi-card p { font-size: .9rem; color: var(--text); }
.testi-name { font-weight: 700; color: var(--navy); font-size: .88rem; }
.testi-src { font-size: .76rem; color: var(--muted); }
@media (min-width: 700px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* FAQ accordion */
.faq-list { max-width: 820px; margin-top: 1.6rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: none; border: none; text-align: left; padding: 1.1em 0; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem; color: var(--navy); cursor: pointer; }
.faq-chevron { flex-shrink: 0; transition: transform .2s ease; color: var(--green-dark); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding-bottom: 1.1em; margin: 0; font-size: .92rem; }

/* CTA final */
.cta-final {
  background:
    radial-gradient(70% 140% at 90% 0%, rgba(95,193,104,.3) 0%, rgba(95,193,104,0) 55%),
    linear-gradient(160deg, #1E4A2C 0%, #0F2A19 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-final h2 { color: #fff; max-width: 700px; margin: 0 auto .4em; position: relative; z-index: 1; }
.cta-final p { color: rgba(255,255,255,.8); margin-bottom: 1.6em; position: relative; z-index: 1; }
.cta-final .btn { position: relative; z-index: 1; }

/* Breadcrumbs */
.breadcrumbs { padding: 1rem 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4em; margin: 0; padding: 0; font-size: .82rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--green-dark); }
.breadcrumbs .sep { color: var(--border); }
.breadcrumbs li[aria-current] { color: var(--navy); font-weight: 600; }

/* Inner page hero (service/legal pages) */
.page-hero { background: var(--bg-alt); padding: 2.2rem 0 2.6rem; }
.page-hero h1 { margin-bottom: .3em; }
.page-hero .lead { font-size: 1.02rem; max-width: 700px; }

/* Generic content typography (service pages / post article) */
.prose h2 { margin-top: 1.6em; font-size: 1.4rem; }
.prose h3 { margin-top: 1.3em; font-size: 1.12rem; }
.prose p { font-size: 1rem; color: var(--text); }
.prose ul, .prose ol { padding-left: 1.3em; color: var(--text); margin-bottom: 1.2em; }
.prose li { margin-bottom: .4em; line-height: 1.65; }
.prose strong { color: var(--navy); }
.prose a { text-decoration: underline; text-decoration-color: rgba(47,174,74,.4); }
.prose table { border-collapse: collapse; width: 100%; }
.table-wrap { overflow-x: auto; margin: 1.4em 0; border: 1px solid var(--border); border-radius: 10px; }
.prose table th, .prose table td { padding: .7em .9em; border-bottom: 1px solid var(--border); text-align: left; font-size: .92rem; }
.prose table th { background: var(--bg-alt); font-family: 'Poppins', sans-serif; color: var(--navy); font-size: .85rem; }
.prose table tr:last-child td { border-bottom: none; }
.prose blockquote { border-left: 3px solid var(--green); margin: 1.4em 0; padding: .2em 1.2em; color: var(--muted); font-style: italic; }
.prose figure { margin: 1.4em 0; }
.prose figure img { border-radius: 10px; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 1.8em 0; }

/* Two-column layout for service/legal pages */
.legal-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .legal-layout { grid-template-columns: 2.1fr 1fr; } }
.side-card { background: var(--bg-alt); border-radius: var(--radius); padding: 1.6rem; }
.side-card + .side-card { margin-top: 1.2rem; }
.side-card h4 { font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; color: var(--green-dark); margin-bottom: .8em; }
.side-card ul { list-style: none; margin: 0; padding: 0; }
.side-card li + li { margin-top: .5em; }
.side-card a { color: var(--navy); font-weight: 600; font-size: .92rem; display: block; padding: .3em 0; }
.side-card a:hover { color: var(--green-dark); }
.side-cta { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1.8rem; text-align: center; }
.side-cta h4 { color: #fff; font-size: 1.1rem; margin-bottom: .4em; }
.side-cta p { color: rgba(255,255,255,.75); font-size: .88rem; }
.side-cta .btn { width: 100%; margin-top: .6rem; }

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.8rem; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--green-dark); margin-bottom: .6em; }
.post-card h3 { font-size: 1.02rem; margin-bottom: .5em; }
.post-card p { font-size: .87rem; margin-bottom: .8em; flex: 1; }
.post-date { font-size: .78rem; color: var(--muted); }
.blog-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.blog-filter { font-size: .82rem; font-weight: 600; padding: .5em 1em; border-radius: 999px; border: 1px solid var(--border); color: var(--navy); }
.blog-filter.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--navy); border: 1px solid var(--border); padding: 0 .6em; }
.pagination a:hover { border-color: var(--green); color: var(--green-dark); }
.pagination .is-current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination .disabled { opacity: .35; pointer-events: none; }

/* Post article */
.post-header { background: var(--bg-alt); padding: 2rem 0 2.4rem; }
.post-header .post-cat { margin-bottom: .8em; }
.post-header h1 { max-width: 900px; }
.post-meta { font-size: .85rem; color: var(--muted); }
.post-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 0; align-items: start; }
@media (min-width: 960px) { .post-layout { grid-template-columns: 2.2fr .9fr; } }
.post-toc { position: sticky; top: 92px; max-height: calc(100vh - 112px); overflow-y: auto; background: #fff; z-index: 1; margin-bottom: 1.2rem; }
.post-toc h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--green-dark); margin-bottom: .8em; }
.post-toc ol { list-style: none; margin: 0; padding: 0 0 .4rem; counter-reset: toc; }
.post-toc li { counter-increment: toc; margin-bottom: .5em; }
.post-toc a { font-size: .86rem; color: var(--navy); font-weight: 500; }
.post-toc a:hover { color: var(--green-dark); }
.related-posts { margin-top: 3rem; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1.4rem; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { background: var(--bg-alt); border-radius: var(--radius); padding: 1.8rem; }
.contact-card h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--green-dark); margin-bottom: .5em; }
.contact-card p, .contact-card a { color: var(--navy); font-size: 1rem; font-weight: 600; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--navy); color: #cbd4de; padding: 3.2rem 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand p { color: #9fb0c0; font-size: .88rem; margin-top: .8rem; }
.footer-rating { color: #FBBF24; font-size: .9rem; margin-top: .8rem; }
.footer-rating span { color: #9fb0c0; font-size: .78rem; display: block; margin-top: .2em; letter-spacing: normal; }
.footer-col h4 { color: #fff; font-family: 'Poppins', sans-serif; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .65em; }
.footer-col a { color: #b7c2cd; font-size: .88rem; }
.footer-col a:hover { color: var(--green-light); }
.footer-contact li { font-size: .85rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.6rem; padding: 1.2rem 20px; text-align: center; }
.footer-bottom p { color: #7f8ea0; font-size: .78rem; margin: 0; }

/* WhatsApp float */
.wa-float-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; align-items: flex-end; gap: .8rem; }
.wa-float {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, #3FCB55 0%, #25A93D 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,169,61,.5);
  animation: wa-bounce 3.2s ease-in-out infinite;
  flex-shrink: 0;
}
.wa-float:hover { animation-play-state: paused; transform: scale(1.08); }
.wa-float-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(63,203,85,.6); animation: wa-ripple 2.2s ease-out infinite; pointer-events: none; }
.wa-float-ring--2 { animation-delay: 1.1s; }
@keyframes wa-ripple { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }
@keyframes wa-bounce { 0%, 100% { transform: translateY(0); } 5% { transform: translateY(-8px); } 10% { transform: translateY(0); } 14% { transform: translateY(-4px); } 18% { transform: translateY(0); } }
.wa-float-badge { position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; border-radius: 50%; background: #FF3B30; color: #fff; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; animation: wa-badge-pulse 1.6s ease-in-out infinite; }
@keyframes wa-badge-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }

.wa-bubble { max-width: 240px; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: .9rem 1.1rem .9rem 1rem; position: relative; opacity: 0; transform: translateY(8px) scale(.96); pointer-events: none; transition: opacity .3s ease, transform .3s ease; }
.wa-bubble.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-bubble::after { content: ''; position: absolute; right: 22px; bottom: -7px; width: 14px; height: 14px; background: #fff; transform: rotate(45deg); box-shadow: 3px 3px 6px rgba(14,27,46,.05); }
.wa-bubble-link { display: block; text-decoration: none; }
.wa-bubble-link strong { display: block; color: var(--navy); font-family: 'Poppins', sans-serif; font-size: .9rem; margin-bottom: .3em; }
.wa-bubble-link span { display: block; color: var(--muted); font-size: .84rem; line-height: 1.4; }
.wa-bubble-close { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; border: 2px solid #fff; font-size: .95rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,.2); }
@media (max-width: 480px) { .wa-bubble { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-float, .wa-float-ring, .wa-float-badge { animation: none; } }

/* 404 */
.notfound { text-align: center; padding: 5rem 0; }
.notfound h1 { font-size: 5rem; color: var(--green); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
