/*
Theme Name: Contabilidade Ebert v2
Theme URI: https://contabilidadeebert.com.br
Author: Contabilidade Ebert
Description: Tema profissional v2 - Design moderno com navbar fixa, hero split, depoimentos e animacoes. Otimizado para Google Ads.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: contabilidade-ebert
*/

:root {
  --primary: #0f2b4a;
  --primary-light: #163d66;
  --accent: #d4a843;
  --accent-hover: #e6bc5a;
  --background: #ffffff;
  --foreground: #1a1a2e;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --success: #10b981;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --bg-dark: #0a1f38;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

/* ===========================
   NAVBAR FIXA
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.navbar-brand span { color: var(--accent); }

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

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--primary); }

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.navbar-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-1px);
}

.navbar-cta::after { display: none !important; }

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }
}

/* ===========================
   HERO — Split Layout
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  background: linear-gradient(160deg, var(--bg-light) 0%, #eef2f7 50%, #e8edf4 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 .accent { color: var(--accent); }

.hero-text > p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

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

.hero-image .floating-card.card-1 { bottom: 10%; left: -5%; }
.hero-image .floating-card.card-2 { top: 10%; right: -5%; }

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

.floating-card .fc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card .fc-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.floating-card .fc-icon.gold { background: rgba(212,168,67,0.1); color: var(--accent); }

.floating-card .fc-text strong { display: block; font-size: 0.85rem; color: var(--foreground); }
.floating-card .fc-text span { font-size: 0.75rem; color: var(--muted); }

.stats-bar {
  display: flex;
  gap: 2.5rem;
}

.stat-item { text-align: left; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-value .accent { color: var(--accent); font-size: inherit; }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

@media (max-width: 768px) {
  .hero { padding: 6rem 1rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text > p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .stats-bar { justify-content: center; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(15,43,74,0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,43,74,0.3);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(212,168,67,0.3);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(15,43,74,0.04);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* ===========================
   SECTIONS
   =========================== */
section { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark {
  background: linear-gradient(160deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: white;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.bg-dark .section-header h2 { color: white; }
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 550px;
  margin: 0 auto;
}
.bg-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-image .badge-crc {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge-crc strong { display: block; font-size: 1rem; }
.badge-crc span { font-size: 0.75rem; opacity: 0.8; }

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-text > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature .check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16,185,129,0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature span { font-size: 0.9rem; font-weight: 500; color: var(--foreground); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .about-features { grid-template-columns: 1fr; }
}

/* ===========================
   SERVICE CARDS
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.3s;
}

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

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

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,43,74,0.06);
  color: var(--primary);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

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

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--foreground); }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===========================
   TRUST / CREDENTIALS
   =========================== */
.trust-banner {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-banner h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.trust-banner p { opacity: 0.85; line-height: 1.7; margin-bottom: 0.5rem; }
.trust-banner h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.trust-banner .info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 0.75rem; }
.trust-banner .info-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }

@media (max-width: 768px) {
  .trust-banner { grid-template-columns: 1fr; padding: 2rem; }
}

/* ===========================
   DIFFERENTIALS
   =========================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.diff-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,168,67,0.3);
}

.diff-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,43,74,0.06);
  color: var(--primary);
  border-radius: 10px;
  flex-shrink: 0;
}

.diff-content h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--foreground); }
.diff-content p { font-size: 0.85rem; color: var(--muted); }

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.testimonial-stars { color: var(--accent); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,43,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--foreground); }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(160deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--foreground); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--foreground); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  transition: all 0.25s ease;
  background: var(--bg-light);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,43,74,0.08);
  background: white;
}

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

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,168,67,0.3);
}

.contact-info-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,43,74,0.06);
  color: var(--primary);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-info-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--foreground); }
.contact-info-card p, .contact-info-card a { font-size: 0.85rem; color: var(--muted); text-decoration: none; }
.contact-info-card a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===========================
   GOOGLE REVIEW BADGE
   =========================== */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  color: var(--foreground);
}

.google-badge .stars { color: #f59e0b; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-section p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.footer-section a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   POLICY PAGES
   =========================== */
.policy-page { min-height: 100vh; display: flex; flex-direction: column; }

.policy-header {
  background: var(--primary);
  color: white;
  padding: 2rem 1rem;
}

.policy-header .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.policy-header h1 { font-size: 1.5rem; font-weight: 700; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.back-link:hover {
  background: rgba(255,255,255,0.2);
}

.policy-content { flex: 1; padding: 3rem 1rem; background: var(--bg-light); }

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

@media (min-width: 768px) { .policy-container { padding: 3rem; } }

.policy-container h2 { font-size: 1.75rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.policy-container h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-top: 2rem; margin-bottom: 0.75rem; }
.policy-container p { color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.policy-container ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-container li { color: var(--muted); margin-bottom: 0.5rem; line-height: 1.6; }
.policy-date { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

.lgpd-highlight {
  background: rgba(15,43,74,0.04);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.lgpd-highlight p { color: var(--foreground); font-weight: 500; margin: 0; }

.policy-footer {
  background: var(--primary);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.policy-footer p { max-width: 900px; margin: 0 auto; opacity: 0.8; font-size: 0.85rem; }
.policy-footer a { color: var(--accent); text-decoration: none; }
.policy-footer a:hover { text-decoration: underline; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  section { padding: 3.5rem 0; }
  .trust-banner { padding: 1.5rem; }
  .stats-bar { flex-wrap: wrap; gap: 1.5rem; }
}

/* ===========================
   PRESSEL STYLES
   =========================== */
.pressel-page { padding-top: 75px; overflow-x: hidden; font-family: 'Poppins', sans-serif; background-color: #f4f7f9; }

.header-pressel { background: #fff; padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; position: fixed; top: 0; left: 0; right: 0; z-index: 1030; box-shadow: 0 2px 15px rgba(0,0,0,0.06); }
.header-pressel .logo img { height: 28px; }

.menu-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: #003366; padding: 0; }
.sidebar { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background: #fff; box-shadow: 0 0 20px rgba(0,0,0,0.1); z-index: 1100; transition: left 0.3s ease; display: flex; flex-direction: column; }
.sidebar.open { left: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; border-bottom: 1px solid #eee; }
.sidebar-header .logo img { height: 24px; }
.close-btn { background: none; border: none; font-size: 22px; cursor: pointer; color: #555; }
.sidebar nav { padding: 20px; flex-grow: 1; }
.sidebar nav h5 { font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 1rem; }
.sidebar nav a { display: block; padding: 10px 15px; text-decoration: none; color: #333; border-radius: 8px; transition: background-color 0.2s; }
.sidebar nav a:hover { background-color: #f4f7f9; }
.sidebar-footer { padding: 25px; border-top: 1px solid #eee; font-size: 0.9rem; }
.sidebar-footer strong { display: block; font-weight: 600; }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1050; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.sidebar-overlay.show { opacity: 1; visibility: visible; }

.hero-pressel { background-color: #fff; padding: 40px 20px; text-align: center; }
.hero-pressel h1 { font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); color: #1f2937; }
.hero-pressel p { font-size: clamp(1rem, 2.5vw, 1.1rem); color: #4b5563; max-width: 550px; margin: 1rem auto 0; font-weight: 300; }

.pressel-section { padding: 60px 20px; }
.simulador-box { background: #ffffff; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 450px; margin: 0 auto; }
.simulador-box h3 { font-weight: 600; font-size: 1.5rem; margin-bottom: 25px; color: #27262e; }
.simulador-box .subtitle { font-size: 0.9rem; color: #4b5563; margin-bottom: 5px; font-weight: 500; }
#simulador-valor { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
#simulador-slider { -webkit-appearance: none; width: 100%; height: 10px; border-radius: 8px; background: #e9ecef; outline: none; cursor: pointer; }
#simulador-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; background: #fff; border-radius: 50%; border: 6px solid var(--pressel-cor-inicio, #22c55e); box-shadow: 0 4px 10px rgba(0,0,0,0.15); cursor: pointer; margin-top: -7px; }
.simulador-range-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: #6b7280; margin-top: 8px; margin-bottom: 30px; font-weight: 500; }
#simulador-btn { width: 100%; padding: 15px; color: white; font-weight: 600; font-size: 1.1rem; border: none; border-radius: 10px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
#simulador-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.simulador-footer-text { margin-top: 20px; font-size: 0.8rem; color: #9ca3af; text-align: center; }

.imagem-lateral { border-radius: 1.25rem; box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

.beneficios-section { background-color: #fff; }
.beneficio-card { text-align: center; }
.beneficio-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.beneficio-card h5 { font-weight: 600; color: #1f2937; }
.beneficio-card p { color: #4b5563; font-size: 0.95rem; font-weight: 300; }

.footer-pressel { color: #d1d5db; padding: 50px 20px; font-size: 0.9rem; }
.footer-pressel h5 { font-weight: 600; margin-bottom: 15px; font-size: 1.1rem; }
.footer-pressel p, .footer-pressel a { color: #d1d5db; font-weight: 300; text-decoration: none; }
.footer-pressel a:hover { text-decoration: underline; }
.footer-pressel .list-unstyled { list-style: none; padding: 0; }
.footer-pressel .list-unstyled li { margin-bottom: 0.5rem; }
.footer-pressel .copy { margin-top: 40px; padding-top: 25px; border-top: 1px solid #374151; text-align: center; font-size: 0.8rem; color: #9ca3af; }
.footer-pressel .texto-informativo { font-size: 0.75rem; line-height: 1.6; color: #9ca3af; font-weight: 300; }

.contato-empresa { margin-top: 15px; }
.contato-empresa p { margin-bottom: 0.8rem; display: flex; align-items: center; color: #d1d5db; font-weight: 300; }
.contato-empresa i { width: 20px; text-align: center; margin-right: 10px; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
