:root {
  --color-dark: #F4F4F4;
  --color-primary: #FF7E23;
  --color-accent: #36A6BF;
  --color-light: #FFFFFF;
}

html, body {
  background: var(--color-dark);
  color: #0D0D0D;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.bg-dark { background-color: #0D0D0D !important; }
.bg-light { background-color: #F8F9FA !important; }
.bg-white { background-color: #FFFFFF !important; }

/* Navbar light overrides */
.navbar-light .navbar-brand { color: #0D0D0D; }
.navbar-light .navbar-brand:hover { color: var(--color-accent); }
.navbar-light .navbar-nav .nav-link { color: rgba(0,0,0,0.7); }
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { color: #0D0D0D; }
.navbar-light .navbar-toggler { border-color: rgba(0,0,0,0.1); }
.navbar-light .navbar-toggler-icon { filter: invert(0); }
.text-primary { color: var(--color-primary) !important; }
.btn-primary, .badge.text-bg-primary { color: #fff !important; }

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #e56e17;
  border-color: #e56e17;
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); color: #fff; }

.link-light:hover, .link-body-emphasis:hover { color: var(--color-accent) !important; }

.navbar .navbar-brand .brand-dot {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  display: inline-block;
  border-radius: 50%;
}

/* Header modern styles */
.topbar { position: sticky; top: 0; z-index: 1031; }
.header-nav { top: 40px; background: rgba(255,255,255,0.7); backdrop-filter: saturate(180%) blur(10px); }
.brand-logo { width: 28px; height: 28px; object-fit: contain; }
.header-nav .nav-link { position: relative; padding: 0.5rem 0.75rem; }
.header-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width .25s ease;
}
.header-nav .nav-link:hover::after, .header-nav .nav-link.active::after { width: 100%; }
.header-nav.elevated { background: rgba(255,255,255,0.95); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.hero-section {
  position: relative;
  padding-top: 7rem !important;
  color: #FFFFFF; /* textos brancos no hero */
  background: linear-gradient(180deg, #051C25 0%, #0E3A4A 35%, #36A6BF 60%, #0B2F3A 100%);
  overflow: hidden;
  isolate: isolate;
}
/* blobs animados sutis para dinamismo */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(600px 400px at calc(20% + var(--mx, 0px)) calc(20% + var(--my, 0px)), rgba(54,166,191,0.28), transparent 60%),
              radial-gradient(700px 450px at calc(80% - var(--mx, 0px)) calc(15% - var(--my, 0px)), rgba(13,59,102,0.26), transparent 60%);
  z-index: -1;
  animation: heroFloat 18s ease-in-out infinite alternate;
}
.hero-section::after {
  filter: blur(8px) saturate(120%);
  opacity: 0.75;
}
@keyframes heroFloat {
  0% { transform: translate3d(0, -1%, 0) scale(1); }
  100% { transform: translate3d(0, 1%, 0) scale(1.02); }
}
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(54,166,191,0.35); box-shadow: 0 12px 30px rgba(54,166,191,0.18); backdrop-filter: blur(10px); color: #fff; }
.hero-section .text-secondary { color: rgba(255,255,255,0.75) !important; }
.hero-section .link-light { color: #FFFFFF !important; }
.hero-section .link-light:hover { color: var(--color-accent) !important; }
.hero-section .btn-outline-light { border-color: rgba(255,255,255,0.6); color: #FFFFFF; }
.hero-section .btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #FFFFFF; }
.hero-section h1, .hero-section h2 { text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.feature-item, .kpi, .testimonial { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.1) !important; }

.cta-section {
  position: relative;
  background: linear-gradient(135deg, #0E3A4A 0%, #0B2F3A 60%, #0E3A4A 100%);
  color: #fff;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(500px 300px at 15% 20%, rgba(54,166,191,0.2), transparent 60%),
    radial-gradient(600px 360px at 85% 30%, rgba(255,126,35,0.18), transparent 60%);
  z-index: 0;
  animation: ctaFloat 16s ease-in-out infinite alternate;
}
.cta-section::after { filter: blur(8px) saturate(115%); opacity: .75; }
@keyframes ctaFloat { 0%{ transform: translateY(-1%);} 100%{ transform: translateY(1%);} }
.cta-section .container, .cta-section .row, .cta-section .col-12 { position: relative; z-index: 1; }
.cta-section .text-secondary { color: rgba(255,255,255,0.8) !important; }

/* Botões na CTA com microinterações e alto contraste */
.cta-section .btn-primary { box-shadow: 0 10px 24px rgba(255,126,35,0.25); }
.cta-section .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,126,35,0.35); }
.cta-section .btn-outline-light { border-color: rgba(255,255,255,0.8); color: #fff; }
.cta-section .btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }

/* Smooth scroll offset fix for fixed navbar */
section { scroll-margin-top: 80px; }

/* Forms */
.form-control, .form-select { background-color: #0F0F10; border-color: rgba(255,255,255,0.12); color: #fff; }
.form-control:focus, .form-select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 0.25rem rgba(54,166,191,0.25); }
label.form-label { color: rgba(255,255,255,0.85); }

/* Utilities overrides */
.text-secondary { color: rgba(0,0,0,0.65) !important; }
.bg-body { background: #FFFFFF !important; }

/* ---------------------- Headings ---------------------- */
h2 {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-bottom: .75rem;
}
h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: .5rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

/* Footer (light) */
footer { color: rgba(0,0,0,0.7); }
footer a { text-decoration: none; color: rgba(0,0,0,0.75); }
footer a:hover { color: #0D0D0D; }

.site-footer {
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,166,191,0.3), transparent);
}
.site-footer .footer-title {
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  color: #0D0D0D;
  position: relative;
}
.site-footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 1px;
}
.site-footer .footer-links li { 
  margin: .6rem 0; 
  position: relative;
}
.site-footer .footer-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  transition: width .3s ease;
}
.site-footer .footer-links li:hover::after {
  width: 100%;
}
.site-footer .footer-links a {
  color: rgba(0,0,0,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .25s ease;
  position: relative;
}
.site-footer .footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
  font-weight: 600;
}
.site-footer .footer-links a i.bi-box-arrow-up-right {
  opacity: 0.5;
  transition: all .2s ease;
  font-size: 0.75rem;
}
.site-footer .footer-links a:hover i.bi-box-arrow-up-right {
  opacity: 1;
  transform: translateX(1px);
}
.site-footer .social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff; font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(13,59,102,0.15);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.site-footer .social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left .6s ease;
}
.site-footer .social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(13,59,102,0.25);
  filter: brightness(1.1);
}
.site-footer .social-btn:hover::before {
  left: 100%;
}
.site-footer .social-btn:active { 
  transform: translateY(-2px) scale(1.04); 
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(18,140,126,0.35);
  z-index: 1040;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 36px rgba(18,140,126,0.45); filter: brightness(1.05); }
.whatsapp-float:active { transform: translateY(0); }

/* ---------------------- CTA Recursos ---------------------- */
.recursos-cta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.recursos-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.recursos-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}
.recursos-cta h3 {
  color: #fff;
  position: relative;
  z-index: 1;
}
.recursos-cta p {
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.btn-success {
  background: #fff;
  border-color: #fff;
  color: #25D366;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}
.btn-success:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
/* ---------------------- Segmentos ---------------------- */
#segmentos {
  background: linear-gradient(180deg, #0E3A4A 0%, #0B2F3A 100%);
  position: relative;
  color: #fff;
}
#segmentos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,166,191,0.5), transparent);
}
#segmentos h2 {
  color: #fff;
}
#segmentos .text-secondary {
  color: rgba(255,255,255,0.8) !important;
}
.segment-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.15) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.segment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
  border-color: rgba(54,166,191,0.4) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
}
.segment-card:hover::before { opacity: 1; }
.segment-icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  color: #fff; font-size: 1.8rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 8px 20px rgba(255,126,35,0.3);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.segment-card:hover .segment-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(255,126,35,0.4);
}
.segment-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  letter-spacing: 0.2px;
}
.segment-description {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.segment-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.segment-features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color .2s ease;
}
.segment-features li:hover {
  color: #fff;
}

