/* ----------------------------------------------------
   GERENCIADOR MEI FAST - Landing Page Style Sheet
   Modern, Eye-catching, High-converting & Responsive CSS
   ---------------------------------------------------- */

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --accent-color: #10b981;
  --accent-hover: #059669;
  --warning-color: #f59e0b;
  --warning-hover: #d97706;
  --dark-bg: #0f172a;
  --card-bg: #1e293b;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  --hero-gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --cta-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --border-color: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 10px 30px -5px rgba(37, 99, 235, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: #f8fafc;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Helpers */
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.font-weight-800 { font-weight: 800; }

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-uppercase: uppercase;
  letter-spacing: 0.5px;
}

/* Custom Navbar */
.navbar-custom {
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.navbar-custom .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.navbar-custom .nav-link {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--transition);
  border-radius: 8px;
}

.navbar-custom .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Custom Buttons */
.btn-primary-custom {
  background: var(--hero-gradient);
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.55);
  color: #ffffff;
}

.btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-warning-custom {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  border: none;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  text-decoration: none;
}

.btn-warning-custom:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5);
}

.btn-saiba-mais {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-saiba-mais:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* Hero Section */
.hero-section {
  background: var(--bg-gradient);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.badge-glow {
  background: rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.trial-highlight-box {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-left: 4px solid var(--warning-color);
  border-radius: 12px;
  padding: 14px 18px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-mockup-wrapper {
  position: relative;
  perspective: 1000px;
}

.hero-mockup-img,
.hero-video-wrapper {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  overflow: hidden;
}

.hero-mockup-img {
  cursor: pointer;
}

.hero-video-wrapper iframe {
  border: 0;
}

.hero-mockup-wrapper:hover .hero-mockup-img,
.hero-mockup-wrapper:hover .hero-video-wrapper {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 35px 60px -15px rgba(37, 99, 235, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 5;
  backdrop-filter: blur(8px);
}

.badge-top-right {
  top: -15px;
  right: -15px;
  animation: float-anim 3s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: -15px;
  left: -15px;
  animation: float-anim 3.5s ease-in-out infinite alternate-reverse;
}

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

/* Stats Counter Section */
.stats-section {
  background: #ffffff;
  padding: 36px 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.stat-box {
  text-align: center;
  padding: 12px;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-uppercase: uppercase;
  letter-spacing: 0.5px;
}

/* Problem vs Solution Section */
.problem-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
}

.solution-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.15);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-list li, .solution-list li {
  padding: 10px 0;
  font-size: 1.02rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;

}

.problem-list li:not(:last-child), .solution-list li:not(:last-child) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Feature Cards & Grid */
.section-padding {
  padding: 95px 0;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 26px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.08);
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Showcase / Gallery Section */
.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.gallery-img-box {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.05);
}

.zoom-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0.85;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.gallery-card:hover .zoom-badge {
  opacity: 1;
  background: var(--primary-color);
}

.gallery-caption {
  padding: 22px;
}

.tag-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #4338ca;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  text-uppercase: uppercase;
}

.gallery-caption h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1.15rem;
}

.gallery-caption p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Trial CTA Banner */
.trial-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #064e3b 100%);
  border-radius: 24px;
  padding: 55px 45px;
  color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trial-cta-banner::after {
  content: '\f0e7';
  font-family: 'Font Awesome 6 Free', 'FontAwesome';
  font-weight: 900;
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-size: 15rem;
  opacity: 0.05;
  pointer-events: none;
  color: #ffffff;
}

/* FAQ Accordion */
.accordion-custom .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-custom .accordion-button {
  font-weight: 700;
  color: #0f172a;
  padding: 20px 24px;
  font-size: 1.05rem;
  background: #ffffff;
  box-shadow: none !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: rgba(37, 99, 235, 0.04);
}

.accordion-custom .accordion-body {
  padding: 20px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: #94a3b8;
  padding: 65px 0 30px;
  border-top: 1px solid var(--border-color);
}

footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: #ffffff;
}

/* Responsiveness */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.3rem; }
  .hero-section { padding: 120px 0 80px; text-align: center; }
  .hero-subtitle { margin: 0 auto 28px; }
  .stats-section { margin-top: 30px; }
  .trial-cta-banner { text-align: center; padding: 40px 24px; }
  .badge-top-right, .badge-bottom-left { display: none; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.75rem; }
  .feature-card { padding: 24px 20px; }
}

/* WhatsApp Floating Button */
.btn-whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp-float:hover {
  background-color: #20ba5a;
  color: #fff;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .btn-whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}
