/* ==========================================================================
   Papo Reto IA — V2 Design System (Header & Hero Components)
   ========================================================================== */

:root {
  --v2-teal: #00AFA7;
  --v2-teal-hover: #00968F;
  --v2-teal-dark: #007A74;
  --v2-teal-light: rgba(0, 175, 167, 0.1);
  --v2-teal-glow: rgba(0, 175, 167, 0.25);
  --v2-navy: #0E1B2B;
  --v2-navy-light: #162A40;
  --v2-slate-dark: #213856;
  --v2-slate-muted: #64748b;
  --v2-glass-bg: rgba(255, 255, 255, 0.88);
  --v2-glass-border: rgba(14, 27, 43, 0.08);
  --v2-glass-shadow: 0 4px 24px -2px rgba(14, 27, 43, 0.06);
}

/* --- V2 HEADER --- */
.v2-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.v2-nav-glass {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--v2-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-glass-border);
  border-radius: 20px;
  padding: 10px 22px;
  box-shadow: var(--v2-glass-shadow);
  transition: all 0.3s ease;
}

.v2-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.v2-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.v2-nav-item {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.v2-nav-item:hover {
  color: var(--v2-teal);
  background: rgba(0, 175, 167, 0.08);
  transform: translateY(-1px);
}

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

.v2-btn-login {
  color: var(--v2-navy);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(14, 27, 43, 0.04);
  border: 1px solid rgba(14, 27, 43, 0.08);
  transition: all 0.2s ease;
}

.v2-btn-login:hover {
  background: rgba(14, 27, 43, 0.08);
  color: var(--v2-teal);
}

.v2-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #00C2B8 0%, #00AFA7 100%);
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px -3px rgba(0, 175, 167, 0.45);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-btn-cta:hover {
  transform: translateY(-1.5px);
  filter: brightness(1.05);
  box-shadow: 0 6px 20px -3px rgba(0, 175, 167, 0.6);
}

.v2-menu-toggle {
  display: none;
  background: white;
  border: 1px solid rgba(14, 27, 43, 0.12);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 9px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  transition: all 0.25s ease;
}

.v2-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--v2-navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile Navigation Dropdown */
.v2-mobile-drawer {
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--v2-glass-border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(14, 27, 43, 0.15);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.v2-mobile-drawer.open {
  display: flex;
}

.v2-mobile-drawer a {
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--v2-navy);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.v2-mobile-drawer a:hover {
  background: rgba(0, 175, 167, 0.08);
  color: var(--v2-teal);
}

/* --- V2 HERO SECTION --- */
.v2-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 70px;
  background: #f8fcfd;
  overflow: hidden;
}

.v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.v2-orb-1 {
  width: 560px;
  height: 560px;
  background: rgba(0, 175, 167, 0.15);
  top: -5%;
  left: -180px;
}

.v2-orb-2 {
  width: 440px;
  height: 440px;
  background: rgba(14, 27, 43, 0.06);
  top: 10%;
  right: -140px;
}

.v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
}

/* Top Pill badge with glowing pulsing dot */
.v2-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(14, 27, 43, 0.1);
  box-shadow: 0 2px 10px rgba(14, 27, 43, 0.04);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--v2-teal-dark);
  margin-bottom: 24px;
}

.v2-pulse-dot-wrapper {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}

.v2-pulse-dot-ring {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-teal);
  opacity: 0.75;
  animation: v2Pulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.v2-pulse-dot-center {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v2-teal);
}

@keyframes v2Pulse {

  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Hero Title */
.v2-hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 850;
  color: var(--v2-slate-dark);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.v2-grad-text {
  background: linear-gradient(180deg, #00C2B8, #00AFA7 65%, #008780);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0, 175, 167, 0.2));
}

.v2-hero-sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

/* Hero Actions */
.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #00C2B8 0%, #00AFA7 100%);
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px -2px rgba(0, 175, 167, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v2-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 8px 28px -2px rgba(0, 175, 167, 0.65);
}

.v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: var(--v2-slate-dark) !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(14, 27, 43, 0.12);
  box-shadow: 0 2px 8px rgba(14, 27, 43, 0.04);
  transition: all 0.25s ease;
}

.v2-btn-secondary:hover {
  background: #f8fafc;
  border-color: rgba(0, 175, 167, 0.3);
  color: var(--v2-teal) !important;
  transform: translateY(-2px);
}

/* Channel Bullets / Pills Grid (4 + 4 Layout) */
.v2-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.v2-channels-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.v2-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(14, 27, 43, 0.09);
  box-shadow: 0 2px 6px rgba(14, 27, 43, 0.04);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.v2-channel-pill:hover {
  transform: translateY(-1px);
  border-color: var(--v2-teal);
  color: var(--v2-navy);
}

.v2-channel-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Meta Business Partner Badge Below Pills */
.v2-meta-partner-wrap {
  margin-top: 14px;
  display: flex;
  align-items: center;
}

.v2-meta-partner-img {
  height: 25px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(14, 27, 43, 0.06));
}

/* Chat Card Widget (Right Side Animation) */
.v2-chat-card {
  background: #ffffff;
  border: 1px solid rgba(14, 27, 43, 0.1);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 16px 40px -10px rgba(14, 27, 43, 0.12), 0 2px 6px rgba(14, 27, 43, 0.04);
}

.v2-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid rgba(14, 27, 43, 0.06);
  border-radius: 14px;
  margin-bottom: 16px;
}

.v2-chat-header-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.v2-chat-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--v2-teal);
}