/* ---------------------- Integrações ---------------------- */
#integracoes {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  position: relative;
}
#integracoes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,166,191,0.3), transparent);
}
.integration-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.integration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.integration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13,59,102,0.12);
  border-color: rgba(54,166,191,0.2) !important;
}
.integration-card:hover::before { opacity: 1; }
.integration-icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  color: #fff; font-size: 1.8rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.integration-card:hover .integration-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}
.integration-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0D0D0D;
  letter-spacing: 0.2px;
}
.integration-description {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.integration-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.integration-features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
}
.integration-features li:hover {
  color: #0D0D0D;
}

/* ---------------------- Como funciona ---------------------- */
.implementation-info {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.implementation-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.implementation-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(13,59,102,0.1);
  border-color: rgba(54,166,191,0.2) !important;
}
.implementation-info:hover::before { opacity: 1; }
.implementation-icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  color: #fff; font-size: 1.8rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.implementation-info:hover .implementation-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}

/* ---------------------- Sistema Customizado ---------------------- */
.bg-gradient-custom {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 25%, #0E3A4A 75%, #36A6BF 100%);
  position: relative;
  overflow: hidden;
}
.bg-gradient-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(54,166,191,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,126,35,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(54,166,191,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.custom-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(54,166,191,0.2), rgba(255,126,35,0.2));
  border: 1px solid rgba(54,166,191,0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.custom-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}
.feature-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(54,166,191,0.3);
  transform: translateX(8px);
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(54,166,191,0.3);
}
.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.feature-content p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.custom-stats {
  margin-top: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}
