/* Página Convencional — Tema Fusion (Alinhado com ARXX) */
:root {
  --conv-blue: #293241;
  --conv-blue-2: #1e2530;
  --conv-ink: #111111;
  --conv-surface: #f4f6f8;
  --conv-white: #ffffff;

  --conv-radius: 22px;
  --conv-shadow: 0 10px 30px rgba(0,0,0,.06);

  /* Laranja da marca (compartilhado) */
  --orange: var(--orange, #FF6B35);
  --orange-strong: #ff6600;
  --orange-soft: rgba(255,102,0,.12);
}

/* Transição de fechamento */
html.page-closing body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.conv-page {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, var(--conv-blue-2) 0%, var(--conv-ink) 90%);
  color: var(--conv-white);
}

/* Navbar */
.conv-navbar {
  background: rgba(17,17,17,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.conv-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 14px !important;
}
.conv-navbar .nav-link:hover {
  color: #FF6B35 !important;
}
.conv-nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

/* Hero Section */
.conv-hero {

  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--conv-ink);
}
.conv-hero-bg {
  
  position: absolute; inset: 0; z-index: 0;
}
.conv-hero-bg img {
  
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.72) contrast(1.05);
}
.conv-hero-overlay {
  
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(255,102,0,.15) 0%, rgba(41,50,65,.84) 42%, rgba(17,17,17,.95) 100%);
}
.conv-grid {
  position: absolute; inset: -40px; z-index: 1;
  /* Padrão de grid (diferente das linhas do ARXX para diferenciar) */
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .15;
  transform: perspective(500px) rotateX(20deg);
}

.conv-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
}
.conv-kicker::before {
  content: ""; width: 28px; height: 2px;
  background: var(--orange); border-radius: 999px;
}

.conv-badge {
  display: inline-flex; align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .85rem;
}

/* Hero Card */
.conv-hero-card {
  border-radius: 22px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.conv-hero-thumb {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
}
.conv-hero-thumb img {
  width: 100%; height: 180px; object-fit: cover;
  filter: brightness(.92) contrast(1.05);
}
.conv-hero-thumb-caption {
  position: absolute; left: 12px; bottom: 12px;
  padding: 8px 10px; border-radius: 999px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-size: 0.75rem;
}
.conv-checklist li { line-height: 1.4; margin-bottom: 8px; }

/* Sections */
.conv-section { padding: 100px 0; }
.conv-section--light {
  background: linear-gradient(180deg, var(--conv-white) 0%, var(--conv-surface) 100%);
  color: var(--conv-blue-2);
}
.conv-section--dark {
  background: radial-gradient(circle at top right, rgba(255,102,0,.08), transparent 40%),
              linear-gradient(180deg, var(--conv-blue) 0%, var(--conv-ink) 100%);
  position: relative; overflow: hidden;
  color: white;
}
.conv-section-kicker {
  display: inline-block;
  font-family: 'Pacifico', cursive;
  font-size: 30px;
  margin-bottom: 6px;
  color: var(--orange-strong);
}

/* Cards de Informação */
.conv-info-card {
  background: var(--conv-surface);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--conv-radius);
  padding: 28px;
  box-shadow: var(--conv-shadow);
  height: 100%;
}
.conv-step-num {
  width: 38px; height: 38px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  background: var(--orange);
  box-shadow: 0 10px 25px rgba(255,107,53,.25);
}
.conv-media-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--conv-radius);
  overflow: hidden;
  box-shadow: var(--conv-shadow);
  height: 100%;
}

/* Benefícios */
.conv-benefit-card {
  border-radius: var(--conv-radius);
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .25s ease;
  height: 100%;
}
.conv-benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,102,0,.4);
}
.conv-benefit-ico {
  font-size: 28px;
  color: var(--orange);
}

