/*
Theme Name: VM Agency
Theme URI: https://viniciusmendes.com
Author: Vinicius Mendes
Author URI: https://viniciusmendes.com
Description: Tema profissional para portfólio de desenvolvedor web com SEO Local, gerador de páginas por bairro e dashboard de leads.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Privado — uso exclusivo do autor
Text Domain: vm-agency
Tags: portfolio, seo-local, one-page, poppins, minimalista
*/

/* ─────────────────────────────────────────
   IMPORTAÇÕES E VARIÁVEIS
───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #f8f7f4;
  --surface: #ffffff;
  --surface2: #f0efe9;
  --surface3: #eaf0ff;
  --text: #141414;
  --text-muted: #6b6b6b;
  --accent: #0057ff;
  --accent-light: #e8efff;
  --accent-dark: #003ec0;
  --green: #00a85a;
  --green-light: #e6f9f0;
  --border: #e2e0d8;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Poppins', sans-serif;
}

/* ─────────────────────────────────────────
   RESET E BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,247,244,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-weight: 700; font-size: 1rem; color: var(--text); }
.nav-logo span { color: var(--accent); }
.nav-logo img { height: 36px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-menu a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; line-height: 1;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.nav-cta svg { width: 15px !important; height: 15px !important; flex-shrink: 0; }
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-blob {
  position: absolute; z-index: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,87,255,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -58%);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 1; max-width: 820px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  border: 1px solid rgba(0,168,90,0.2);
  animation: fadeSlideUp 0.6s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse-green 2s infinite;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800;
  line-height: 1.12; letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 .ul-acc { position: relative; display: inline-block; }
.hero h1 .ul-acc::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 5px;
  background: var(--accent); border-radius: 3px;
  animation: growW 0.8s 0.6s ease both; transform-origin: left;
}
.hero-desc {
  font-size: 1.15rem; color: var(--text-muted); max-width: 600px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}
.hero-desc strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; justify-content: center;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   BOTÕES
───────────────────────────────────────── */

/* SVG dentro de qualquer botão — tamanho fixo */
.btn-primary svg,
.btn-secondary svg,
.btn-cta-final svg,
.nav-cta svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  line-height: 1; white-space: nowrap;
  transition: all .2s; box-shadow: 0 8px 30px rgba(0,87,255,0.25);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,87,255,0.35); }

.btn-secondary {
  background: transparent; color: var(--text);
  padding: 14px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  border: 2px solid var(--border); line-height: 1; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-cta-final {
  background: var(--accent); color: #fff;
  padding: 16px 36px; border-radius: 50px; font-size: 1rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  line-height: 1; white-space: nowrap;
  transition: all .2s; box-shadow: 0 8px 30px rgba(0,87,255,0.25);
}
.btn-cta-final:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,87,255,0.35); }

/* ─────────────────────────────────────────
   SEÇÕES — TÍTULOS E LABELS
───────────────────────────────────────── */
.section-label {
  text-align: center; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-desc {
  text-align: center; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 56px;
}

/* ─────────────────────────────────────────
   DOR
───────────────────────────────────────── */
.dor-section { padding: 100px 5%; background: var(--surface3); }
.dor-inner { max-width: 1100px; margin: 0 auto; }
.dor-heading { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; text-align: center; margin-bottom: 12px; letter-spacing: -0.5px; }
.dor-heading em { font-style: normal; color: var(--accent); }
.dor-sub { text-align: center; color: var(--text-muted); margin-bottom: 52px; }
.dor-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.dor-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; transition: box-shadow .25s, transform .25s; }
.dor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.dor-icon { font-size: 2rem; margin-bottom: 14px; }
.dor-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.dor-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; }

