﻿@charset "UTF-8";
/* ============================================================
   CREDFACIL PIRACICABA - STYLES
   ============================================================ */
:root {
  --verde: #008F49;
  --verde-escuro: #006B37;
  --verde-claro: #E6F4EC;
  --laranja: #E37325;
  --laranja-escuro: #C45E16;
  --laranja-claro: #FDF0E6;
  --preto: #111827;
  --cinza-900: #1F2937;
  --cinza-700: #374151;
  --cinza-500: #6B7280;
  --cinza-300: #D1D5DB;
  --cinza-100: #F3F4F6;
  --cinza-50: #F9FAFB;
  --branco: #FFFFFF;
  --whatsapp: #25D366;
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --transition: 200ms ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--preto);
  background: var(--branco);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: all var(--transition); white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--verde); color: var(--branco); }
.btn-primary:hover { background: var(--verde-escuro); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: var(--whatsapp); color: var(--branco); }
.btn-whatsapp:hover { background: #1FAD55; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--verde); border: 2px solid var(--verde); }
.btn-outline:hover { background: var(--verde); color: var(--branco); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.header.scrolled,
.header.solid {
  background: rgba(255,255,255,1);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--cinza-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { height: 44px; width: auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); transition: filter 300ms ease; }
.header.scrolled .logo, .header.solid .logo { filter: none; }
.nav-desktop { display: none; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: color var(--transition), text-shadow 300ms ease;
}
.header.scrolled .nav-desktop a,
.header.solid .nav-desktop a { color: var(--cinza-700); text-shadow: none; }
.nav-desktop a:hover { color: var(--verde); }
.header-cta { display: none; }
.hamburger { background: none; border: none; cursor: pointer; padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--branco); box-shadow: 0 1px 2px rgba(0,0,0,0.3); border-radius: 2px; transition: all var(--transition); }
.header.scrolled .hamburger span, .header.solid .hamburger span { background: var(--preto); box-shadow: none; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--branco); padding: 20px; border-bottom: 1px solid var(--cinza-100); box-shadow: var(--shadow-md); flex-direction: column; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px; font-size: 16px; font-weight: 500; color: var(--cinza-700); border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: var(--cinza-50); }
@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .logo { height: 48px; }
}

/* HERO */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; background: var(--preto); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.4) 100%); }
.hero-content { position: relative; z-index: 3; padding: 120px 0 80px; color: var(--branco); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--verde); border-radius: 50%; box-shadow: 0 0 0 4px rgba(0, 143, 73, 0.3); }
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; max-width: 700px; }
.hero h1 .accent-verde { color: var(--verde); }
.hero h1 .accent-laranja { color: var(--laranja); }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 560px; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 20px 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); max-width: 600px; }
.hero-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.hero-feature svg { width: 20px; height: 20px; color: var(--verde); flex-shrink: 0; }

/* PAGE HERO (smaller, for inner pages) */
.page-hero { background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%); color: var(--branco); padding: 140px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(227,115,37,0.2), transparent 70%); border-radius: 50%; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag { display: inline-block; background: rgba(255,255,255,0.15); padding: 6px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.9); max-width: 620px; }

/* TRUST BAR */
.trust-bar { background: var(--verde); color: var(--branco); padding: 18px 0; overflow: hidden; }
.trust-items { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* SECTIONS */
.section { padding: 80px 0; scroll-margin-top: 80px; }
.hero, .lead-section, .parallax, .contact-section, .how-section { scroll-margin-top: 80px; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-tag { display: inline-block; background: var(--verde-claro); color: var(--verde); padding: 6px 14px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--preto); }
.section-header p { font-size: 16px; color: var(--cinza-500); line-height: 1.6; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.service-card { background: var(--branco); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; transition: all var(--transition); border: 1px solid var(--cinza-100); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-image { width: 100%; aspect-ratio: 800/413; overflow: hidden; position: relative; background: var(--cinza-100); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--preto); line-height: 1.3; }
.service-card p { font-size: 13px; color: var(--cinza-500); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.service-card .learn-more { font-size: 13px; font-weight: 600; color: var(--verde); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-card:hover .learn-more { gap: 8px; }
.service-card.alt .learn-more { color: var(--laranja); }

/* PARALLAX */
.parallax { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; color: var(--branco); background-color: var(--preto); }
.parallax-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; }
@media (min-width: 1024px) { .parallax-bg { background-attachment: fixed; } }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,143,73,0.85) 0%, rgba(0,107,55,0.75) 50%, rgba(17,24,39,0.7) 100%); z-index: 2; }
.parallax-content { position: relative; z-index: 3; padding: 60px 0; text-align: center; max-width: 800px; margin: 0 auto; }
.parallax-content h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.parallax-content p { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.9); margin-bottom: 28px; line-height: 1.6; }
.parallax-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { padding: 24px; border-radius: var(--radius-md); background: var(--branco); border: 1px solid var(--cinza-100); }
.why-number { font-size: 48px; font-weight: 800; line-height: 1; color: var(--verde); margin-bottom: 12px; letter-spacing: -0.03em; }
.why-card:nth-child(even) .why-number { color: var(--laranja); }
.why-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--preto); }
.why-card p { font-size: 14px; color: var(--cinza-500); line-height: 1.6; }

