/* ==========================================================================
   BRLaudos — Estilos para as Páginas Internas
   Como Funciona, Serviços, Blog, Contrate e Central do Cliente
   ========================================================================== */

/* --------------------------------------------------------------------------
   Globais e Utilitários das Páginas Internas
   -------------------------------------------------------------------------- */

/* Links ativos no menu de navegação */
.main-nav a.nav-active {
  color: var(--white) !important;
  font-weight: 700;
}

.main-nav a.nav-active::after {
  width: 100% !important;
}

/* Ajuste do botão de navegação ativo */
.nav-active-btn {
  background: var(--white) !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15) !important;
}

.nav-active-btn:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.32) !important;
}

/* Destaque em Laranja */
.hl-orange {
  color: var(--orange);
}

/* Estrutura Geral de Hero de Página */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background-color: var(--navy-mid);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 35, 70, 0.8) 0%, var(--navy) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Modificações específicas para fundos de heros */
.page-hero--cf {
  background-image: url('../imagens/back-view-doctor-dentist-working-modern-dental-office-watching-xray-patients-teeth.webp');
}

.page-hero--sv {
  background-image: url('../imagens/close-up-dentist-instruments.webp');
}

/* Efeito de revelar animações padrão do tema */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0) !important;
}

/* --------------------------------------------------------------------------
   Página: Como Funciona
   -------------------------------------------------------------------------- */

.cf-steps-section {
  padding: 80px 0;
  background: var(--navy);
}

.cf-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.cf-step:last-of-type {
  margin-bottom: 0;
}

/* Inversão visual em telas grandes */
.cf-step--left {
  direction: ltr;
}

/* Conteúdo do Step */
.cf-step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cf-step-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cf-step-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.cf-punches {
  margin-bottom: 24px;
  width: 100%;
}

.cf-punches li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.96);
}

.cf-punches li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
}

.cf-step-note {
  font-size: 14px;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 20px;
}

.cf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cf-badge {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.25);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Parte Visual do Step */
.cf-step-visual {
  position: relative;
}

.cf-step-number-circle {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 5;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
}

.cf-step--left .cf-step-number-circle {
  left: auto;
  right: -24px;
}

.cf-step-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cf-step-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cf-step-img-wrap:hover img {
  transform: scale(1.05);
}

/* Divisor de Passos */
.cf-step-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent);
  margin: 64px 0;
}

/* Seção de Diferenciais (Accordions) */
.cf-diferenciais {
  padding: 100px 0;
  background: var(--white);
  color: var(--text-dark);
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
}

.accordion-wrap {
  max-width: 800px;
  margin: 40px auto 0;
}

.accordion-item {
  background: var(--white);
  border: 1px solid #e4e9f2;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20, 38, 74, 0.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.accordion-item:hover {
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 0 18px 40px rgba(20, 38, 74, 0.1);
}

.accordion-item.active {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 8px 30px rgba(20, 38, 74, 0.1);
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s;
}

.accordion-trigger:hover {
  background-color: rgba(20, 38, 74, 0.03);
}

.accordion-icon {
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 28px 24px;
  color: #6b7589;
  font-size: 15px;
  line-height: 1.6;
}

.accordion-body p {
  margin-bottom: 12px;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

/* Seção de FAQ (Duas Colunas) */
.faq-section {
  padding: 100px 0;
  background: var(--navy);
}

/* Overrides: accordion dentro do FAQ mantém fundo escuro */
.faq-section .accordion-item {
  background: var(--navy-card);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.faq-section .accordion-item:hover {
  border-color: rgba(255, 140, 0, 0.3);
  box-shadow: none;
}

.faq-section .accordion-item.active {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.faq-section .accordion-trigger {
  color: var(--white);
}

.faq-section .accordion-trigger:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-section .accordion-body {
  color: rgba(255, 255, 255, 0.85);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-sidebar h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.faq-sidebar p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 32px;
}

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
}

.faq-category-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}

.faq-category-label:not(:first-of-type) {
  margin-top: 32px;
}

.faq-punch-list {
  margin-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.faq-punch-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.faq-punch-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* CTA Final de Páginas Internas */
.page-cta-final {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.page-cta-final .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  z-index: 1;
}

.page-cta-final .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 30%, rgba(15, 35, 70, 0.85) 100%);
}

.page-cta-final .cta-skull {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.page-cta-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-cta-text h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 16px;
}

.page-cta-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 12px;
}

.page-cta-text .cta-note {
  font-size: 13px;
  font-style: italic;
  color: var(--orange);
}