.v2-chat-messages {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.v2-msg-incoming {
  align-self: flex-start;
  max-width: 88%;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  border: 1px solid rgba(14, 27, 43, 0.08);
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 0.88rem;
  color: var(--v2-slate-dark);
  box-shadow: 0 1px 3px rgba(14, 27, 43, 0.04);
  line-height: 1.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.v2-msg-outgoing {
  align-self: flex-end;
  max-width: 88%;
  background: linear-gradient(180deg, rgba(0, 175, 167, 0.08) 0%, rgba(0, 175, 167, 0.16) 100%);
  border: 1px solid rgba(0, 175, 167, 0.25);
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  font-size: 0.88rem;
  color: var(--v2-navy);
  box-shadow: 0 1px 3px rgba(0, 175, 167, 0.06);
  line-height: 1.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 3-Dot Typing Bubble (Template style) */
.v2-typing-bubble {
  align-self: flex-end;
  padding: 10px 16px;
  border-radius: 18px 18px 4px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.v2-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.v2-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-teal);
  animation: v2Typing 1.4s infinite ease-in-out both;
}

.v2-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.v2-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes v2Typing {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.v2-msg-fade-in {
  animation: v2FadeIn 0.3s ease-out forwards;
}

@keyframes v2FadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v2-chat-dots-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.v2-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s ease;
}

.v2-chat-dot.active {
  background: var(--v2-teal);
  transform: scale(1.3);
}

@media (max-width: 1080px) {
  .v2-nav-links {
    display: none;
  }

  .v2-btn-login {
    display: none;
  }

  /* Point 1: Hide "Escolher plano" button in header on mobile */
  .v2-btn-cta {
    display: none !important;
  }

  .v2-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px;
    background: #ffffff;
    border: 1px solid rgba(14, 27, 43, 0.12);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(14, 27, 43, 0.04);
    cursor: pointer;
    flex-shrink: 0;
  }

  .v2-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .v2-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .v2-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .v2-mobile-drawer {
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 16px 40px rgba(14, 27, 43, 0.15);
    z-index: 1001;
  }

  .v2-mobile-drawer.open {
    display: flex;
  }

  /* Point 3: Reorder hero elements on mobile (Chat between badge and title) */
  .v2-hero {
    padding-top: 105px;
    padding-bottom: 48px;
  }

  .v2-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .v2-hero-content {
    display: contents;
  }

  .v2-pill-badge {
    order: 1;
    margin: 0 auto 16px auto;
  }

  /* Live Interactive Chat widget between badge and title */
  .v2-hero-preview {
    order: 2;
    width: 100%;
    max-width: 440px;
    margin: 0 auto 24px auto;
  }

  .v2-chat-card {
    padding: 18px;
    border-radius: 20px;
  }

  .v2-chat-messages {
    min-height: 140px;
  }

  .v2-hero-title {
    order: 3;
    font-size: clamp(2rem, 5.5vw, 3rem);
    margin: 0 auto 16px auto;
    max-width: 600px;
  }

  .v2-hero-sub {
    order: 4;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 24px auto;
    max-width: 540px;
  }

  .v2-hero-actions {
    order: 5;
    margin: 0 auto 28px auto;
    justify-content: center;
    gap: 12px;
  }

  .v2-btn-primary,
  .v2-btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  /* Point 2: Channels grid 2-column symmetrical layout on mobile */
  .v2-channels-grid {
    order: 6;
    margin: 0 auto 16px auto;
    width: 100%;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .v2-channels-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
    justify-content: center;
  }

  .v2-channel-pill {
    width: 100%;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.82rem;
    font-weight: 600;
  }

  .v2-meta-partner-wrap {
    order: 7;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .v2-header {
    top: 10px;
    padding: 0 10px;
  }

  .v2-nav-glass {
    padding: 8px 14px;
    border-radius: 16px;
  }

  .v2-logo-img {
    height: 30px;
  }
}

/* --- V2 COMPARISON SECTION --- */
/* ==========================================================================
   V2 Section Headers & Background Cadence
   ========================================================================== */
.v2-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px auto;
  position: relative;
  z-index: 2;
}

.v2-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--v2-teal-dark);
  margin-bottom: 12px;
  display: block;
}