/* HOW IT WORKS */
.how-section { background: var(--cinza-50); }
.how-grid { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; }
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.how-step { background: var(--branco); padding: 32px 24px; border-radius: var(--radius-md); text-align: center; position: relative; }
.how-step-num { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; background: var(--verde); color: var(--branco); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; box-shadow: var(--shadow-md); }
.how-step h4 { font-size: 18px; font-weight: 700; margin: 16px 0 8px; color: var(--preto); }
.how-step p { font-size: 14px; color: var(--cinza-500); line-height: 1.6; }

/* LEAD FORM */
.lead-section { background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%); color: var(--branco); padding: 80px 0; position: relative; overflow: hidden; }
.lead-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(227,115,37,0.15), transparent 70%); border-radius: 50%; }
.lead-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; }
@media (min-width: 900px) { .lead-inner { grid-template-columns: 1fr 1fr; gap: 60px; } }
.lead-text h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.lead-text p { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 24px; }
.lead-text ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lead-text li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.lead-text li svg { width: 20px; height: 20px; color: var(--laranja); flex-shrink: 0; }
.lead-form { background: var(--branco); color: var(--preto); padding: 32px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lead-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--cinza-700); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--cinza-300); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; transition: all var(--transition); background: var(--branco); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--verde); box-shadow: 0 0 0 3px rgba(0,143,73,0.1); }
.form-group .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group.checkbox-group { display: flex; gap: 10px; align-items: flex-start; }
.form-group.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--verde); }
.form-group.checkbox-group label { font-weight: 400; font-size: 13px; color: var(--cinza-700); line-height: 1.5; margin: 0; }
.form-group.checkbox-group label a { color: var(--verde); font-weight: 600; }
.lead-form .btn { width: 100%; margin-top: 8px; }
.lead-form-terms { font-size: 11px; color: var(--cinza-500); text-align: center; margin-top: 12px; line-height: 1.5; }
.lead-form-terms a { color: var(--verde); font-weight: 600; }
.conditional { display: none; padding: 16px; background: var(--verde-claro); border-radius: var(--radius-sm); margin-bottom: 16px; border-left: 3px solid var(--verde); }
.conditional.show { display: block; animation: slideDown 250ms ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* STORE */
.store-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .store-grid { grid-template-columns: repeat(3, 1fr); } }
.store-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

/* CONTACT */
.contact-section { background: var(--cinza-50); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.contact-info-card { background: var(--branco); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.contact-info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--preto); }
.contact-items { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { width: 42px; height: 42px; background: var(--verde-claro); color: var(--verde); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item strong { display: block; font-size: 13px; color: var(--cinza-500); font-weight: 500; margin-bottom: 2px; }
.contact-item span { font-size: 15px; color: var(--preto); font-weight: 600; }
.map-embed { width: 100%; height: 100%; min-height: 380px; border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-sm); }

/* LEGAL PAGES (politica, termos) */
.legal-content { max-width: 820px; margin: 0 auto; padding: 60px 20px; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--preto); margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; font-weight: 600; color: var(--cinza-900); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; line-height: 1.7; color: var(--cinza-700); margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 24px; }
.legal-content li { font-size: 15px; line-height: 1.7; color: var(--cinza-700); margin-bottom: 8px; }
.legal-content a { color: var(--verde); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--preto); font-weight: 600; }

/* FOOTER */
.footer { background: var(--cinza-900); color: rgba(255,255,255,0.8); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--verde); transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; }
@media (min-width: 768px) {
  .footer-social a { width: 48px; height: 48px; }
  .footer-social svg { width: 24px; height: 24px; }
}
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--branco); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--verde); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-bottom strong { color: rgba(255,255,255,0.8); }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--whatsapp); color: var(--branco); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); z-index: 99; transition: all var(--transition); animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}
/* ============================================================
   CREDFACIL - SERVICE PAGES & LP ADDITIONS
   ============================================================ */