.stat-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(54,166,191,0.3);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #36A6BF;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(54,166,191,0.5);
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.custom-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff;
}
.card-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}
.card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.card-body {
  padding: 2rem;
}
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #36A6BF;
  transition: all .3s ease;
}
.flow-step:hover {
  background: #e9ecef;
  transform: translateX(4px);
}
.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0D0D0D;
}
.step-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #6c757d;
}
.flow-arrow {
  display: flex;
  justify-content: center;
  color: #36A6BF;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.customization-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.point-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0D0D0D;
  transition: all .2s ease;
}
.point-item:hover {
  background: #e9ecef;
  transform: translateX(4px);
}
.point-item i {
  color: #36A6BF;
  font-size: 1rem;
}

/* ---------------------- Página Planos ---------------------- */
.hero-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 25%, #0E3A4A 75%, #36A6BF 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(54,166,191,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,126,35,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(54,166,191,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.min-vh-50 {
  min-height: 50vh;
}
.hero-badges .badge {
  font-size: 0.9rem;
  font-weight: 500;
}

.plan-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,59,102,0.15);
  border-color: rgba(54,166,191,0.2) !important;
}
.plan-card:hover::before { opacity: 1; }

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
.plan-badge .badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.plan-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-size: 2rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.plan-card:hover .plan-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0D0D0D;
  letter-spacing: 0.2px;
}
.plan-subtitle {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.plan-price {
  margin: 1rem 0;
}
.plan-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
}
.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: #0D0D0D;
  margin-left: 4px;
}
.plan-price .period {
  font-size: 1rem;
  color: rgba(0,0,0,0.6);
  margin-left: 4px;
}

.feature-category {
  margin-bottom: 1.5rem;
}
.category-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f8f9fa;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
  display: flex;
  align-items: center;
}
.feature-list li:hover {
  color: #0D0D0D;
}
.feature-list li i {
  font-size: 1rem;
}

.plan-cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

.comparison-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.comparison-table .table {
  margin: 0;
}
.comparison-table .table th {
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 1rem;
}
.comparison-table .table td {
  padding: 1rem;
  border-color: #f8f9fa;
  vertical-align: middle;
}
.comparison-table .table-warning {
  background-color: rgba(255,193,7,0.1);
}

.accordion-item {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-button {
  background: #f8f9fa;
  border: none;
  font-weight: 600;
  color: #0D0D0D;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-body {
  background: #fff;
  padding: 1.5rem;
}

/* Responsividade para página de planos */
@media (max-width: 768px) {
  .plan-card {
    margin-bottom: 2rem;
  }
  .plan-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .plan-title {
    font-size: 1.25rem;
  }
  .plan-price .amount {
    font-size: 2.5rem;
  }
  .comparison-table .table th,
  .comparison-table .table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}

/* ---------------------- Página Integrações ---------------------- */
.integration-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.integration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.integration-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,59,102,0.15);
  border-color: rgba(54,166,191,0.2) !important;
}
.integration-card:hover::before { opacity: 1; }

.integration-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-size: 2rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.integration-card:hover .integration-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}

.integration-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0D0D0D;
  letter-spacing: 0.2px;
}
.integration-description {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.integration-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.integration-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
  display: flex;
  align-items: center;
}
.integration-features li:hover {
  color: #0D0D0D;
}
.integration-features li i {
  font-size: 1rem;
}

