/* =========================================================
   MENU OFICIAL BÚSSOLA SOCIAL
   ========================================================= */
/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: #fafbfc;
  color: #101828;
  min-height: 100vh;
}

/* ==========================================
   HEADER
   ========================================== */
.bs-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid rgba(16,24,40,0.06);
}

.bs-menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ==========================================
   LOGO
   ========================================== */
.bs-logo { flex-shrink: 0; }
.bs-logo a { display: block; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.bs-logo a:hover { transform: scale(1.02); }
.bs-logo img { height: 36px; width: auto; display: block; }

/* ==========================================
   MENU LINKS
   ========================================== */
.bs-menu-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  margin-left: 48px;
}

.bs-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bs-menu-links > li { position: relative; }

.bs-menu-links > li > a {
  font-size: 15px;
  font-weight: 500;
  color: #344054;
  text-decoration: none;
  position: relative;
  padding: 8px 4px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}

.bs-menu-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #0f5ae8, #1e6ff5);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px;
}

.bs-menu-links > li > a:hover { color: #0f5ae8; }
.bs-menu-links > li > a:hover::after { width: 100%; }

.bs-chevron {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.6;
}

.bs-has-mega:hover .bs-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.bs-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #d0d5dd;
  background: transparent;
  color: #344054 !important;
  font-size: 15px;
  font-weight: 600 !important;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bs-login:hover {
  border-color: #98a2b3;
  background: #f9fafb;
  color: #101828 !important;
}

/* ==========================================
   CTA BUTTON
   ========================================== */
.bs-cta {
  background: linear-gradient(135deg, #0f5ae8 0%, #1e6ff5 100%);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15,90,232,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.bs-cta:hover {
  background: linear-gradient(135deg, #0c4fd1 0%, #185fe0 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,90,232,0.35);
  color: #fff;
}

.bs-cta:active { transform: translateY(0); }

.bs-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15,90,232,0.35), 0 8px 24px rgba(15,90,232,0.3);
}

/* ==========================================
   PRODUCT BRAND HEADER
   ========================================== */
.bs-pcard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bs-brand-logo {
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  transition: filter 0.25s ease;
  flex-shrink: 0;
}

.bs-brand-logo-gestao   { height: 43px !important; }
.bs-brand-logo-editais  { height: 40px !important; }
.bs-brand-logo-financeiro { height: 38px !important; }
.bs-brand-logo-investidores {
  height: 54px !important;
  filter: drop-shadow(0 1px 2px rgba(15, 90, 232, 0.1));
  transition: filter 0.25s ease;
}

.bs-pcard-investidores:hover .bs-brand-logo-investidores {
  filter: drop-shadow(0 0 6px rgba(15,90,232,0.4));
}

.bs-pcard-gestao:hover .bs-brand-logo-gestao {
  filter: drop-shadow(0 0 6px rgba(15,90,232,0.4));
}
.bs-pcard-financeiro:hover .bs-brand-logo-financeiro {
  filter: drop-shadow(0 0 6px rgba(5,150,105,0.4));
}
.bs-pcard-editais:hover .bs-brand-logo-editais {
  filter: drop-shadow(0 0 6px rgba(124,58,237,0.4));
}

/* ==========================================
   PANEL LAYOUT
   ========================================== */
.bs-mega-panels {
  display: flex;
  gap: 0;
  min-height: 320px;
}

.bs-panel { padding: 6px 4px; }
.bs-panel-left { flex: 1.6; padding-right: 20px; }
.bs-panel-right { flex: 1; padding-left: 20px; }

.bs-panel-divider {
  width: 1px;
  background: rgba(16,24,40,0.07);
  margin: 4px 0;
  flex-shrink: 0;
}

.bs-panel > .bs-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.bs-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  align-items: start;
}