/* ====== PROGRESSIVE FORM (multi-step) ====== */
.progressive-form .form-step { display: none; }
.progressive-form .form-step.active { display: block; animation: fadeInUp 300ms ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-progress {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-size: 12px; font-weight: 600;
  color: var(--cinza-500); text-transform: uppercase; letter-spacing: 0.5px;
}
.form-progress-bar {
  flex: 1; height: 4px; background: var(--cinza-100);
  border-radius: var(--radius-full); overflow: hidden;
}
.form-progress-fill {
  height: 100%; background: var(--verde);
  border-radius: var(--radius-full);
  transition: width 400ms ease;
  width: 50%;
}
.progressive-form.step-2 .form-progress-fill { width: 100%; }

.btn-back {
  background: transparent; color: var(--cinza-500);
  border: 1.5px solid var(--cinza-300);
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 14px;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit;
}
.btn-back:hover { background: var(--cinza-50); color: var(--preto); border-color: var(--cinza-500); }
.form-actions-row { display: flex; gap: 10px; margin-top: 8px; }
.form-actions-row .btn { flex: 1; }

/* ====== BREADCRUMB ====== */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--cinza-50);
  border-bottom: 1px solid var(--cinza-100);
}
.breadcrumb-inner {
  padding: 16px 0;
  font-size: 13px;
  color: var(--cinza-500);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--cinza-700); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--verde); }
.breadcrumb-inner span.separator { color: var(--cinza-300); }
.breadcrumb-inner span.current { color: var(--preto); font-weight: 500; }

/* ====== SERVICE HERO (page-hero com imagem do card) ====== */
.service-hero {
  position: relative;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco);
  padding: 60px 0 80px;
  overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(227,115,37,0.18), transparent 70%);
  border-radius: 50%;
}
.service-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .service-hero-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.service-hero-tag {
  display: inline-block; background: rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.service-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.service-hero h1 .highlight { color: var(--laranja); }
.service-hero p.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.9);
  margin-bottom: 28px; line-height: 1.6; max-width: 560px;
}
.service-hero-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 28px;
}
.service-hero-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
}
.service-hero-feature svg { width: 18px; height: 18px; color: var(--laranja); flex-shrink: 0; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.service-hero-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: rotate(1deg);
}
.service-hero-image img {
  width: 100%; height: auto; display: block;
}

/* ====== WHAT IS IT (service explanation) ====== */
.what-is {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) { .what-is { grid-template-columns: 1fr 1fr; gap: 60px; } }
.what-is-content h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.what-is-content h2 .highlight { color: var(--verde); }
.what-is-content p { font-size: 16px; line-height: 1.7; color: var(--cinza-700); margin-bottom: 14px; }
.what-is-image { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.what-is-image img { width: 100%; height: auto; display: block; }

/* ====== WHO CAN (eligibility checklist) ====== */
.who-can-section { background: var(--cinza-50); }
.who-can-list {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 720px; margin: 0 auto;
}
@media (min-width: 640px) { .who-can-list { grid-template-columns: repeat(2, 1fr); } }
.who-can-item {
  background: var(--branco); padding: 20px;
  border-radius: var(--radius-md);
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--cinza-100);
  transition: all var(--transition);
}
.who-can-item:hover { border-color: var(--verde); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.who-can-check {
  width: 32px; height: 32px; background: var(--verde-claro); color: var(--verde);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.who-can-check svg { width: 18px; height: 18px; }
.who-can-item h4 { font-size: 15px; font-weight: 700; color: var(--preto); margin-bottom: 4px; line-height: 1.3; }
.who-can-item p { font-size: 13px; color: var(--cinza-500); line-height: 1.5; }

/* ====== ADVANTAGES GRID ====== */
.advantages-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }
.advantage-card {
  background: var(--branco);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-100);
  transition: all var(--transition);
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--verde); }
.advantage-icon {
  width: 52px; height: 52px; background: var(--verde-claro); color: var(--verde);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.advantage-icon svg { width: 26px; height: 26px; }
.advantage-card:nth-child(even) .advantage-icon { background: var(--laranja-claro); color: var(--laranja); }
.advantage-card h4 { font-size: 17px; font-weight: 700; color: var(--preto); margin-bottom: 8px; line-height: 1.3; }
.advantage-card p { font-size: 14px; color: var(--cinza-500); line-height: 1.6; }

/* ====== PROCESS STEPS (specific to each service) ====== */
.process-steps {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.process-step {
  background: var(--branco); padding: 24px;
  border-radius: var(--radius-md); border: 1px solid var(--cinza-100);
  display: flex; gap: 20px; align-items: flex-start;
}
.process-step-num {
  width: 44px; height: 44px; background: var(--verde); color: var(--branco);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
}
.process-step:nth-child(even) .process-step-num { background: var(--laranja); }
.process-step-content h4 { font-size: 17px; font-weight: 700; color: var(--preto); margin-bottom: 6px; }
.process-step-content p { font-size: 14px; color: var(--cinza-500); line-height: 1.6; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { background: var(--cinza-50); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--branco); padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cinza-100);
  display: flex; flex-direction: column;
}
.testimonial-stars { color: #FBBF24; margin-bottom: 14px; font-size: 18px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--cinza-700); line-height: 1.7; margin-bottom: 18px; flex: 1; font-style: italic; }
.testimonial-text::before { content: '"'; color: var(--verde); font-size: 36px; line-height: 0; display: inline-block; margin-right: 4px; vertical-align: -12px; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--cinza-100);
}
.testimonial-avatar {
  width: 40px; height: 40px; background: var(--verde);
  color: var(--branco); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testimonial-meta strong { display: block; font-size: 14px; color: var(--preto); font-weight: 600; }
.testimonial-meta span { font-size: 12px; color: var(--cinza-500); }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(66, 133, 244, 0.08); color: #4285F4;
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
  margin-top: 20px;
}

/* ====== FAQ ====== */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--cinza-300); }
.faq-item[open] { border-color: var(--verde); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--preto);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  list-style: none;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item:hover .faq-question { background: var(--cinza-50); }
.faq-item[open] .faq-question { background: var(--verde-claro); color: var(--verde-escuro); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--cinza-500); transition: transform 300ms ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--verde); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px; line-height: 1.7; color: var(--cinza-700);
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--verde); font-weight: 600; }