.integration-benefit-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 6px 16px rgba(13,59,102,0.2);
  margin: 0 auto;
  transition: all .3s ease;
}
.integration-benefit-icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

.integration-step {
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 6px 16px rgba(13,59,102,0.2);
  margin: 0 auto;
  transition: all .3s ease;
}
.integration-step:hover .step-number {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

/* Responsividade para página de integrações */
@media (max-width: 768px) {
  .integration-card {
    margin-bottom: 2rem;
  }
  .integration-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .integration-title {
    font-size: 1.25rem;
  }
  .integration-benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* ---------------------- Página Contato ---------------------- */
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,59,102,0.15);
  border-color: rgba(54,166,191,0.2) !important;
}
.contact-card:hover::before { opacity: 1; }

.contact-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.contact-card:hover .contact-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.phone-icon {
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
}
.email-icon {
  background: linear-gradient(135deg, #FF7E23, #E55A00);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0D0D0D;
  letter-spacing: 0.2px;
}
.contact-description {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact-info {
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  padding: 1rem;
}

.schedule-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all .3s ease;
}
.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: rgba(54,166,191,0.2);
}

.schedule-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 6px 16px rgba(13,59,102,0.2);
  margin: 0 auto;
  transition: all .3s ease;
}
.schedule-card:hover .schedule-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,59,102,0.15);
  border-color: rgba(54,166,191,0.2) !important;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 6px 16px rgba(13,59,102,0.2);
  transition: all .3s ease;
}
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
  display: flex;
  align-items: center;
}
.service-features li:hover {
  color: #0D0D0D;
}
.service-features li i {
  font-size: 1rem;
}

/* Responsividade para página de contato */
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 2rem;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .contact-title {
    font-size: 1.25rem;
  }
  .schedule-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* ---------------------- Página Blog ---------------------- */
.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,59,102,0.15);
  border-color: rgba(54,166,191,0.2) !important;
}
.blog-card:hover::before { opacity: 1; }

.blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}
.blog-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  transition: all .3s ease;
}
.blog-card:hover .blog-placeholder {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.blog-category {
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
}
.blog-date {
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0D0D0D;
  line-height: 1.3;
  transition: color .2s ease;
}
.blog-card:hover .blog-title {
  color: var(--color-primary);
}

.blog-excerpt {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-stats {
  color: rgba(0,0,0,0.5);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.category-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all .3s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: rgba(54,166,191,0.2);
}

.category-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 6px 16px rgba(13,59,102,0.2);
  margin: 0 auto;
  transition: all .3s ease;
}
.category-card:hover .category-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(13,59,102,0.3);
}

.newsletter-card {
  background: linear-gradient(135deg, rgba(54,166,191,0.05), rgba(255,126,35,0.05));
  border: 1px solid rgba(54,166,191,0.1);
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(54,166,191,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,126,35,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #fff;
  font-size: 2rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin: 0 auto;
  transition: all .3s ease;
}
.newsletter-card:hover .newsletter-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}

.newsletter-form .form-control {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: all .3s ease;
}
.newsletter-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(54,166,191,0.25);
}

/* Paginação personalizada */
.pagination .page-link {
  border: 1px solid rgba(0,0,0,0.1);
  color: #0D0D0D;
  transition: all .3s ease;
}
.pagination .page-link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Responsividade para página de blog */
@media (max-width: 768px) {
  .blog-card {
    margin-bottom: 2rem;
  }
  .blog-image {
    height: 150px;
  }
  .blog-placeholder {
    font-size: 2rem;
  }
  .blog-title {
    font-size: 1.1rem;
  }
  .blog-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .newsletter-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .newsletter-form .row {
    flex-direction: column;
  }
  .newsletter-form .col-md-auto {
    width: 100%;
  }
}