.bs-pcard-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.bs-pcard {
  background: #fff;
  border: 1px solid rgba(16,24,40,0.07);
  border-radius: 10px;
  padding: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bs-pcard:hover {
  box-shadow: 0 6px 20px rgba(16,24,40,0.08);
  transform: translateY(-1px);
}

.bs-pcard-highlight {
  background: linear-gradient(160deg, #f5f8ff 0%, #eef4ff 100%);
  border-color: rgba(15,90,232,0.1);
}

.bs-pcard-sm { padding: 12px; }

.bs-pcard p {
  font-size: 12.5px;
  color: #475467;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ==========================================
   MEGA MENU
   ========================================== */
.bs-has-mega { position: relative; }

.bs-has-mega::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 20px;
  display: none;
  pointer-events: auto;
}

.bs-has-mega:hover::after { display: block; }

.bs-mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  transform: translateY(-8px);
  width: 860px;
  background: #fff;
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 18px;
  display: none;
  box-shadow:
    0 0 0 1px rgba(16,24,40,0.05),
    0 16px 48px rgba(16,24,40,0.12),
    0 6px 12px rgba(16,24,40,0.08);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.bs-has-mega:hover .bs-mega-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bs-mega-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 24px;
  transform: rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-top: 1px solid rgba(16,24,40,0.05);
  border-left: 1px solid rgba(16,24,40,0.05);
}

/* ==========================================
   TAGS
   ========================================== */
.bs-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.bs-tag-realiza {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.bs-tag-apoia {
  background: rgba(15, 90, 232, 0.1);
  color: #0f5ae8;
  border: 1px solid rgba(15, 90, 232, 0.22);
}

.bs-mobile-card .bs-tag {
  position: relative;
  top: auto; right: auto;
  display: inline-block;
  margin-bottom: 10px;
}

/* ==========================================
   DROPDOWN MENU
   ========================================== */
.bs-has-dropdown { position: relative; }

.bs-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 8px;
  display: none;
  box-shadow:
    0 0 0 1px rgba(16,24,40,0.05),
    0 16px 48px rgba(16,24,40,0.12),
    0 6px 12px rgba(16,24,40,0.08);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  list-style: none;
}

.bs-has-dropdown:hover .bs-dropdown {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bs-has-dropdown:hover .bs-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.bs-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 20px;
  transform: rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(16,24,40,0.05);
  border-left: 1px solid rgba(16,24,40,0.05);
}

.bs-dropdown li { margin: 0; }

.bs-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #344054;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

.bs-dropdown li a:hover {
  background: rgba(15,90,232,0.06);
  color: #0f5ae8;
  padding-left: 18px;
}

.bs-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
  display: none;
  pointer-events: auto;
}
.bs-has-dropdown:hover::after { display: block; }

/* ==========================================
   TEXTOS E LINKS
   ========================================== */
.bs-link-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px; font-weight: 600;
  color: #0f5ae8;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  position: relative; z-index: 1;
  padding: 3px 0;
}

.bs-link-highlight svg { transition: transform 0.2s cubic-bezier(0.4,0,0.2,1); }
.bs-link-highlight:hover { color: #0845b8; gap: 12px; }
.bs-link-highlight:hover svg { transform: translateX(4px); }

.bs-link-espera { color: #0f5ae8; }
.bs-link-espera:hover { color: #0845b8; }

.bs-mega-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0 6px;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase;
  color: #667085;
  letter-spacing: 0.08em;
  position: relative; z-index: 1;
}

/* ==========================================
   MÓDULOS
   ========================================== */
.bs-mega-col ul,
.bs-modules-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.bs-mega-col li,
.bs-modules-list li { margin-bottom: 1px; list-style: none; }

.bs-mega-col li a,
.bs-modules-list li a {
  font-size: 12px; color: #475467;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  margin: 0 -6px;
  border-radius: 4px;
  line-height: 1.4;
}

.bs-mega-col li a:hover,
.bs-modules-list li a:hover {
  color: #0f5ae8;
  background: rgba(15,90,232,0.04);
  padding-left: 12px;
}

.bs-module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  font-size: 10px; font-weight: 700;
  color: #0f5ae8;
  background: rgba(15,90,232,0.08);
  border: 1px solid rgba(15,90,232,0.12);
  border-radius: 3px;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}

.bs-mega-col li a:hover .bs-module-number {
  background: #0f5ae8;
  color: #fff;
  border-color: #0f5ae8;
}

.bs-modules-list { display: flex; flex-direction: column; gap: 0; }

/* ==========================================
   HAMBÚRGUER
   ========================================== */
.bs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.bs-hamburger span {
  display: block;
  width: 100%; height: 3px;
  background: #344054;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}

.bs-hamburger:hover span { background: #0f5ae8; }

.bs-hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.bs-hamburger.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.bs-hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ==========================================
   MOBILE MENU
   ========================================== */
.bs-mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bs-mobile-overlay.active { display: block; opacity: 1; }

.bs-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%; max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}

.bs-mobile-menu.active { right: 0; }

.bs-mobile-menu-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bs-mobile-menu-links > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 16px; font-weight: 500;
  color: #344054;
  text-decoration: none;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bs-mobile-menu-links > li > a:hover {
  background: #f0f6ff;
  color: #0f5ae8;
  transform: translateX(4px);
}

.bs-mobile-menu-links .bs-login {
  color: #0f5ae8 !important;
  font-weight: 600 !important;
  background: #f0f6ff !important;
}

.bs-mobile-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,24,40,0.1), transparent);
  margin: 12px 0;
}