/* ====== FINAL CTA ====== */
.final-cta {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco); padding: 80px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(227,115,37,0.2), transparent 70%);
  border-radius: 50%;
}
.final-cta::after {
  content: ''; position: absolute; bottom: -40%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}
.final-cta-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em;
}
.final-cta p {
  font-size: 17px; color: rgba(255,255,255,0.9);
  margin-bottom: 32px; line-height: 1.6;
}
.final-cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* ====== LP MINIMAL HEADER ====== */
.lp-header {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-100);
  padding: 14px 0;
}
.lp-header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.lp-header img { height: 44px; width: auto; }
.lp-header .btn { padding: 10px 18px; font-size: 13px; }
.lp-header .lp-phone {
  display: none; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--verde);
}
.lp-header .lp-phone svg { width: 18px; height: 18px; }
@media (min-width: 768px) {
  .lp-header .lp-phone { display: inline-flex; }
}

/* ====== LP HERO (super focused) ====== */
.lp-hero {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  color: var(--branco); padding: 40px 0 60px;
  position: relative; overflow: hidden;
}
.lp-hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(227,115,37,0.2), transparent 70%);
  border-radius: 50%;
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.lp-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px;
}
.lp-hero h1 .highlight { color: var(--laranja); }
.lp-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.9);
  margin-bottom: 24px; line-height: 1.5;
}
.lp-hero-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.lp-hero-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
}
.lp-hero-feature svg { width: 22px; height: 22px; color: var(--laranja); flex-shrink: 0; }

/* LP FORM CARD */
.lp-form-card {
  background: var(--branco); color: var(--preto);
  padding: 32px 28px; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
}
.lp-form-card::before {
  content: 'FALE COM UM CONSULTOR';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--laranja); color: var(--branco);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.lp-form-card h3 { font-size: 22px; font-weight: 700; margin: 8px 0 6px; text-align: center; }
.lp-form-card .sub { font-size: 14px; color: var(--cinza-500); text-align: center; margin-bottom: 20px; }

/* LP BENEFITS STRIP */
.lp-benefits {
  background: var(--branco);
  padding: 40px 0;
  border-bottom: 1px solid var(--cinza-100);
}
.lp-benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  text-align: center;
}
@media (min-width: 640px) { .lp-benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.lp-benefit-item {}
.lp-benefit-num {
  font-size: 36px; font-weight: 800; color: var(--verde);
  line-height: 1; letter-spacing: -0.02em;
}
.lp-benefit-item:nth-child(even) .lp-benefit-num { color: var(--laranja); }
.lp-benefit-label {
  font-size: 13px; color: var(--cinza-700);
  font-weight: 500; margin-top: 8px;
}

/* LP MINI FOOTER */
.lp-footer {
  background: var(--cinza-900); color: rgba(255,255,255,0.7);
  padding: 40px 0 20px;
  font-size: 13px; line-height: 1.7; text-align: center;
}
.lp-footer strong { color: rgba(255,255,255,0.9); }
.lp-footer a { color: var(--verde); font-weight: 600; }
.lp-footer-divider { margin: 20px auto; max-width: 200px; height: 1px; background: rgba(255,255,255,0.1); }

/* LP sections */
.lp-section { padding: 60px 0; }

/* Fix: legal content uses fixed header so needs top padding */
.page.legal-page .legal-content { padding-top: 100px; }
