/* ========== VARIÁVEIS / DESIGN SYSTEM ========== */
:root {
  --brand-green: #22c55e;
  --brand-yellow: #facc15;
  --brand-blue: #3b82f6;
  --brand-blue-dark: #0f1e3d;

  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #f5f7fb;
  --muted-fg: #64748b;
  --border: #e5e9f0;
  --card: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --gradient-hero:
    radial-gradient(1200px 600px at 15% 10%, rgba(59,130,246,0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(34,197,94,0.35), transparent 60%),
    linear-gradient(135deg, #0f1e3d, #172554);
  --gradient-cta: linear-gradient(135deg, var(--brand-green), var(--brand-yellow));
  --shadow-elegant: 0 20px 60px -20px rgba(15,30,61,0.35);
  --shadow-glow: 0 0 40px rgba(34,197,94,0.45);

  --font-display: "Sora", sans-serif;
  --font-sans: "Manrope", sans-serif;
}

/* ========== RESET ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 800px; }
.section { padding: 6rem 0; position: relative; overflow: hidden; }
.section-muted { background: var(--muted); }
.section-dark { background: var(--brand-blue-dark); color: #fff; }
.center { text-align: center; }

/* ========== BADGES / BOTÕES ========== */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.badge-green { background: rgba(34,197,94,0.15); color: var(--brand-green); }
.badge-yellow { background: rgba(250,204,21,0.2); color: var(--brand-yellow); }
.badge-blue { background: rgba(59,130,246,0.15); color: var(--brand-blue); }
.badge-light { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
.badge-light .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); animation: pulse 2s infinite; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: scale(1.03); }
.btn i { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient-cta); color: var(--brand-blue-dark); box-shadow: var(--shadow-glow); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-block { display: flex; justify-content: center; width: 100%; padding: 1.1rem 1.6rem; margin-top: 1.5rem; }

.shine { position: relative; overflow: hidden; }
.shine::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.8s ease;
}

.shine:hover::after { transform: translateX(100%); }

.text-gradient {
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ========== HEADER ========== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.logo { display: flex; align-items: center; }
.logo-img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.03); }

.nav-desktop { display: none; gap: 0.25rem; }
.nav-desktop a {
  padding: 0.5rem 0.95rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  color: var(--fg); position: relative; transition: color 0.2s ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 6px; height: 2px;
  background: var(--gradient-cta); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 0.5rem; }
.header-cta .btn { display: none; }
#menu-toggle { padding: 0.5rem; border-radius: 8px; }
#menu-toggle i { width: 24px; height: 24px; }

.nav-mobile { display: none; flex-direction: column; padding: 1rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.85rem 1rem; border-radius: 10px; font-weight: 500; }
.nav-mobile a:hover { background: var(--muted); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  #menu-toggle { display: none; }
  .header-cta .btn { display: inline-flex; }
}

/* ========== HERO ========== */
.hero { background: var(--gradient-hero); color: #fff; padding: 8rem 0 6rem; position: relative; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.blob-1 { width: 380px; height: 380px; top: -100px; left: -100px; background: rgba(34,197,94,0.25); animation: float 6s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; bottom: -120px; right: -80px; background: rgba(250,204,21,0.2); animation: float 6s ease-in-out infinite 2s; }
.blob-3 { width: 320px; height: 320px; top: -100px; right: 25%; background: rgba(34,197,94,0.2); }
.blob-4 { width: 320px; height: 320px; bottom: 0; left: 0; background: rgba(250,204,21,0.15); }
.blob-5 { width: 400px; height: 400px; bottom: -120px; right: 0; background: rgba(34,197,94,0.2); }

.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin: 1.25rem 0; }
.hero-text p { max-width: 520px; color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; max-width: 420px; }
.stat { padding: 1rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); border-radius: var(--radius); backdrop-filter: blur(8px); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-elegant); }
.stat-n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--brand-yellow); }
.stat-l { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

.hero-image { position: relative; }
.hero-image-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-elegant); aspect-ratio: 4/3; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,30,61,0.7), transparent); }

.floating-card {
  position: absolute; display: none; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.1rem; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elegant); color: var(--fg);
  animation: float 6s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: 0.9rem; }
.floating-card span { font-size: 0.75rem; color: var(--muted-fg); }
.float-1 { left: -20px; bottom: 30px; }
.float-2 { right: -20px; top: 30px; animation-delay: 1s; }
@media (min-width: 640px) { .floating-card { display: flex; } }

.fc-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; }
.fc-icon.green { background: rgba(34,197,94,0.2); color: var(--brand-green); }
.fc-icon.yellow { background: rgba(250,204,21,0.3); color: var(--brand-blue-dark); }
.fc-icon i { width: 20px; height: 20px; }