.page-cta-actions {
  display: flex;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   Página: Serviços
   -------------------------------------------------------------------------- */

.sv-service {
  padding: 100px 0;
}

.sv-service--light {
  background: var(--navy);
}

.sv-service--mid {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-service--white {
  background: var(--white);
  color: var(--text-dark);
}

.sv-service--white h2 {
  color: var(--text-dark) !important;
}

.sv-service--white .sv-service-desc {
  color: var(--text-muted) !important;
}

.sv-service--white .sv-includes-title {
  color: var(--text-dark) !important;
}

.sv-service--white .sv-includes-list li {
  color: var(--text-dark) !important;
}

.sv-service--white .sv-img-wrap {
  border-color: rgba(20, 38, 74, 0.08) !important;
  box-shadow: 0 20px 50px rgba(20, 38, 74, 0.12) !important;
}

.sv-service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.sv-service-grid--img-left {
  grid-template-columns: 1fr 1.2fr;
}

.sv-service-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 20px;
}

.sv-service-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sv-includes-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 16px;
}

.sv-includes-list {
  margin-bottom: 32px;
}

.sv-includes-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.96);
}

.sv-includes-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.sv-prazo-box {
  background: rgba(255, 140, 0, 0.06);
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  border-radius: 4px;
  margin-bottom: 32px;
  max-width: 320px;
}

.sv-prazo-item {
  display: flex;
  flex-direction: column;
}

.sv-prazo-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.sv-prazo-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
}

.sv-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s;
}

.sv-img-wrap:hover img {
  transform: scale(1.03);
}

/* BRGuide Section (Premium Dark Style) */
.sv-brguide {
  position: relative;
  padding: 120px 0;
  background-color: #0b1527;
  overflow: hidden;
}

.sv-brguide-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.sv-brguide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.sv-brguide-badge {
  display: inline-block;
  background: rgba(45, 85, 154, 0.2);
  border: 1px solid rgba(45, 85, 154, 0.4);
  color: #6da2f8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sv-brguide-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.sv-brguide-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.5;
  margin-bottom: 24px;
}

.sv-brguide-headline {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.sv-brguide-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.sv-brguide-benefit-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s, border-color 0.25s;
}

.sv-brguide-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 0, 0.2);
}

.sv-benefit-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.sv-brguide-benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sv-brguide-benefit-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.sv-brguide-delivers-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.sv-brguide-delivers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
}

.sv-delivers-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.sv-brguide-prazo-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 32px;
}

.sv-brguide-right img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   Página: Blog
   -------------------------------------------------------------------------- */

/* Hero Especial do Blog */
.blog-hero {
  position: relative;
  padding: 140px 0 80px;
  background-color: var(--navy-mid);
  overflow: hidden;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 35, 70, 0.6) 0%, var(--navy) 100%);
  z-index: 1;
}

.blog-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.blog-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
}

.blog-hero-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 32px;
}

.blog-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-hero-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Filtros do Blog */
.blog-filters {
  background: var(--navy-mid);
  border-y: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-filters-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.blog-filter-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.blog-filter-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.blog-filter-btn--active {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

/* Seção Principal do Blog */
.blog-main-section {
  padding: 80px 0;
  background: var(--navy);
}

.blog-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 48px;
}

/* Grid de Posts */
.blog-posts-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-content: start;
}

.blog-post-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 140, 0, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.blog-post-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-post-card:hover .blog-post-img img {
  transform: scale(1.04);
}

.blog-post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-tag-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--white);
}

.blog-tag-label--gestao { background: #2d559a; }
.blog-tag-label--diagnostico { background: #e06d00; }
.blog-tag-label--tecnologia { background: #167a50; }
.blog-tag-label--planejamento { background: #733fa8; }

.blog-read-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.blog-post-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 12px;
}

.blog-post-body h3 a:hover {
  color: var(--orange);
}

.blog-post-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.2s;
}

.blog-post-card:hover .blog-post-link {
  gap: 10px;
}

/* Sidebar do Blog */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-sidebar-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px;
}

.blog-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  border-left: 3px solid var(--orange);
  padding-left: 12px;
  line-height: 1.2;
}

/* Barra de Busca */
.blog-search-form {
  position: relative;
}

.blog-search-form input {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 48px 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.25s;
}

.blog-search-form input:focus {
  outline: none;
  border-color: var(--orange);
}

.blog-search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
}

.blog-search-btn:hover {
  color: var(--orange);
}

/* Artigos Populares */
.blog-popular-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-popular-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.blog-popular-num {
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 140, 0, 0.3);
  line-height: 1;
  width: 28px;
}

.blog-popular-info h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 4px;
}

.blog-popular-info h4 a:hover {
  color: var(--orange);
}

.blog-popular-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Sidebar */
.blog-sidebar-cta {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-card));
  text-align: center;
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.blog-sidebar-cta h3 {
  border-left: none;
  padding-left: 0;
  font-size: 18px;
  margin-bottom: 12px;
}

.blog-sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Página: Contrate
   -------------------------------------------------------------------------- */

.contrate-hero {
  position: relative;
  padding: 120px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contrate-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.contrate-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(15, 35, 70, 0.95) 20%, rgba(15, 35, 70, 0.8) 100%);
}

.contrate-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--navy) 100%);
  z-index: 2;
}

.contrate-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.contrate-hero-left {
  display: flex;
  flex-direction: column;
}

