/* ============================================================
   Máximo Cuidado - Design System
   Cores: Verde #15803d / Roxo #6d28d9
   ============================================================ */

/* ─── FONTES ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  /* Verde */
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-200: #bbf7d0;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  /* Roxo */
  --purple-900: #4c1d95;
  --purple-800: #5b21b6;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --purple-200: #ddd6fe;
  --purple-100: #ede9fe;
  --purple-50:  #f5f3ff;

  /* Neutros */
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;

  /* Semânticas */
  --success: #16a34a;
  --error:   #dc2626;
  --warning: #d97706;
  --info:    #2563eb;
  --white:   #ffffff;

  /* Gradientes */
  --gradient-hero:    linear-gradient(135deg, var(--green-800) 0%, var(--purple-700) 100%);
  --gradient-primary: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  --gradient-purple:  linear-gradient(135deg, var(--purple-700) 0%, var(--purple-500) 100%);
  --gradient-card:    linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(240,253,244,0.6) 100%);

  /* Tipografia */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.10);
  --shadow-green: 0 8px 25px rgba(21,128,61,.25);
  --shadow-purple: 0 8px 25px rgba(109,40,217,.20);

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Transições */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TIPOGRAFIA ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
  font-weight: 700;
}

.display-1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
.display-2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
.h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.text-lead   { font-size: 1.15rem; color: var(--gray-600); line-height: 1.75; }
.text-small  { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.navbar-logo img { height: 42px; width: auto; }

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar.scrolled .navbar-nav a { color: var(--gray-700); }

.navbar-nav a:hover,
.navbar.scrolled .navbar-nav a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.navbar-dropdown { position: relative; }
.navbar-dropdown > a::after {
  content: '▾';
  margin-left: 0.3rem;
  font-size: 0.75rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  list-style: none;
}
.navbar-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  color: var(--gray-700) !important;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}
.dropdown-menu a:hover {
  background: var(--green-50);
  color: var(--green-700) !important;
}
.dropdown-menu a i { color: var(--green-600); width: 16px; }

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
  font-size: 1.3rem;
}

.navbar.scrolled .navbar-toggle { color: var(--gray-800); }

/* ─── BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(21,128,61,.35);
  color: var(--white);
}

.btn-secondary {
  background: var(--gradient-purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(109,40,217,.30);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-600);
}
.btn-outline-green:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37,211,102,.30);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37,211,102,.40);
  color: var(--white);
}

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-xl { padding: 1.05rem 2.6rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2l-2 2-34 34v-2zm4 4L80 0v2L44 40h-2zm4 0L80 4v2L48 40h-2zm4 0L80 8v2L52 40h-2zm4 0L80 12v2L56 40h-2zm4 0L80 16v2L60 40h-2zm4 0L80 20v2L64 40h-2zm4 0L80 24v2L68 40h-2zm4 0L80 28v2L72 40h-2zm4 0L80 32v2L76 40h-2zm4 0L80 36v2L80 40h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-blob-1 { width: 600px; height: 600px; background: #4ade80; top: -200px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: #a78bfa; bottom: -100px; left: -50px; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #86efac, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
}

.hero-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.hero-service-item:hover {
  background: rgba(255,255,255,.15);
  transform: translateX(4px);
}

.hero-service-item i {
  color: #86efac;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card-1 { top: -1.5rem; right: -1rem; }
.hero-floating-card-2 { bottom: 1.5rem; left: -1.5rem; animation-delay: -1.5s; }

.hero-floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-floating-card-icon.green { background: var(--green-100); color: var(--green-700); }
.hero-floating-card-icon.purple { background: var(--purple-100); color: var(--purple-700); }

.hero-floating-card-text { font-size: 0.8rem; }
.hero-floating-card-text strong { display: block; font-weight: 700; color: var(--gray-900); font-family: var(--font-heading); }
.hero-floating-card-text span { color: var(--gray-500); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── SECTION HEADER ────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-100);
  color: var(--green-700);
  border: 1px solid var(--green-200);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-badge.purple {
  background: var(--purple-100);
  color: var(--purple-700);
  border-color: var(--purple-200);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ─── CARDS DE SERVIÇO ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-700);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--gray-900);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-700);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-card-link:hover { gap: 0.7rem; color: var(--green-800); }

/* ─── COMO FUNCIONA ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  box-shadow: var(--shadow-green);
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 3rem);
  height: 2px;
  background: var(--green-200);
  transform: translateY(-50%);
}

.step-item:last-child .step-number::after { display: none; }

.step-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-item p  { font-size: 0.875rem; color: var(--gray-600); }

/* ─── DIFERENCIAIS ──────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--green-200);
  background: var(--green-50);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.benefit-item p  { font-size: 0.85rem; color: var(--gray-600); }

/* ─── DEPOIMENTOS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--green-200);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74,222,128,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(167,139,250,.15) 0%, transparent 60%);
}

.cta-banner .container { position: relative; }

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green-700);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--green-400); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}
.footer-contact-item i { color: var(--green-500); width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a { color: var(--gray-500); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green-400); }

/* ─── WHATSAPP FLUTUANTE ─────────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.float-whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  animation: pulse-whatsapp 2s infinite;
  transition: var(--transition);
  flex-shrink: 0;
}

.float-whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.float-whatsapp-label {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,.70); }
}

/* ─── FORMULÁRIO ────────────────────────────────────────── */
.form-section {
  background: var(--gray-50);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.45rem;
}

.form-label .required {
  color: var(--error);
  margin-left: 0.2rem;
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

textarea.form-control { resize: vertical; min-height: 100px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--white);
  transition: var(--transition);
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--green-600);
  border-color: var(--green-600);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
}

.form-checkbox-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }
.form-checkbox-text a { color: var(--green-700); text-decoration: underline; }

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-row {
  display: grid;
  gap: 1rem;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.form-success.active { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: var(--green-700);
}

/* ─── STATS / NÚMEROS ───────────────────────────────────── */
.stats-section {
  background: var(--gradient-hero);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  margin-top: 0.25rem;
}

/* ─── PÁGINA INTERNA ────────────────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.05) 0%, transparent 70%);
}

.page-hero .container { position: relative; }

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb-nav a { color: rgba(255,255,255,.7); }
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav span { color: rgba(255,255,255,.4); }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 750px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--green-200); }
.faq-item.active { border-color: var(--green-400); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover { color: var(--green-700); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon { background: var(--green-700); color: var(--white); rotate: 45deg; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.4rem;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 1.4rem 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ─── ANIMAÇÕES ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ALERTA / TOAST ─────────────────────────────────────── */
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.alert-success { background: var(--green-50); color: var(--green-800); border: 1px solid var(--green-200); }
.alert-error    { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info     { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .navbar-nav, .navbar-cta { display: none; }
  .navbar-toggle { display: block; }

  .navbar-mobile-open .navbar-nav,
  .navbar-mobile-open .navbar-cta {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gray-900);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    align-items: flex-start;
  }

  .navbar-mobile-open .navbar-nav a,
  .navbar-mobile-open .navbar-cta .btn {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    width: 100%;
  }

  .navbar-mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius-md);
    margin-top: 0.25rem;
  }

  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-number::after { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .btn-xl, .btn-lg { width: 100%; }
  .float-whatsapp-label { display: none; }
}