/* ========== MARQUEE ========== */
.marquee {
  background: var(--brand-blue-dark); color: rgba(255,255,255,0.7);
  padding: 1rem 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 30s linear infinite; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.marquee-track span::before { color: var(--brand-yellow); }

/* ========== SECTION HEAD ========== */
.section-head { max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin: 1rem 0; color: var(--brand-blue-dark); }
.section-dark .section-head h2 { color: #fff; }
.section-head p { color: var(--muted-fg); font-size: 1.05rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

.plan-tabs { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.plan-btn { cursor: pointer; border: none; opacity: 0.6; transition: opacity 0.3s ease, transform 0.3s ease; }
.plan-btn.active, .plan-btn:hover { opacity: 1; transform: translateY(-2px); }

.two-cols { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .two-cols { grid-template-columns: 1fr 1fr; } }
.lead { color: var(--muted-fg); font-size: 1.1rem; max-width: 520px; margin-top: 1.25rem; }

/* ========== COTAÇÃO ========== */
#cotacao h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin: 1rem 0; color: var(--brand-blue-dark); }
.checklist { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.check { width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.2); color: var(--brand-green); display: grid; place-items: center; flex-shrink: 0; }
.check i { width: 14px; height: 14px; }

.quote-form {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-elegant);
}
.form-tag {
  position: absolute; top: -14px; left: 24px;
  background: var(--gradient-cta); color: var(--brand-blue-dark);
  padding: 0.35rem 1rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.quote-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-fg); }

.quote-form input {
  padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--bg); font-size: 0.95rem; color: var(--fg); text-transform: none; letter-spacing: normal; font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quote-form input:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(59,130,246,0.15); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.75rem; }

/* ========== BENEFÍCIOS ========== */
.benefits-grid { display: grid; gap: 1.25rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.4);
  box-shadow: var(--shadow-elegant);
}

.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1rem;
  background: var(--gradient-cta); color: var(--brand-blue-dark);
  display: grid; place-items: center;
  transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-icon { transform: rotate(6deg) scale(1.1); }
.benefit-icon i { width: 22px; height: 22px; }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.benefit-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ========== SLIDER DEPOIMENTOS ========== */
.slider { margin-top: 3.5rem; overflow: hidden; position: relative; }
.slider-track { display: flex; transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); width: 100%; }
.slide { flex: 0 0 100%; min-width: 100%; padding: 0 0.5rem; }
.testimonial {
  max-width: 720px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 3rem;
  box-shadow: var(--shadow-elegant); text-align: center;
}
.stars { color: var(--brand-yellow); margin-bottom: 1rem; font-size: 1.2rem; }
.testimonial blockquote { font-size: 1.15rem; font-style: italic; color: var(--fg); margin-bottom: 1.5rem; }
.testimonial .author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial .author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial .author strong { display: block; font-size: 0.95rem; }
.testimonial .author span { font-size: 0.8rem; color: var(--muted-fg); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.slider-controls button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center; background: var(--card);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.slider-controls button:hover { background: var(--muted); border-color: var(--brand-blue); }
.dots { display: flex; gap: 0.5rem; }
.dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; }
.dots .dot.active { background: var(--brand-green); transform: scale(1.2); }

/* ========== FAQ ========== */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s ease; }
.faq-q { width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 1.05rem; text-align: left; }
.faq-q i { transition: transform 0.3s ease; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.5rem; color: var(--muted-fg); font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem 1.5rem; }

/* ========== SOBRE & CONTATO ========== */
.about-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-elegant); }
.about-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(15,30,61,0.85); backdrop-filter: blur(10px); color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); }
.about-badge-n { font-size: 1.8rem; font-weight: 800; color: var(--brand-yellow); font-family: var(--font-display); }
.about-badge-l { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.mini-card { background: var(--muted); padding: 1rem; border-radius: var(--radius); border: 1px solid var(--border); }
.mini-card i { color: var(--brand-green); margin-bottom: 0.5rem; }
.mini-card strong { display: block; font-size: 1.2rem; font-family: var(--font-display); }
.mini-card span { font-size: 0.8rem; color: var(--muted-fg); }

.contact-grid { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; border-radius: var(--radius-lg); text-align: center; backdrop-filter: blur(8px); transition: transform 0.3s ease; }
.contact-card:hover { transform: translateY(-4px); border-color: var(--brand-green); }
.contact-card .benefit-icon { margin: 0 auto 1rem auto; }
.ct-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-bottom: 0.25rem; }
.ct-value { font-weight: 700; font-size: 0.95rem; word-break: break-all; }

/* ========== ÁREA DO ASSOCIADO ========== */
.btn-associado-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  color: var(--brand-yellow) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(250, 204, 21, 0.3);
  transition: all 0.3s ease;
}
.btn-associado-link:hover {
  background: var(--brand-yellow);
  color: var(--brand-blue-dark) !important;
}

.associado-card {
  max-width: 680px;
  margin: 2.5rem auto 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.associado-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--brand-green);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.associado-icon i {
  width: 36px;
  height: 36px;
}

.associado-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.associado-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.associado-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.btn-hinova {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 999px;
}

.btn-download-regulamento {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 999px;
}

/* ========== FOOTER ========== */
footer { background: #091224; color: rgba(255,255,255,0.7); padding: 4rem 0 2rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-about { margin-top: 1rem; font-size: 0.9rem; max-width: 300px; }
.socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.1); transition: background 0.2s ease; }
.socials a:hover { background: var(--brand-green); color: var(--brand-blue-dark); }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.25rem; }
footer ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
footer a:hover { color: #fff; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; font-size: 0.8rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ========== ANIMAÇÕES ========== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ========== REVEAL EM ANIMAÇÕES DE SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}