.bs-mobile-cta { margin-top: 24px; width: 100%; text-align: center; }
.bs-mobile-cta .bs-cta { display: block; width: 100%; }

.bs-mobile-submenu-toggle { cursor: pointer; }

.bs-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.bs-mobile-submenu.active { max-height: 1200px; }

.bs-mobile-submenu-content {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bs-mobile-card {
  background: #fff;
  border: 1px solid rgba(16,24,40,0.08);
  border-radius: 12px;
  padding: 16px;
  position: relative;
}

.bs-mobile-card h4 {
  font-size: 15px; font-weight: 600;
  color: #101828;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bs-mobile-card p {
  font-size: 13px; color: #475467;
  line-height: 1.5;
  margin-bottom: 12px;
}

.bs-mobile-card .bs-link-highlight { font-size: 13px; }

.bs-mobile-card.highlight {
  background: linear-gradient(135deg, #f0f6ff 0%, #f5f8ff 100%);
  border-color: rgba(15,90,232,0.12);
}

.bs-mobile-card-financeiro {
  background: #f9fafb;
  border-color: rgba(102,112,133,0.15);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
  .bs-mega-menu { width: 92vw; max-width: 860px; }
}

@media (max-width: 960px) {
  .bs-mega-panels { flex-direction: column; }
  .bs-panel-divider { width: 100%; height: 1px; margin: 8px 0; }
  .bs-panel-left, .bs-panel-right { padding: 0; }
}

@media (max-width: 1024px) {
  .bs-menu { gap: 32px; }
  .bs-menu-links { gap: 24px; }
}

@media (max-width: 768px) {
  .bs-menu {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
  }

  .bs-logo { grid-column: 1; justify-self: start; }

  .bs-hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .bs-menu-links { display: none !important; }

  /* CORREÇÃO: esconde todo o bloco de ações no mobile */
  .bs-nav-actions { display: none !important; }

  .bs-mega-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   POPUP
   ========================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,24,40,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.popup-container {
  background: #fff;
  width: min(560px, 92vw);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 26px; cursor: pointer;
  color: #667085;
}

.popup-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4e7ec;
}

.popup-tabs .tab-btn {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  font-size: 15px; font-weight: 500;
  color: #667085;
  cursor: pointer;
  box-shadow: none !important;
  position: relative;
  transition: color 0.2s ease;
}

.popup-tabs .tab-btn:hover { color: #101828; }

.popup-tabs .tab-btn.active {
  color: #0f5ae8;
  font-weight: 600;
}

.popup-tabs .tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 3px;
  background: #0f5ae8;
  border-radius: 3px 3px 0 0;
}

.tab-content { display: none; }
.tab-content.active { display: block; }








.bs-login-select {
  position: relative;
}

.bs-login-select .bs-login {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.bs-login-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 16px 40px rgba(15, 35, 90, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 999;
}

.bs-login-select:hover .bs-login-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bs-login-dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  color: #1b1b1b;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.bs-login-dropdown a:hover {
  background: #f2f6ff;
  color: #0f5ae8;
}

.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

.bs-dot-gestao {
  background: #22c55e;
}

.bs-dot-financeiro {
  background: #0f5ae8;
}

.bs-dot-editais {
  background: #7c3aed;
}

.bs-dot-investidor {
  background: #64748b;
}


.bs-mobile-card .bs-link-highlight {
  display: flex !important;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  gap: 10px;
}

.bs-mobile-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bs-mobile-card .bs-dot {
  margin-right: 0;
}


/* Ajuste para o menu oficial manter a aparência original */
.bs-header,
.bs-mobile-menu,
.popup-overlay {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* =========================================================
   PÁGINA PLANOS BÚSSOLA GESTÃO
   ========================================================= */
:root{
      --azul:#155EEF;
      --azul-dark:#0F49D8;
      --azul-bussola:#0B4F6C;
      --text:#111111;
      --text-soft:#5F6368;
      --border:#E7E7E7;
      --bg:#FFFFFF;
      --bg-soft:#F7F8FA;
      --container:1180px;
    }

    *{ box-sizing:border-box; margin:0; padding:0; }
    html{ scroll-behavior:smooth; }

    body{
      font-family:'DM Sans', sans-serif;
      background:#fff;
      color:var(--text);
      line-height:1.5;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }

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

    .container{
      width:min(100% - 32px, var(--container));
      margin:0 auto;
    }

    .section{ padding:88px 0; }
    .section-soft{ background:var(--bg-soft); }

    .section-head{
      max-width:760px;
      margin:0 auto 48px;
      text-align:center;
    }

    .section-kicker,
    .badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#EEF2FF;
      color:#2448FF;
      border-radius:999px;
      padding:9px 16px;
      font-size:13px;
      font-weight:800;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .section-head h2{
      font-size:clamp(30px, 4vw, 46px);
      line-height:1.06;
      letter-spacing:-0.04em;
      margin-bottom:14px;
      color:#111111;
    }

    .section-head p{
      font-size:18px;
      color:var(--text-soft);
    }

    .page-brand{
      background:#fff;
      padding:44px 0 8px;
    }

    .brand-logo{
      display:flex;
      align-items:center;
      justify-content:flex-start;
    }

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

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:14px 24px;
      font-size:15px;
      font-weight:800;
      transition:.2s ease;
      white-space:nowrap;
      cursor:pointer;
    }

    .btn-primary{
      background:var(--azul);
      color:#fff;
      border:1px solid var(--azul);
    }

    .btn-primary:hover{
      background:var(--azul-dark);
      border-color:var(--azul-dark);
      transform:translateY(-1px);
    }

    .btn-secondary{
      background:#fff;
      color:var(--azul);
      border:1px solid #C9D6FF;
      box-shadow:none;
    }

    .btn-secondary:hover{
      background:#F6F8FF;
      border-color:var(--azul);
      transform:translateY(-1px);
    }

    .hero{
      padding:72px 0 54px;
      background:#fff;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:52px;
      align-items:center;
    }

    .hero h1{
      font-size:clamp(38px, 5vw, 60px);
      line-height:1.01;
      letter-spacing:-0.05em;
      color:#111111;
      margin-bottom:18px;
      max-width:700px;
    }

    .hero p{
      font-size:18px;
      color:var(--text-soft);
      max-width:620px;
      margin-bottom:28px;
    }

    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }

    .hero-media{
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .hero-media img{
      max-height:620px;
      object-fit:contain;
    }

    .quick-points{
      padding-top:24px;
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:16px;
    }

    .quick-card{
      border:1px solid var(--border);
      border-radius:18px;
      padding:22px;
      background:#fff;
    }

    .quick-card h3{
      font-size:18px;
      line-height:1.1;
      margin-bottom:8px;
      letter-spacing:-0.02em;
    }

    .quick-card p{
      font-size:14px;
      color:var(--text-soft);
      margin:0;
    }

    .icon-line{
      width:22px;
      height:22px;
      stroke:currentColor;
      stroke-width:2;
      stroke-linecap:round;
      stroke-linejoin:round;
      fill:none;
    }

    .icon-box{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      border-radius:14px;
      background:#F3F5F7;
      color:var(--azul);
      margin-bottom:16px;
      flex-shrink:0;
    }

    .pain-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:18px;
    }

    .pain-card{
      border:1px solid var(--border);
      background:#fff;
      border-radius:20px;
      padding:24px;
    }

    .pain-card h3{
      font-size:18px;
      line-height:1.15;
      letter-spacing:-0.02em;
      margin-bottom:10px;
    }

    .pain-card p{
      font-size:15px;
      color:var(--text-soft);
    }

    .plans-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:24px;
      align-items:stretch;
    }

    .plan-card{
      position:relative;
      background:#fff;
      border:1px solid var(--border);
      border-radius:26px;
      padding:28px 28px 26px;
      display:flex;
      flex-direction:column;
      min-height:100%;
    }

    .plan-card.featured{
      border:2px solid var(--azul-bussola);
      box-shadow:0 12px 28px rgba(11,79,108,.08);
    }

    .plan-badge{
      position:absolute;
      top:-16px;
      left:50%;
      transform:translateX(-50%);
      background:var(--azul-bussola);
      color:#fff;
      border-radius:999px;
      padding:8px 18px;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
      letter-spacing:.02em;
    }

    .plan-card h3{
      font-size:24px;
      line-height:1.05;
      letter-spacing:-0.03em;
      margin-bottom:10px;
    }

    .plan-card p{
      color:var(--text-soft);
      font-size:15px;
      margin-bottom:20px;
    }

    .plan-divider{
      border:none;
      border-top:1px solid var(--border);
      margin:4px 0 18px;
    }

    .plan-features{
      list-style:none;
      display:grid;
      gap:14px;
      margin-bottom:28px;
      flex:1;
    }

    .plan-features li,
    .bullet-list li{
      display:grid;
      grid-template-columns:18px 1fr;
      gap:10px;
      align-items:start;
      line-height:1.45;
    }

    .plan-features li{
      font-size:15px;
      color:#333;
    }

    .plan-features li::before,
    .bullet-list li::before{
      content:"";
      width:16px;
      height:16px;
      margin-top:3px;
      background:var(--azul);
      -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .plan-card .btn{ width:100%; }

    .split{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:42px;
      align-items:center;
    }

    .content-block h3{
      font-size:clamp(28px, 3vw, 38px);
      line-height:1.08;
      letter-spacing:-0.04em;
      margin-bottom:14px;
    }

    .content-block p{
      font-size:17px;
      color:var(--text-soft);
      margin-bottom:18px;
    }

    .bullet-list{
      list-style:none;
      display:grid;
      gap:12px;
    }

    .bullet-list li{
      font-size:16px;
      color:#222;
    }

    .image-wrap{
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .image-wrap img{
      max-width:100%;
      max-height:650px;
      object-fit:contain;
    }

    .form-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:34px;
      align-items:start;
      background:var(--azul-bussola);
      border-radius:30px;
      padding:42px;
      color:#fff;
    }

    .form-copy h3{
      font-size:clamp(28px, 3vw, 40px);
      line-height:1.08;
      letter-spacing:-0.04em;
      margin-bottom:14px;
    }

    .form-copy p{
      font-size:17px;
      color:rgba(255,255,255,.82);
      margin-bottom:20px;
    }

    .step-list{
      display:grid;
      gap:12px;
    }

    .step-item{
      display:grid;
      grid-template-columns:42px 1fr;
      gap:12px;
      align-items:start;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      padding:16px;
    }

    .step-number{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.14);
      font-weight:800;
    }

    .step-item strong{
      display:block;
      margin-bottom:4px;
    }

    .step-item span{
      color:rgba(255,255,255,.78);
      font-size:14px;
    }

    .hubspot-form-card{
      background:#fff;
      border-radius:24px;
      padding:28px;
      color:#111;
      min-height:520px;
    }

    .hubspot-form-card h4{
      font-size:24px;
      line-height:1.1;
      letter-spacing:-0.03em;
      margin-bottom:8px;
    }

    .hubspot-form-card p{
      color:var(--text-soft);
      font-size:15px;
      margin-bottom:18px;
    }

    .hs-form-frame{
      width:100%;
      min-height:420px;
    }

    .faq-list{
      max-width:820px;
      margin:0 auto;
      display:grid;
      gap:14px;
    }

    details{
      border:1px solid var(--border);
      border-radius:18px;
      padding:20px 22px;
      background:#fff;
    }

    summary{
      list-style:none;
      cursor:pointer;
      font-size:17px;
      font-weight:700;
      color:#111;
    }

    summary::-webkit-details-marker{ display:none; }

    details p{
      font-size:15px;
      color:var(--text-soft);
      margin-top:12px;
    }

    .final-cta{
      border:1px solid var(--border);
      border-radius:28px;
      padding:40px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      background:#fff;
    }

    .final-cta h3{
      font-size:clamp(28px, 3vw, 40px);
      line-height:1.08;
      letter-spacing:-0.04em;
      margin-bottom:10px;
    }

    .final-cta p{
      font-size:17px;
      color:var(--text-soft);
      max-width:760px;
    }

    footer{
      padding:24px 0 40px;
      color:#777;
      font-size:14px;
      text-align:center;
    }


    @media (max-width: 1024px){
      .hero-grid,
      .split,
      .form-wrap,
      .final-cta{
        grid-template-columns:1fr;
      }

      .plans-grid{
        grid-template-columns:1fr;
      }

      .pain-grid,
      .quick-points{
        grid-template-columns:repeat(2, 1fr);
      }
    }

    @media (max-width: 768px){
      .page-brand{ padding:28px 0 0; }
      .brand-logo img{ height:34px; }
      .section{ padding:68px 0; }
      .hero{ padding:50px 0 34px; }
      .hero-media{ order:-1; }
      .pain-grid,
      .quick-points{ grid-template-columns:1fr; }

      .form-wrap{ padding:24px; }
      .hubspot-form-card{ padding:22px; }
      .final-cta{ padding:28px; }
      .hero-cta .btn{ width:100%; }
    }