/* ---------------------- Página Post Individual ---------------------- */
.post-header {
  position: relative;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.post-category {
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.post-date {
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

.post-reading-time {
  color: rgba(0,0,0,0.5);
  font-style: italic;
}

.post-title {
  color: #0D0D0D;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
}

.post-author {
  margin-top: 2rem;
}

.author-avatar {
  font-size: 3rem;
  color: var(--color-primary);
}

.author-name {
  color: #0D0D0D;
}

.post-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
}

.post-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
}

.post-content {
  background: #fff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.post-body h2 {
  color: #0D0D0D;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  font-size: 1.75rem;
}

.post-body h3 {
  color: #0D0D0D;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.4rem;
}

.post-body h4 {
  color: #0D0D0D;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.2rem;
}

.post-body p {
  color: rgba(0,0,0,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.post-body ul, .post-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-body li {
  color: rgba(0,0,0,0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.post-body strong {
  color: #0D0D0D;
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(54,166,191,0.05), rgba(255,126,35,0.05));
  border: 1px solid rgba(54,166,191,0.1);
  border-left: 4px solid var(--color-primary);
}

.config-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all .3s ease;
  height: 100%;
}

.config-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: rgba(54,166,191,0.2);
}

.benefits-grid .benefit-item {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.benefits-grid .benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 2rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent)) !important;
  border: none;
}

.related-post-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: all .3s ease;
  height: 100%;
}

.related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: rgba(54,166,191,0.2);
}

.related-post-image {
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

.related-post-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  transition: all .3s ease;
}

.related-post-card:hover .related-post-placeholder {
  transform: scale(1.05);
}

.related-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.related-post-category {
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
}

.related-post-date {
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

.related-post-title {
  color: #0D0D0D;
  line-height: 1.3;
  transition: color .2s ease;
}

.related-post-card:hover .related-post-title {
  color: var(--color-primary);
}

.related-post-excerpt {
  line-height: 1.5;
}

/* Breadcrumb personalizado */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: rgba(0,0,0,0.5);
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-accent);
}

.breadcrumb-item.active {
  color: rgba(0,0,0,0.6);
}

/* Responsividade para página de post */
@media (max-width: 768px) {
  .post-content {
    padding: 2rem 1.5rem;
  }
  
  .post-title {
    font-size: 2rem;
  }
  
  .post-subtitle {
    font-size: 1.1rem;
  }
  
  .post-image {
    height: 250px;
  }
  
  .post-image-placeholder {
    font-size: 2.5rem;
  }
  
  .post-body h2 {
    font-size: 1.5rem;
  }
  
  .post-body h3 {
    font-size: 1.3rem;
  }
  
  .post-body p {
    font-size: 1rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .author-avatar {
    font-size: 2.5rem;
  }
  
  .config-card {
    margin-bottom: 1rem;
  }
  
  .benefits-grid .benefit-item {
    margin-bottom: 1rem;
  }
  
  .related-post-image {
    height: 120px;
  }
  
  .related-post-placeholder {
    font-size: 1.5rem;
  }
}

#modulos-producao {
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  position: relative;
}
#modulos-producao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,126,35,0.3), transparent);
}
.module-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13,59,102,0.12);
  border-color: rgba(54,166,191,0.2) !important;
}
.module-card:hover::before { opacity: 1; }
.module-icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  color: #fff; font-size: 1.8rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 8px 20px rgba(13,59,102,0.25);
  margin-bottom: 1rem;
  transition: all .3s ease;
}
.module-icon.special {
  background: linear-gradient(135deg, #FF7E23, #C44E0E);
  box-shadow: 0 8px 20px rgba(255,126,35,0.25);
}
.module-card:hover .module-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(13,59,102,0.35);
}
.module-card:hover .module-icon.special {
  box-shadow: 0 12px 28px rgba(255,126,35,0.35);
}
.module-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0D0D0D;
  letter-spacing: 0.2px;
}
.module-description {
  color: rgba(0,0,0,0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.module-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.module-features li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
}
.module-features li:hover {
  color: #0D0D0D;
}
#planos {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  position: relative;
}
#planos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,166,191,0.3), transparent);
}
.plan-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  border: 1px solid rgba(0,0,0,0.08) !important;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity .3s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,59,102,0.15);
  border-color: rgba(54,166,191,0.2) !important;
}
.plan-card:hover::before { opacity: 1; }
.plan-premium {
  background: linear-gradient(180deg, rgba(54,166,191,0.05), rgba(255,126,35,0.05));
  border-color: rgba(54,166,191,0.15) !important;
}
.plan-premium::before { opacity: 1; }
.plan-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.plan-badge.premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0D0D0D;
}
.plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0D0D0D;
}
.plan-subtitle {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.plan-price {
  margin: 1rem 0;
}
.plan-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
}
.plan-price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: #0D0D0D;
  margin-left: 4px;
}
.feature-category {
  font-weight: 600;
  color: #0D0D0D;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  transition: color .2s ease;
}
.feature-list li:hover {
  color: #0D0D0D;
}
.production-features li {
  font-weight: 500;
}
.premium-features li {
  font-weight: 600;
  color: var(--color-primary);
}
.plan-cta .btn {
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(255,126,35,0.25);
  transition: all .3s ease;
}
.plan-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,126,35,0.35);
}
#recursos { position: relative; }
#recursos .feature-item {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,0,0,0.06) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
  /* cores padrão caso não haja variação */
  --card-a: #FF7E23;
  --card-b: #36A6BF;
}
#recursos .feature-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px; /* largura do traço gradiente */
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-a) 70%, transparent), color-mix(in srgb, var(--card-b) 70%, transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}
#recursos .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(13, 59, 102, 0.18);
  border-color: rgba(54,166,191,0.25) !important;
}
#recursos .feature-item:hover::after { opacity: 1; }
#recursos .feature-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--card-a), var(--card-b));
  box-shadow: 0 6px 18px rgba(13,59,102,0.25);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