.v2-section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 850;
  color: var(--v2-slate-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.v2-section-sub {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Variante On-Dark para seções com fundo escuro */
.v2-section-header.on-dark .v2-eyebrow {
  color: #00D2C8;
}

.v2-section-header.on-dark .v2-section-title {
  color: #FFFFFF;
}

.v2-section-header.on-dark .v2-section-sub {
  color: #94A3B8;
}

/* Cadência de Espaçamento e Fundos de Seções V2 */
.channel-ai-section {
  background: #FFFFFF !important;
  padding: clamp(64px, 7vw, 96px) 0 !important;
  border-top: 1px solid rgba(14, 27, 43, 0.05);
}

.section-soft {
  background: #F8FCFD !important;
  border-top: 1px solid rgba(14, 27, 43, 0.05);
  border-bottom: 1px solid rgba(14, 27, 43, 0.05);
  padding: clamp(64px, 7vw, 96px) 0 !important;
}

.resources-showcase {
  background: #FFFFFF !important;
  padding: clamp(64px, 7vw, 96px) 0 !important;
}

.industry-section {
  background: #0B1522 !important;
  padding: clamp(64px, 7vw, 96px) 0 !important;
}

.trust-section {
  background: #FFFFFF !important;
  border-top: 1px solid rgba(14, 27, 43, 0.05);
  padding: clamp(64px, 7vw, 96px) 0 !important;
}

.v2-comparison-section {
  padding: clamp(64px, 7vw, 96px) 0;
  background: #F8FCFD;
  border-top: 1px solid rgba(14, 27, 43, 0.05);
  border-bottom: 1px solid rgba(14, 27, 43, 0.05);
  position: relative;
}

.integrations-section {
  background: #FFFFFF !important;
  padding: clamp(64px, 7vw, 96px) 0 !important;
  overflow: hidden;
}

.integrations-section .v2-section-header {
  margin: 48px auto !important;
}

/* Comparison Card / Table Container */
.v2-table-card {
  background: #ffffff;
  border: 1px solid rgba(14, 27, 43, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 40px -10px rgba(14, 27, 43, 0.08);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto 40px auto;
}

/* Table Header Row */
.v2-table-header {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  background: #f8fafc;
  border-bottom: 1px solid rgba(14, 27, 43, 0.08);
  font-weight: 700;
}

.v2-table-col {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}

.v2-table-col.col-brand {
  background: rgba(0, 175, 167, 0.08);
  border-left: 1px solid rgba(0, 175, 167, 0.2);
  border-right: 1px solid rgba(0, 175, 167, 0.2);
  justify-content: center;
  color: var(--v2-navy);
  font-size: 1rem;
  font-weight: 800;
}

.v2-table-col.col-other {
  justify-content: center;
  color: #64748b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Table Rows */
.v2-table-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  border-bottom: 1px solid rgba(14, 27, 43, 0.06);
  transition: background 0.2s ease;
}

.v2-table-row:last-child {
  border-bottom: none;
}

.v2-table-row:hover {
  background: rgba(248, 250, 252, 0.8);
}

.v2-table-feature {
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--v2-slate-dark);
  display: flex;
  align-items: center;
}

.v2-table-val {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-table-val.col-brand {
  background: rgba(0, 175, 167, 0.04);
  border-left: 1px solid rgba(0, 175, 167, 0.15);
  border-right: 1px solid rgba(0, 175, 167, 0.15);
}

/* Check Icons & Badges */
.v2-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #00C2B8 0%, #00AFA7 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 175, 167, 0.35);
}

.v2-badge-limited {
  background: #fef3c7;
  color: #d97706;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.v2-dash-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Responsive Table */
@media (max-width: 680px) {
  .v2-table-header,
  .v2-table-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .v2-table-feature {
    font-size: 0.82rem;
    padding: 12px 10px;
  }
  .v2-table-col {
    padding: 12px 6px;
    font-size: 0.8rem;
  }
  .v2-table-col.col-brand {
    font-size: 0.88rem;
  }
}


/* --- V2 CTA SECTION BUTTONS --- */
.v2-btn-cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0e1b2b !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.v2-btn-cta-light:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  color: #00AFA7 !important;
}

.v2-btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.v2-btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #ffffff;
  transform: translateY(-2px);
}


/* ==========================================================================
   Papo Reto IA — Dedicated Pricing Page Styles (.pr-pricing-section)
   ========================================================================== */

.pr-pricing-section {
  padding-top: 145px;
  padding-bottom: 90px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 175, 167, 0.14) 0%, transparent 65%), #ffffff;
  position: relative;
  overflow: hidden;
}

/* Container Amplo V2 para a Página de Planos */
.page-pricing .container,
.pr-pricing-section .container,
.pr-compare-section .container,
.pr-byok-section .container {
  width: min(calc(100% - 40px), 1280px);
}

.pr-pricing-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 52px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pr-pricing-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 850;
  color: var(--v2-slate-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 18px;
}

.pr-pricing-sub {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.65;
  max-width: 780px;
}

/* 4 Plans Grid Layout */
.pr-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 50px;
}

/* Plan Card Base */
.pr-plan-card {
  background: #ffffff;
  border: 1px solid rgba(14, 27, 43, 0.1);
  border-radius: 24px;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -5px rgba(14, 27, 43, 0.05);
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pr-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -5px rgba(14, 27, 43, 0.1);
}

/* Featured Card (GROWTH) */
.pr-plan-card.pr-plan-featured {
  border: 2px solid var(--v2-teal);
  box-shadow: 0 16px 40px -8px rgba(0, 175, 167, 0.22);
}

.pr-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #00C2B8 0%, #00AFA7 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 175, 167, 0.35);
  white-space: nowrap;
}

/* Card Header & Flex */
.pr-card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pr-subtle-badge {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.pr-subtle-badge.badge-dark {
  background: #0E1B2B;
  color: #ffffff;
}

.pr-plan-top {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}

.pr-plan-top h2 {
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--v2-slate-dark);
  margin-bottom: 6px;
  line-height: 1.1;
}

.pr-plan-chamada {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--v2-navy);
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: 42px;
}

.pr-plan-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 52px;
}

/* Price Box */
.pr-plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(14, 27, 43, 0.06);
}

.pr-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-navy);
}

.pr-price-num {
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--v2-slate-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pr-price-period {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

/* Resumo Visual dos Limites */
.pr-plan-limits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid rgba(14, 27, 43, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.pr-limit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--v2-navy);
}

.pr-limit-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--v2-teal);
  flex-shrink: 0;
}

.pr-channels-text {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.38;
  margin-bottom: 18px;
  min-height: 48px;
}

/* Plan Buttons */
.pr-btn-plan {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 22px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
}