/* ─────────────────────────────────────────
   COMO FUNCIONA
───────────────────────────────────────── */
.como-section { padding: 100px 5%; background: var(--surface); }
.steps { display: flex; flex-direction: column; max-width: 820px; margin: 0 auto; }
.step { display: flex; gap: 28px; align-items: flex-start; padding: 34px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { flex-shrink: 0; width: 52px; height: 52px; background: var(--accent-light); color: var(--accent); border-radius: 14px; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ─────────────────────────────────────────
   SERVIÇOS
───────────────────────────────────────── */
.servicos-section { padding: 100px 5%; background: var(--bg); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.card { background: var(--surface); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-light); color: var(--accent); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.card-tag { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; }
.card.featured { background: var(--accent); border-color: var(--accent); }
.card.featured::before { display: none; }
.card.featured .card-icon { background: rgba(255,255,255,0.18); color: #fff; }
.card.featured h3 { color: #fff; }
.card.featured p { color: rgba(255,255,255,0.78); }
.card.featured .card-tag { background: rgba(255,255,255,0.22); color: #fff; }

/* ─────────────────────────────────────────
   PORTFÓLIO
───────────────────────────────────────── */
.portfolio-section { padding: 100px 5%; background: var(--surface2); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 26px; max-width: 1100px; margin: 0 auto; }
.portfolio-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-thumb { width: 100%; aspect-ratio: 16/10; background: var(--accent-light); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--accent); opacity: 0.4; }
.portfolio-tag-bar { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.92); color: var(--accent); font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; border: 1px solid var(--border); }
.portfolio-info { padding: 22px 22px 26px; }
.portfolio-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.portfolio-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.portfolio-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--accent); transition: gap .2s; }
.portfolio-link:hover { gap: 10px; }

/* ─────────────────────────────────────────
   MAPA / SERP
───────────────────────────────────────── */
.mapa-section { padding: 100px 5%; background: var(--surface); }
.mapa-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mapa-text h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 18px; }
.mapa-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 22px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 500; }
.check-list li .ck { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 0.74rem; font-weight: 800; }
.mapa-visual { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); padding: 26px; box-shadow: var(--shadow); }
.serp-bar { background: var(--surface2); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.77rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; border: 1px solid var(--border); margin-bottom: 16px; }
.serp-result { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 10px; }
.serp-result.highlight { background: var(--accent-light); border-color: rgba(0,87,255,0.3); }
.serp-result .site-name { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 3px; }
.serp-result h4 { font-size: 0.84rem; font-weight: 600; color: var(--accent); margin-bottom: 4px; }
.serp-result p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }
.serp-badge { display: inline-block; background: var(--green); color: #fff; font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 6px; vertical-align: middle; }

/* ─────────────────────────────────────────
   PROVA SOCIAL
───────────────────────────────────────── */
.prova-section { padding: 100px 5%; background: var(--surface2); }
.prova-inner { max-width: 1100px; margin: 0 auto; }
.prova-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.metric-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; }
.metric-num { font-size: 3rem; font-weight: 900; color: var(--accent); letter-spacing: -2px; }
.metric-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 8px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.testimonial-card .stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 0.92rem; line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section { padding: 100px 5%; background: var(--bg); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 22px 0; font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; padding-bottom: 20px; }

/* ─────────────────────────────────────────
   BLOG
───────────────────────────────────────── */
.blog-section { padding: 100px 5%; background: var(--surface); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 26px; max-width: 1100px; margin: 0 auto; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; background: var(--accent-light); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-info { padding: 22px; }
.blog-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-cat { background: var(--accent-light); color: var(--accent); padding: 2px 10px; border-radius: 50px; font-weight: 600; }
.blog-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-info h3 a { color: var(--text); transition: color .2s; }
.blog-info h3 a:hover { color: var(--accent); }
.blog-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.blog-link:hover { gap: 9px; }

/* Página de post único */
.single-post { max-width: 760px; margin: 100px auto; padding: 0 5% 80px; }
.single-post h1 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.post-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.post-featured-img { width: 100%; border-radius: var(--radius); margin-bottom: 40px; overflow: hidden; }
.post-content { font-size: 1rem; line-height: 1.85; color: var(--text); }
.post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; background: var(--accent-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; }
.post-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.post-content code { background: var(--surface2); padding: 2px 6px; border-radius: 4px; font-size: 0.88em; }
.post-content pre { background: var(--text); color: #fff; padding: 24px; border-radius: var(--radius-sm); overflow-x: auto; margin: 24px 0; }

/* Archive */
.archive-header { padding: 120px 5% 60px; text-align: center; }
.archive-header h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.archive-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.archive-grid { padding: 0 5% 100px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 26px; }
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 5%; }
.pagination a, .pagination span { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 600; border: 1px solid var(--border); color: var(--text-muted); transition: all .2s; }
.pagination a:hover, .pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────── */
.cta-section { padding: 100px 5%; background: var(--accent-light); text-align: center; border-top: 1px solid rgba(0,87,255,0.15); }
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.cta-section p { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 40px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { padding: 36px 5%; background: var(--surface); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-logo { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.footer-logo span { color: var(--accent); }
.site-footer p { font-size: 0.78rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px !important; height: 28px !important; flex-shrink: 0; }

/* ─────────────────────────────────────────
   ANIMAÇÕES
───────────────────────────────────────── */
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes growW { from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes pulse-green { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
@keyframes waPulse { 0%,100%{box-shadow:0 8px 28px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 52px rgba(37,211,102,0.65)} }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media(max-width:768px){
  .mapa-inner { grid-template-columns: 1fr; gap: 36px; }
  .prova-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .site-footer { flex-direction: column; text-align: center; }
  .nav-menu { display: none; }
}