/* Processo (Cards) */
.conv-process-card {
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  height: 100%;
}
.conv-process-top {
  padding: 22px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.conv-process-ico {
  font-size: 26px;
  color: var(--orange);
  display: inline-block;
  margin-bottom: 10px;
}
.conv-process-body { padding: 20px 22px; }

/* Tabela Comparativa (Estilo Pastel & Clean - Igual ARXX) */
.conv-table-wrap {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(255, 160, 122, 0.15);
  border: 1px solid rgba(0,0,0,0.02);
  overflow: hidden;
}
.conv-compare-table {
  width: 100%; border-collapse: collapse; margin-bottom: 0;
}
.conv-compare-table thead th {
  background: #fdfdfd; color: #9aa0a6;
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px;
  padding: 1.8rem 1.5rem; border-bottom: 2px solid #f0f0f0; font-weight: 700;
}
.conv-compare-table thead th.th-highlight {
  background: #ffdecb !important; color: #cf5818 !important;
  font-weight: 800; border-bottom: 2px solid #ffccb0;
  border-radius: 12px 12px 0 0;
}
.conv-compare-table td {
  padding: 1.5rem; border-bottom: 1px dashed #eef0f2;
  font-size: 0.95rem; color: #636e72; vertical-align: middle;
}
.conv-compare-table td.td-label {
  color: #2d3436; font-weight: 700; background: #fff;
}
.conv-compare-table td.td-highlight {
  background: #fff7f0; color: #d65a18; font-weight: 600;
  border-left: 1px solid #ffead6; border-right: 1px solid #ffead6;
  border-bottom: 1px solid #ffead6;
}
.conv-compare-table tbody tr:hover td { background-color: #fafafa; }
.conv-compare-table tbody tr:hover td.td-highlight { background-color: #ffeacc; }
.conv-note { color: #999; font-size: 0.8rem; margin-top: 15px; }

/* Mobile Table */
@media (max-width: 768px) {
  .conv-compare-table thead { display: none; }
  .conv-compare-table tr {
    display: block; margin-bottom: 2rem; background: #fff;
    border-radius: 16px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
  }
  .conv-compare-table td { display: block; width: 100%; border: none; padding: 1rem 1.5rem; }
  .conv-compare-table td.td-label { background: #f9f9f9; text-transform: uppercase; font-size: 0.75rem; }
  .conv-compare-table td.td-highlight { background: #fff7f0; color: #d65a18; padding: 1rem; }
  .conv-compare-table td.td-highlight::before { content: "CONVENCIONAL: "; font-weight: 800; opacity: 0.7; margin-right: 5px; }
}


/* Carrossel Principal e Galeria (Zoom Effect) */
.conv-carousel {
  border-radius: var(--conv-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  border-top: 3px solid var(--orange-strong);
  box-shadow: 0 22px 50px rgba(0,0,0,.30);
}

.carousel-item{
  height:520px;

}
.conv-img-zoom {
  height: 600px;
  width: 100%;
  object-fit: contain; 
  padding: 40px;       
  background-color: #141414; /* Fundo Matte Black */
  border-radius: 16px;
}
.conv-carousel-caption {
  position: absolute; right: 0; left: 0; bottom: 0;
  padding: 18px 18px 20px; text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}
.conv-carousel-pill {
  display: inline-flex; align-items: center; padding: 8px 12px;
  border-radius: 999px; background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92); font-size: .85rem; font-weight: 700;
}

@media (max-width: 768px) {
  .conv-img-zoom { height: 300px; padding: 20px; }
}

/* FAQ */
.conv-accordion .accordion-item {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  margin-bottom: 14px;
}
.conv-accordion .accordion-button:not(.collapsed) {
  color: var(--orange); background: rgba(255,107,53,.08);
}

/* Footer */
.conv-footer {
  background: var(--conv-ink);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.conv-footer a { color: rgba(255,255,255,.7); text-decoration: none; font-weight: 700; }
.conv-footer a:hover { color: var(--orange); }

/* Utility */
.btn-primary-orange {
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  color: #fff; border: none; border-radius: 999px;
  padding: .85rem 1.45rem; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 14px 28px rgba(255,102,0,.18);
  transition: transform .22s ease;
}
.btn-primary-orange:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,102,0,.24);
}
.btn-outline-light {
 border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .5px;
  padding: .55rem 1.05rem;
}