.pr-btn-secondary {
  background: #ffffff;
  color: var(--v2-navy);
  border: 1px solid rgba(14, 27, 43, 0.16);
  box-shadow: 0 2px 6px rgba(14, 27, 43, 0.04);
}

.pr-btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--v2-teal);
  color: var(--v2-teal);
}

.pr-btn-primary {
  background: linear-gradient(180deg, #00C2B8 0%, #00AFA7 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 175, 167, 0.4);
}

.pr-btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 22px rgba(0, 175, 167, 0.55);
}

/* Features List */
.pr-plan-features {
  flex-grow: 1;
  padding-top: 14px;
  border-top: 1px solid rgba(14, 27, 43, 0.06);
  margin-bottom: 20px;
}

.pr-feature-intro {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--v2-teal-dark);
  margin-bottom: 10px;
}

.pr-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pr-plan-features li {
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.35;
  position: relative;
  padding-left: 18px;
}

.pr-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--v2-teal);
  font-weight: 800;
  font-size: 0.82rem;
}

/* Cabeçalho agrupador para lista de recursos incremental ("Tudo do plano X, mais:") */
.pr-feature-group-title {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  color: #0E1B2B !important;
  margin-top: 8px !important;
  margin-bottom: 4px !important;
  padding-left: 0 !important;
  padding-bottom: 6px !important;
  border-bottom: 1px dashed #CBD5E1;
  letter-spacing: 0.01em;
}

.pr-feature-group-title::before {
  content: "" !important;
  display: none !important;
}

.pr-plan-featured .pr-feature-group-title {
  color: #00AFA7 !important;
}

/* Bottom Link */
.pr-plan-footer {
  margin-top: auto;
  text-align: center;
  padding-top: 10px;
}

.pr-compare-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pr-compare-link:hover {
  color: var(--v2-teal);
}

/* VIP Horizontal Card (Serviço Opcional) */
.pr-vip-horizontal-card {
  background: linear-gradient(135deg, #0E1B2B 0%, #162A40 100%);
  border: 1px solid rgba(0, 175, 167, 0.25);
  border-radius: 24px;
  padding: 36px 40px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 16px 40px -10px rgba(14, 27, 43, 0.25);
  position: relative;
  overflow: hidden;
}

.pr-vip-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--v2-teal);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.pr-vip-info h3 {
  font-size: 1.35rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pr-vip-desc {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 18px;
}

.pr-vip-price-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pr-vip-price-prefix {
  font-size: 0.75rem;
  color: #94a3b8;
}

.pr-vip-price-val {
  font-size: 1.8rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1;
}

.pr-vip-price-tag {
  font-size: 0.75rem;
  color: var(--v2-teal);
  font-weight: 700;
}

/* VIP Items List */
.pr-vip-list-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--v2-teal);
  margin-bottom: 10px;
  display: block;
}

.pr-vip-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pr-vip-items li {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.3;
  position: relative;
  padding-left: 18px;
}

.pr-vip-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--v2-teal);
  font-weight: 800;
}

/* VIP CTA Column */
.pr-vip-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pr-vip-btn {
  width: 100%;
  margin-bottom: 12px;
}

.pr-vip-disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}

/* Responsiveness */
@media (max-width: 1180px) {
  .pr-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pr-vip-horizontal-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .pr-plans-grid {
    grid-template-columns: 1fr;
  }
  .pr-vip-horizontal-card {
    padding: 24px 20px;
  }
}


/* ==========================================================================
   Papo Reto IA — Equal Vertical Alignment for Pricing Cards
   ========================================================================== */

.pr-plan-card {
  padding-top: 32px !important;
}

.pr-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.pr-absolute-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

/* Desktop Minimum Heights for Structural Alignment */
@media (min-width: 1181px) {
  .pr-plan-top h2 {
    height: 32px;
    margin-bottom: 8px;
  }

  .pr-plan-chamada {
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .pr-plan-desc {
    min-height: 58px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .pr-plan-price-box {
    height: 50px;
    margin-bottom: 16px;
  }

  .pr-plan-limits {
    min-height: 96px;
    margin-bottom: 14px;
  }

  .pr-channels-text {
    min-height: 52px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .pr-btn-plan {
    margin-bottom: 22px;
  }
}

/* Reset fixed min-heights on Tablet & Mobile to prevent empty whitespace */
@media (max-width: 1180px) {
  .pr-plan-chamada,
  .pr-plan-desc,
  .pr-plan-price-box,
  .pr-plan-limits,
  .pr-channels-text {
    min-height: auto !important;
    height: auto !important;
  }
}


.pr-vip-items {
  margin: 0 auto;
}

.pr-vip-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}


/* ==========================================================================
   Papo Reto IA — Seção: Como Funcionam os Créditos
   ========================================================================== */

.pr-credits-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 175, 167, 0.08) 0%, transparent 60%), #060D17;
  border-top: 1px solid rgba(0, 175, 167, 0.15);
  color: #ffffff;
}

.pr-credits-header {
  max-width: 1050px;
  margin: 0 auto 56px auto;
}

.pr-credits-h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 12px 0 16px 0;
  letter-spacing: -0.02em;
}

.pr-credits-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* Layout Principal (2 partes) */
.pr-credits-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 72px;
}

/* Widget do Painel de Consumo (Lado Esquerdo) */
.pr-credits-dashboard-widget {
  background: linear-gradient(145deg, rgba(14, 27, 43, 0.95) 0%, rgba(8, 18, 32, 0.95) 100%);
  border: 1px solid rgba(0, 175, 167, 0.3);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
}