.contrate-hero-left h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 20px;
}

.contrate-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Lista de Vantagens */
.contrate-trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contrate-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contrate-trust-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 140, 0, 0.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.contrate-trust-item span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Números Rápidos */
.contrate-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.contrate-stat {
  display: flex;
  flex-direction: column;
}

.contrate-stat-value {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 4px;
}

.contrate-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lado Direito: Formulário */
.contrate-hero-right {
  display: flex;
  justify-content: flex-end;
}

.contrate-form-box {
  width: 100%;
  max-width: 480px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.contrate-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contrate-form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

/* Campos de Formulário */
.contrate-form-box label {
  display: block;
  margin-bottom: 20px;
}

.contrate-form-box label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contrate-form-box input,
.contrate-form-box select {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contrate-form-box input:focus,
.contrate-form-box select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

.contrate-form-box select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ff8c00' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.contrate-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Card do formulário — mesmo estilo do formulário "Vamos conversar?" da home */
.contrate-form-wrap {
  display: flex;
  justify-content: flex-end;
}

.contrate-form-card {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: var(--text-dark);
}

.contrate-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.contrate-form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contrate-form .form-field {
  display: block;
  margin-bottom: 16px;
}

.contrate-form .form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.contrate-form input,
.contrate-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--gray-bg);
  border: 1.5px solid #dce1ea;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contrate-form input::placeholder {
  color: #9ba3b5;
}

.contrate-form input:focus,
.contrate-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
  background: var(--white);
}

.contrate-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.contrate-form select option {
  background: var(--white);
  color: var(--text-dark);
}

.contrate-form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}

.contrate-form-tagline {
  font-size: 13px;
  color: var(--orange);
  text-align: center;
  margin-top: 8px;
}



.cc-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cc-hero-inner {
  max-width: 800px;
}

.cc-badge {
  display: inline-block;
  background: rgba(255, 140, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.cc-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cc-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

/* Seção de Downloads e Sidebar */
.cc-downloads-section {
  padding: 80px 0;
  background: var(--navy);
}

.cc-downloads-layout {
  max-width: 800px;
  margin: 0 auto;
}

.cc-downloads-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cc-downloads-title svg {
  color: var(--orange);
}

.cc-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Item de Download */
.cc-download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s, border-color 0.25s;
}

.cc-download-item:last-child {
  border-bottom: none;
}

.cc-download-item--light {
  background: var(--navy-mid);
}

.cc-download-item--mid {
  background: var(--navy-card);
}

/* Destaque TeamViewer */
.cc-download-item--teamviewer {
  background: rgba(45, 85, 154, 0.1);
}

.cc-download-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.cc-download-item--teamviewer:hover {
  background-color: rgba(45, 85, 154, 0.15);
}

.cc-download-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cc-download-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-download-icon--support {
  background: rgba(45, 85, 154, 0.2);
  color: #6da2f8;
}

.cc-download-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.cc-download-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.cc-download-btn {
  font-size: 11px;
  padding: 10px 18px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cc-download-btn svg {
  transition: transform 0.25s;
}

.cc-download-btn:hover svg {
  transform: translateY(2px);
}

/* Nota de Suporte Técnico */
.cc-support-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.cc-support-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.cc-support-note p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cc-support-email {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

/* Sidebar Central do Cliente */
.cc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cc-sidebar-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px;
}

.cc-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cc-sidebar-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* Card Acesso */
.cc-sidebar-access {
  text-align: center;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-card));
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.cc-sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cc-sidebar-access h3 {
  margin-bottom: 8px;
}

/* Card Suporte */
.cc-sidebar-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cc-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  background: var(--navy-mid);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, background-color 0.2s;
}

.cc-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 140, 0, 0.2);
  color: var(--orange);
}

.cc-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Responsivo para Páginas Internas
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .cf-step {
    gap: 40px;
  }
  .faq-layout,
  .cc-downloads-layout,
  .blog-layout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  /* Conversão de Grid em Coluna */
  .cf-step {
    grid-template-columns: 1fr !important;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .cf-step--left .cf-step-visual {
    order: 2;
  }
  
  .cf-step--left .cf-step-content {
    order: 1;
  }

  .faq-layout,
  .sv-service-grid,
  .sv-brguide-inner,
  .cc-downloads-layout,
  .blog-layout,
  .blog-hero-grid,
  .contrate-hero-grid,
  .page-cta-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .page-cta-actions {
    justify-content: flex-start;
  }

  .faq-sidebar {
    position: static;
  }

  .blog-posts-col {
    grid-template-columns: 1fr;
  }

  .contrate-hero-right {
    justify-content: center;
  }

  .cc-download-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cc-download-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contrate-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contrate-stats {
    flex-direction: column;
    gap: 20px;
  }

  .accordion-trigger {
    padding: 16px 20px;
    font-size: 15px;
  }

  .accordion-body {
    padding: 0 20px 20px;
  }
}