#recursos .feature-item h3 { letter-spacing: 0.2px; }

/* Centralização de layout: ícone acima do título */
#recursos .feature-item .d-flex {
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

/* Microinterações dos ícones */
#recursos .feature-item:hover i {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--card-b) 55%, transparent);
  filter: drop-shadow(0 4px 10px color-mix(in srgb, var(--card-b) 55%, transparent));
}

/* Variações por card (1..6) */
#recursos .row.g-4 > div:nth-child(1) .feature-item { --card-a: #36A6BF; --card-b: #0E3A4A; }
#recursos .row.g-4 > div:nth-child(2) .feature-item { --card-a: #FF7E23; --card-b: #C44E0E; }
#recursos .row.g-4 > div:nth-child(3) .feature-item { --card-a: #36A6BF; --card-b: #1A7E97; }
#recursos .row.g-4 > div:nth-child(4) .feature-item { --card-a: #0E3A4A; --card-b: #36A6BF; }
#recursos .row.g-4 > div:nth-child(5) .feature-item { --card-a: #1A7E97; --card-b: #36A6BF; }
#recursos .row.g-4 > div:nth-child(6) .feature-item { --card-a: #C44E0E; --card-b: #FF7E23; }

/* Etiquetas (feature-tag) */
.feature-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-a) 85%, transparent), color-mix(in srgb, var(--card-b) 85%, transparent));
  color: #fff;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--card-b) 45%, transparent);
}


/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Seção recursos: fundo sutil com grid */
#recursos.bg-body {
  background-image:
    linear-gradient(rgba(13,59,102,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,59,102,0.05) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px;
  background-position: center center;
}

/* ---------------------- KPIs (Resultados) ---------------------- */
#beneficios .kpi {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,0,0,0.06) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#beneficios .kpi::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255,126,35,0.45), rgba(54,166,191,0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}
#beneficios .kpi:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(13,59,102,0.18); border-color: rgba(54,166,191,0.25) !important; }
#beneficios .kpi:hover::after { opacity: 1; }
#beneficios .kpi-value { letter-spacing: .5px; }
#beneficios .kpi-label { margin-top: 6px; }

#beneficios.bg-body {
  background-image:
    radial-gradient(600px 300px at 20% 10%, rgba(54,166,191,0.08), transparent 60%),
    radial-gradient(600px 300px at 80% 30%, rgba(255,126,35,0.08), transparent 60%);
}

/* ---------------------- Contato (cards) ---------------------- */
#contato .contact-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(0,0,0,0.06) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: inherit;
}
#contato .contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(90deg, rgba(255,126,35,0.45), rgba(54,166,191,0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}
#contato .contact-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(13,59,102,0.18); border-color: rgba(54,166,191,0.25) !important; }
#contato .contact-card:hover::after { opacity: 1; }
#contato .contact-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  color: #fff; font-size: 1.5rem;
  background: linear-gradient(135deg, #36A6BF, #0E3A4A);
  box-shadow: 0 10px 24px rgba(13,59,102,0.25);
}
#contato .contact-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
#contato .contact-title { margin-top: .75rem; font-weight: 600; }
#contato .contact-value { color: rgba(0,0,0,0.65); margin: .25rem 0 .75rem; }
#contato .contact-actions .btn { pointer-events: none; } /* decorativo; clique na card */