.pr-widget-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pr-widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pr-widget-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00AFA7;
  background: rgba(0, 175, 167, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 175, 167, 0.25);
}

.pr-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00AFA7;
  box-shadow: 0 0 8px #00AFA7;
}

.pr-balance-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.pr-balance-num-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0;
}

.pr-balance-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.pr-balance-unit {
  font-size: 1.1rem;
  color: #00AFA7;
  font-weight: 600;
}

.pr-balance-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.pr-widget-progress {
  margin: 24px 0;
}

.pr-progress-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pr-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00AFA7 0%, #00E6D8 100%);
  border-radius: 10px;
}

.pr-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.pr-widget-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-widget-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.pr-widget-auto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Grade 2x2 de Cards (Lado Direito) */
.pr-credits-cards-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pr-credit-card {
  background: rgba(14, 27, 43, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}



.pr-credit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 175, 167, 0.1);
  border: 1px solid rgba(0, 175, 167, 0.2);
  color: #00AFA7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pr-credit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.pr-credit-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

/* Etapas de Como Funciona */
.pr-credits-steps-wrapper {
  margin-bottom: 56px;
}

.pr-credits-steps-title {
  margin-bottom: 36px;
}

.pr-steps-section-h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 8px;
}

.pr-credits-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pr-step-card {
  background: rgba(14, 27, 43, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
}

.pr-step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #00AFA7;
  opacity: 0.85;
  margin-bottom: 12px;
}

.pr-step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.pr-step-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

/* Aviso de Saldo (Card Horizontal) */
.pr-credits-warning-card {
  background: linear-gradient(135deg, rgba(14, 27, 43, 0.85) 0%, rgba(8, 18, 32, 0.85) 100%);
  border: 1px solid rgba(0, 175, 167, 0.3);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.pr-warning-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 175, 167, 0.12);
  border: 1px solid rgba(0, 175, 167, 0.3);
  color: #00AFA7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-warning-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pr-warning-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Footnotes */
.pr-credits-footnotes {
  list-style: none;
  padding: 0;
  margin: 0 0 56px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-credits-footnotes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* BYOK Teaser */
.pr-byok-teaser {
  background: linear-gradient(135deg, rgba(0, 175, 167, 0.12) 0%, rgba(14, 27, 43, 0.95) 100%);
  border: 1px solid rgba(0, 175, 167, 0.35);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.pr-byok-teaser-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.pr-byok-teaser-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.pr-byok-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Responsividade da Seção de Créditos */
@media (max-width: 1024px) {
  .pr-credits-main-grid {
    grid-template-columns: 1fr;
  }

  .pr-credits-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pr-byok-teaser {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .pr-credits-section {
    padding: 60px 0;
  }

  .pr-credits-h2 {
    font-size: 1.75rem;
  }

  .pr-credits-cards-2x2 {
    grid-template-columns: 1fr;
  }

  .pr-credits-steps-grid {
    grid-template-columns: 1fr;
  }

  .pr-credits-warning-card {
    flex-direction: column;
    padding: 24px;
  }

  .pr-byok-teaser {
    padding: 24px;
  }
}




/* ==========================================================================
   Papo Reto IA — Seção Créditos (Design System da Home - Light Cards)
   ========================================================================== */

.pr-credits-section {
  padding: 80px 0;
  background: transparent;
  color: #0F172A;
}

.pr-credits-header {
  max-width: 1100px;
  margin: 0 auto 52px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-credits-header .v2-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #00AFA7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.pr-credits-h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
  margin: 12px 0 16px 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.pr-credits-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

/* Grade Principal de 6 Cards (3 colunas em Desktop) - Design System da Home (White Cards) */
.pr-credits-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.pr-credit-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 24px;
  color: #0F172A;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}



.pr-credit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 175, 167, 0.08);
  border: 1px solid rgba(0, 175, 167, 0.2);
  color: #00AFA7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.pr-credit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.pr-credit-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

/* Banner Inferior Estilo Design System da Home */
.pr-credits-bottom-banner {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 28px 32px;
  color: #0F172A;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
}

.pr-bottom-banner-left {
  display: flex;
  flex-direction: column;
}

.pr-banner-title-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pr-warning-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 175, 167, 0.1);
  border: 1px solid rgba(0, 175, 167, 0.2);
  color: #00AFA7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-bottom-banner-left h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.pr-bottom-banner-left p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

.pr-bottom-banner-right {
  display: flex;
  align-items: center;
}

.pr-byok-mini-box {
  background: rgba(0, 175, 167, 0.05);
  border: 1px solid rgba(0, 175, 167, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.pr-byok-mini-box h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.pr-byok-mini-box p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
  .pr-credits-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pr-credits-bottom-banner {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .pr-credits-section {
    padding: 60px 0;
  }

  .pr-credits-h2 {
    font-size: 1.75rem;
  }

  .pr-credits-grid-6 {
    grid-template-columns: 1fr;
  }

  .pr-credits-bottom-banner {
    padding: 24px;
  }
}

.pr-credit-card,
.pr-credit-card:hover {
  transform: none !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
}

/* ==========================================================================
   SEÇÃO BYOK COM ANTHROPIC (PLANOS E PREÇOS)
   ========================================================================== */
.pr-byok-section {
  padding: 40px 0 80px 0;
  background: transparent;
  color: #0F172A;
}

/* Card Principal Grande Centralizado */
.pr-byok-main-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

/* Conteúdo Introdutório (Topo) */
.pr-byok-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-byok-header .v2-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #00AFA7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pr-byok-h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.pr-byok-highlight-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #00AFA7;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.01em;
}

.pr-byok-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  text-align: center;
  margin: 0;
}

/* Grade de Benefícios 2x3 no Desktop */
.pr-byok-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.pr-byok-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  box-sizing: border-box;
}

.pr-byok-card:hover {
  border-color: rgba(0, 175, 167, 0.4);
  box-shadow: 0 6px 20px rgba(0, 175, 167, 0.08);
}

.pr-byok-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00AFA7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pr-byok-card-content {
  display: flex;
  flex-direction: column;
}

.pr-byok-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.pr-byok-card-content p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* Card Destaque (2 colunas) — Custos de Infraestrutura dos Canais */
.pr-byok-card-featured {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 1px solid rgba(0, 175, 167, 0.25);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 175, 167, 0.05);
}