/* =========================================================
   AJUSTE VISUAL DOS PLANOS - VERSÃO PASTEL
   ========================================================= */

.plans-grid .plan-card{
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.plans-grid .plan-card:hover{
  transform:translateY(-4px);
}

.plans-grid .plan-card:nth-child(1){
  background:#F2F8E8;
  border-color:#D9E8C5;
}

.plans-grid .plan-card:nth-child(1) .icon-box{
  background:#E3F0CF;
  color:#6E9B3A;
}

.plans-grid .plan-card:nth-child(1) .plan-divider{
  border-top-color:#D9E8C5;
}

.plans-grid .plan-card:nth-child(1) .btn-secondary{
  background:#F8FCF2;
  color:#6E9B3A;
  border-color:#C9DEAE;
}

.plans-grid .plan-card:nth-child(1) .btn-secondary:hover{
  background:#EEF7E0;
  color:#5E862F;
  border-color:#AFCB8C;
}

.plans-grid .plan-card:nth-child(2){
  background:#EEF5FF;
  border-color:#7EA7DA;
}

.plans-grid .plan-card:nth-child(2).featured{
  border-color:#0B4F6C;
  box-shadow:0 14px 32px rgba(11,79,108,.12);
}

.plans-grid .plan-card:nth-child(2) .icon-box{
  background:#DCEBFF;
  color:#2E7BEF;
}

.plans-grid .plan-card:nth-child(2) .plan-divider{
  border-top-color:#CFE0F7;
}

.plans-grid .plan-card:nth-child(3){
  background:#F3F4F8;
  border-color:#D8DCE5;
}

.plans-grid .plan-card:nth-child(3) .icon-box{
  background:#E8EBF2;
  color:#6F7C94;
}

.plans-grid .plan-card:nth-child(3) .plan-divider{
  border-top-color:#D8DCE5;
}

.plans-grid .plan-card:nth-child(3) .btn-secondary{
  background:#FAFBFD;
  color:#6F7C94;
  border-color:#C8CFDC;
}

.plans-grid .plan-card:nth-child(3) .btn-secondary:hover{
  background:#F0F3F8;
  color:#59647A;
  border-color:#AFB8C9;
}

.plans-grid .plan-card h3{
  color:#101828;
}

.plans-grid .plan-card p,
.plans-grid .plan-card li{
  color:#334155;
}

@media (max-width: 1024px){
  .plans-grid .plan-card:nth-child(2).featured{
    transform:none;
  }
}