.pr-byok-card-featured:hover {
  border-color: rgba(0, 175, 167, 0.5);
  box-shadow: 0 8px 24px rgba(0, 175, 167, 0.1);
}

.pr-byok-card-featured .pr-byok-card-content {
  width: 100%;
}

.pr-byok-card-featured h3 {
  font-size: 1.15rem;
  color: #0F172A;
  margin-bottom: 8px;
}

.pr-byok-featured-desc {
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  margin-bottom: 18px !important;
}

.pr-byok-channel-box {
  background: rgba(0, 175, 167, 0.04);
  border: 1px solid rgba(0, 175, 167, 0.18);
  border-radius: 14px;
  padding: 18px 22px;
}

.pr-byok-channel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-byok-channel-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #334155;
}

.pr-byok-channel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00AFA7;
}

.pr-byok-channel-list li strong {
  color: #0E1B2B;
  font-weight: 700;
}

/* Nota Explicativa Inferior */
.pr-byok-footer-note {
  border-top: 1px dashed #E2E8F0;
  padding-top: 24px;
  text-align: center;
}

.pr-byok-footer-note p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: #64748B;
  max-width: 960px;
  margin: 0 auto;
}

/* Responsividade BYOK */
@media (max-width: 1024px) {
  .pr-byok-main-card {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .pr-byok-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .pr-byok-section {
    padding: 20px 0 60px 0;
  }

  .pr-byok-main-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .pr-byok-h2 {
    font-size: 1.6rem;
  }

  .pr-byok-highlight-badge {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .pr-byok-lead {
    font-size: 0.92rem;
  }

  .pr-byok-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pr-byok-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .pr-byok-card-content h3 {
    font-size: 1rem;
  }

  .pr-byok-card-featured {
    grid-column: 1;
    padding: 20px 16px;
  }

  .pr-byok-channel-box {
    padding: 14px 14px;
  }

  .pr-byok-channel-list li {
    font-size: 0.84rem;
  }

  .pr-byok-footer-note {
    padding-top: 18px;
  }

  .pr-byok-footer-note p {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   SEÇÃO 4: COMPARAÇÃO COMPLETA DE PLANOS (PLANOS E PREÇOS)
   ========================================================================== */
.pr-compare-section {
  padding: 60px 0 100px 0;
  background: transparent;
  color: #0F172A;
}

.pr-compare-header {
  max-width: 880px;
  margin: 0 auto 44px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-compare-h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
  margin: 8px 0 12px 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.pr-compare-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 16px 0;
  text-align: center;
}

.pr-compare-vip-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #64748B;
  background: rgba(14, 27, 43, 0.03);
  border: 1px solid rgba(14, 27, 43, 0.06);
  padding: 6px 16px;
  border-radius: 20px;
  margin: 0;
}

.pr-compare-vip-note svg {
  color: #00AFA7;
  flex-shrink: 0;
}

/* Wrapper externo: borda arredondada, sem scroll, overflow hidden para clip */
.pr-compare-table-wrapper {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

/* Div interno: rolagem horizontal no mobile */
.pr-compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

/* Tabela Comparativa */
.pr-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  text-align: center;
}

/* Cabeçalho Sticky da Tabela */
.pr-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 2px solid #E2E8F0;
  padding: 14px 14px;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
}

/* Coluna de Recursos no thead */
.pr-compare-table thead th.col-resource {
  text-align: left;
  z-index: 25;
  padding-left: 24px;
}

/* Rótulo "Recursos" no canto esquerdo */
.th-feature-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0E1B2B;
  letter-spacing: -0.01em;
}

/* Linha inline: Nome do plano + preço lado a lado */
.th-plan-inline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

/* Nome do plano */
.th-plan-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0E1B2B;
  letter-spacing: -0.01em;
}

/* Preço inline */
.th-plan-price {
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748B;
}

.th-plan-price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: #94A3B8;
}

/* Growth: nome + preço em verde-turquesa */
.th-plan-growth .th-plan-name {
  color: #00AFA7;
}
.th-plan-growth .th-plan-price {
  color: #00AFA7;
  opacity: 0.85;
}

/* Scale: nome + preço em preto escuro */
.th-plan-scale .th-plan-name {
  color: #0E1B2B;
}
.th-plan-scale .th-plan-price {
  color: #0E1B2B;
  opacity: 0.7;
}

/* Primeira Coluna Sticky (Recursos) — body e footer */
.pr-compare-table .col-resource {
  position: sticky;
  left: 0;
  z-index: 15;
  background: #ffffff;
  min-width: 280px;
  max-width: 360px;
  text-align: left;
  font-weight: 600;
  color: #0F172A;
  padding-left: 24px;
  padding-right: 16px;
  border-right: 1px solid #E2E8F0;
  box-shadow: 3px 0 12px rgba(15, 23, 42, 0.03);
}

/* Colunas de Planos */
.pr-compare-table .col-plan {
  min-width: 160px;
  width: 18%;
}

.plan-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  background: #00AFA7;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.plan-badge-scale {
  background: #0E1B2B;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0E1B2B;
  letter-spacing: -0.01em;
}

.plan-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.plan-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748B;
}

/* Botões do Cabeçalho e Rodapé da Tabela */
.pr-btn-plan-sm {
  width: 100%;
  max-width: 150px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.pr-btn-plan-sm.pr-btn-primary {
  background: #00AFA7;
  color: #ffffff;
}

.pr-btn-plan-sm.pr-btn-primary:hover {
  background: #00968F;
}

.pr-btn-plan-sm.pr-btn-secondary {
  background: rgba(14, 27, 43, 0.05);
  color: #0E1B2B;
  border: 1px solid rgba(14, 27, 43, 0.1);
}

.pr-btn-plan-sm.pr-btn-secondary:hover {
  background: rgba(14, 27, 43, 0.09);
}

/* Destaque Visual da Coluna Growth */
.pr-compare-table .highlighted-col {
  background: rgba(0, 175, 167, 0.04);
  border-left: 1px solid rgba(0, 175, 167, 0.15);
  border-right: 1px solid rgba(0, 175, 167, 0.15);
}

/* Destaque Visual Discreto da Coluna Scale */
.pr-compare-table .scale-col {
  background: rgba(14, 27, 43, 0.02);
}

/* Linhas de Categoria (Category Header Rows) */
.cat-header-row th {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 0 !important;
}

.cat-toggle-btn,
.cat-title-banner {
  width: 100%;
  background: #F8FAFC;
  border: none;
  border-left: 4px solid #00AFA7;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #0E1B2B;
  font-size: 0.98rem;
  font-weight: 800;
  outline: none;
  box-sizing: border-box;
}

.cat-arrow-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(14, 27, 43, 0.08);
  color: #0E1B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.cat-toggle-btn[aria-expanded="false"] .cat-arrow-icon {
  transform: rotate(-90deg);
}

/* Linhas de Recursos (Cat-Row) */
.cat-row td {
  padding: 14px 16px;
  border-bottom: 1px solid #F1F5F9;
  vertical-align: middle;
  color: #334155;
  transition: background-color 0.2s ease;
}

.cat-row:hover td {
  background: rgba(0, 175, 167, 0.02);
}

.cat-row:hover td.col-resource {
  background: #F8FAFC;
}

.cat-row.collapsed {
  display: none;
}

/* Nota dentro da categoria */
.cat-note-row td {
  padding: 12px 24px !important;
  background: #F8FAFC;
}

.cat-note-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #475569;
  text-align: left;
}

.cat-note-box svg {
  color: #00AFA7;
  flex-shrink: 0;
}

/* Tooltips */
.pr-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 175, 167, 0.15);
  color: #007A74;
  font-size: 0.72rem;
  font-weight: 800;
  margin-left: 6px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  outline: none;
}


.pr-tooltip-trigger::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #0E1B2B;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
  width: max-content;
  max-width: 230px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.pr-tooltip-trigger:hover::after,
.pr-tooltip-trigger:focus::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Tooltips na primeira coluna sticky (.col-resource): alinham à esquerda para evitar corte visual */
.col-resource .pr-tooltip-trigger::after {
  left: 0;
  transform: translateY(4px);
  max-width: 250px;
  text-align: left;
}

.col-resource .pr-tooltip-trigger:hover::after,
.col-resource .pr-tooltip-trigger:focus::after {
  transform: translateY(0);
}

/* Ícones e Badges de Status na Tabela (Estilo Bling com Badge Circular) */
.pr-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00AFA7;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 175, 167, 0.25);
  vertical-align: middle;
}

.pr-dash-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  vertical-align: middle;
}

.pr-badge-soon {
  display: inline-block;
  background: rgba(234, 179, 8, 0.12);
  color: #B45309;
  border: 1px solid rgba(234, 179, 8, 0.3);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pr-text-tag {
  display: inline-block;
  background: rgba(0, 175, 167, 0.1);
  color: #007A74;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pr-text-accent {
  color: #0E1B2B;
  font-weight: 700;
  font-size: 0.84rem;
}

/* Rodapé da Tabela: Legenda e Botões */
.pr-compare-footer-content {
  padding: 24px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pr-compare-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  color: #475569;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pr-compare-bottom-ctas {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}

.pr-compare-bottom-ctas .cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.plan-name-sm {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0E1B2B;
}

/* Responsividade da Tabela Comparativa */
@media (max-width: 1024px) {
  .pr-compare-table thead th {
    top: 60px;
  }
}

@media (max-width: 768px) {
  .pr-compare-section {
    padding: 40px 0 60px 0;
  }

  .pr-compare-h2 {
    font-size: 1.75rem;
  }

  .pr-compare-table .col-resource {
    min-width: 180px;
    max-width: 200px;
    padding-left: 14px;
    padding-right: 10px;
    font-size: 0.84rem;
  }

  .pr-compare-table .col-plan {
    min-width: 135px;
    padding: 10px 8px;
    font-size: 0.84rem;
  }

  .plan-name {
    font-size: 1rem;
  }

  .plan-price {
    font-size: 1.05rem;
  }

  .pr-btn-plan-sm {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .pr-compare-bottom-ctas {
    grid-template-columns: 180px repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .pr-compare-table-wrapper {
    border-radius: 16px;
  }

  .pr-compare-bottom-ctas {
    display: none;
  }
}

/* ==========================================================================
   SEÇÃO DE PERGUNTAS FREQUENTES (FAQ)
   ========================================================================== */
.pr-faq-section {
  padding: 90px 0 100px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}

.pr-faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.pr-faq-sticky {
  position: sticky;
  top: 100px;
}

.pr-faq-h2 {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0E1B2B;
  margin: 14px 0 16px 0;
  letter-spacing: -0.02em;
}

.pr-faq-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.pr-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pr-faq-item {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pr-faq-item:hover {
  border-color: rgba(0, 175, 167, 0.35);
  box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.06);
}

.pr-faq-item.is-open {
  border-color: rgba(0, 175, 167, 0.45);
  box-shadow: 0 8px 24px -4px rgba(0, 175, 167, 0.08);
}

.pr-faq-item h3 {
  margin: 0;
}

.pr-faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.pr-faq-title-text {
  font-size: 1.05rem;
  font-weight: 750;
  color: #0E1B2B;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.pr-faq-button:hover .pr-faq-title-text,
.pr-faq-item.is-open .pr-faq-title-text {
  color: #00AFA7;
}

.pr-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 27, 43, 0.04);
  color: #0E1B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.pr-faq-button:hover .pr-faq-icon {
  background: rgba(0, 175, 167, 0.12);
  color: #00AFA7;
}

.pr-faq-item.is-open .pr-faq-icon {
  background: #00AFA7;
  color: #ffffff;
}

.pr-faq-icon .icon-plus {
  display: block;
}
.pr-faq-icon .icon-minus {
  display: none;
}

.pr-faq-item.is-open .pr-faq-icon .icon-plus {
  display: none;
}
.pr-faq-item.is-open .pr-faq-icon .icon-minus {
  display: block;
}

.pr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pr-faq-answer-inner {
  padding: 0 24px 22px 24px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

.pr-faq-answer-inner p {
  margin: 0 0 12px 0;
}

.pr-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* Responsividade Mobile / Tablet para FAQ (Point 5: Centralizado) */
@media (max-width: 991px) {
  .pr-faq-section {
    padding: 60px 0 70px 0;
  }

  .pr-faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pr-faq-sidebar {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
  }
  
  .pr-faq-sticky {
    position: static;
    text-align: center;
  }

  .pr-faq-sticky .v2-eyebrow {
    display: inline-block;
    text-align: center;
    margin: 0 auto 10px auto;
  }

  .pr-faq-h2 {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    text-align: center;
    margin: 0 auto 14px auto;
  }

  .pr-faq-sub {
    text-align: center;
    margin: 0 auto;
    max-width: 520px;
  }

  .pr-faq-button {
    padding: 18px 20px;
  }
  
  .pr-faq-answer-inner {
    padding: 0 20px 18px 20px;
  }
}

/* ==========================================================================
   KANBAN MOBILE DIAGRAMMING (Point 4: Ocultar widget e diagramar card)
   ========================================================================== */
@media (max-width: 860px) {
  .kanban-section {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .kanban-widget {
    display: none !important;
  }

  .kanban-panel {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 38px 20px !important;
    border-radius: 24px !important;
    background: radial-gradient(circle at 50% 0%, rgba(0, 175, 167, 0.22), transparent 70%),
                linear-gradient(135deg, #0d1b2a, #15354b) !important;
    box-shadow: 0 20px 50px rgba(14, 27, 43, 0.18) !important;
  }

  .kanban-copy {
    max-width: 100% !important;
    text-align: center !important;
  }

  .kanban-copy .eyebrow {
    margin: 0 auto 10px auto !important;
    display: inline-block !important;
  }

  .kanban-copy h2 {
    font-size: clamp(1.65rem, 5vw, 2.2rem) !important;
    line-height: 1.2 !important;
    margin: 0 auto 14px auto !important;
    color: #ffffff !important;
  }

  .kanban-copy p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #c4d0d9 !important;
    max-width: 500px !important;
    margin: 0 auto 22px auto !important;
  }

  .kanban-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }

  .kanban-benefits span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  }
}

@media (max-width: 420px) {
  .kanban-benefits {
    grid-template-columns: 1fr !important;
    max-width: 280px !important;
  }
}

/* ==========================================================================
   V2 Footer — Novo Rodapé Estilo Shadcn / Design System
   ========================================================================== */
.v2-footer {
  background: #0B1522;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 36px;
  color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

.v2-footer-main {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  align-items: start;
}

.v2-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.v2-footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.v2-footer-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 360px;
  margin: 0;
}

.v2-footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}

.v2-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  transition: all 0.25s ease;
}

.v2-footer-socials a:hover {
  color: var(--v2-teal);
  background: rgba(0, 175, 167, 0.12);
  border-color: rgba(0, 175, 167, 0.35);
  transform: translateY(-2px);
}

.v2-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.v2-footer-col h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.v2-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-footer-col a {
  font-size: 0.88rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-col a:hover {
  color: var(--v2-teal);
}

.v2-footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.v2-footer-copy {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
}

.v2-footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.v2-footer-legal a {
  font-size: 0.82rem;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.v2-footer-legal a:hover {
  color: var(--v2-teal);
}

.v2-footer-credit a {
  color: #94A3B8;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .v2-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .v2-footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .v2-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


