/* ================================================================
   products-custom.css — JRJ Ricoh | Páginas de Produto Modernas
   Isolado do restante site. Aplica-se apenas a p1.html–p13.html
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ────────────────────────────────────────────────
   VARIÁVEIS
──────────────────────────────────────────────── */
:root {
  --p-blue:       #000e8f;
  --p-blue-dark:  #000567;
  --p-red:        #00c0ff;
  --p-red-dark:   #b51219;
  --p-text:       #1a1a2e;
  --p-muted:      #6c757d;
  --p-bg:         #f4f6fb;
  --p-white:      #ffffff;
  --p-border:     rgba(0,0,0,0.07);
  --p-shadow:     0 6px 28px rgba(0,14,143,0.10);
  --p-radius:     14px;
  --p-font-h:     'Outfit', sans-serif;
  --p-font-b:     'Inter', sans-serif;
}

/* ────────────────────────────────────────────────
   RESET BODY para páginas de produto
──────────────────────────────────────────────── */
body.product-page {
  background: var(--p-bg) !important;
  font-family: var(--p-font-b);
}

/* ────────────────────────────────────────────────
   HERO SECTION
──────────────────────────────────────────────── */
.prod-hero {
  background: linear-gradient(135deg, #000e8f 0%, #000567 55%, #180055 100%);
  padding: 72px 20px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--p-red);
  text-align: center;
}
/* Reserve room inside the hero so its heading always clears the site navigation. */
.prod-hero-spaced {
  margin-top: 0;
  padding-top: 200px;
}
.prod-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.prod-hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -5%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(227,30,36,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.prod-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.88);
  font-family: var(--p-font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 18px;
}
.prod-hero h1 {
  font-family: var(--p-font-h) !important;
  font-size: 54px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0 0 14px 0 !important;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.prod-hero p.prod-hero-sub {
  font-family: var(--p-font-b);
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  margin: 0 auto;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .prod-hero { padding: 50px 16px 40px; }
  .prod-hero-spaced { padding-top: 140px; }
  .prod-hero h1 { font-size: 34px !important; }
  .prod-hero p.prod-hero-sub { font-size: 15px; }
}

/* ────────────────────────────────────────────────
   SECTIONS
──────────────────────────────────────────────── */
.prod-section         { padding: 64px 0; background: var(--p-white); }
.prod-section-alt     { padding: 64px 0; background: var(--p-bg); }
@media (max-width: 992px) {
  .prod-section, .prod-section-alt { padding: 44px 0; }
}

/* ────────────────────────────────────────────────
   CARROSSEL DE IMAGEM (Bootstrap 3)
──────────────────────────────────────────────── */
.prod-carousel-wrap {
  background: var(--p-white);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow);
  overflow: hidden;
  position: relative;
}
.prod-carousel-wrap .carousel-inner .item img,
.prod-carousel-wrap img.prod-single-img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  padding: 24px;
  background: #fff;
  display: block;
}
.prod-carousel-wrap .carousel-control {
  background: none !important;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.prod-carousel-wrap .carousel-control .prod-ctrl-icon {
  width: 36px; height: 36px;
  background: rgba(0,14,143,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  transition: background 0.25s;
}
.prod-carousel-wrap .carousel-control:hover .prod-ctrl-icon {
  background: var(--p-red);
}
.prod-carousel-wrap .carousel-indicators li {
  background-color: rgba(0,14,143,0.3);
  border: none;
}
.prod-carousel-wrap .carousel-indicators .active {
  background-color: var(--p-blue);
}

/* ────────────────────────────────────────────────
   TEXTO DO PRODUTO
──────────────────────────────────────────────── */
.prod-desc-title {
  font-family: var(--p-font-h) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--p-blue) !important;
  line-height: 1.25 !important;
  margin: 0 0 8px 0 !important;
}
.prod-desc-sub {
  font-family: var(--p-font-b);
  font-size: 15px;
  color: var(--p-muted);
  margin-bottom: 16px;
}
.prod-desc-body {
  font-family: var(--p-font-b);
  font-size: 14.5px;
  color: #3a3a4a;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 28px;
}

/* ────────────────────────────────────────────────
   BOTÕES CTA
──────────────────────────────────────────────── */
.btn-prod {
  display: inline-block;
  font-family: var(--p-font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.28s ease;
  margin-right: 10px;
  margin-top: 4px;
}
.btn-prod-primary {
  background: var(--p-blue);
  color: #fff !important;
  border: 2px solid var(--p-blue);
  box-shadow: 0 4px 16px rgba(0,14,143,0.28);
}
.btn-prod-primary:hover {
  background: var(--p-red);
  border-color: var(--p-red);
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(227,30,36,0.32);
  transform: translateY(-2px);
}
.btn-prod-outline {
  background: transparent;
  color: var(--p-red) !important;
  border: 2px solid var(--p-red);
}
.btn-prod-outline:hover {
  background: var(--p-red);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────────
   VÍDEO EMBED
──────────────────────────────────────────────── */
.prod-video-box {
  border-radius: var(--p-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,100,0.15);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.prod-video-box iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ────────────────────────────────────────────────
   IMAGEM DESTAQUE (sem vídeo)
──────────────────────────────────────────────── */
.prod-img-box {
  border-radius: var(--p-radius);
  overflow: hidden;
  box-shadow: var(--p-shadow);
  background: #fff;
  padding: 20px;
  text-align: center;
}
.prod-img-box img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

/* ────────────────────────────────────────────────
   LISTA DE VANTAGENS
──────────────────────────────────────────────── */
.prod-features-box {
  background: var(--p-white);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow);
  padding: 32px 28px;
}
.prod-features-box h4 {
  font-family: var(--p-font-h) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--p-text) !important;
  margin: 0 0 22px 0 !important;
}
.prod-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--p-border);
}
.prod-feat-item:last-child { border-bottom: none; }
.prod-feat-icon {
  min-width: 38px; height: 38px;
  background: rgba(0,14,143,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--p-blue);
  font-size: 15px;
}
.prod-feat-text strong {
  font-family: var(--p-font-b);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--p-text);
  display: block;
  margin-bottom: 2px;
}
.prod-feat-text span {
  font-family: var(--p-font-b);
  font-size: 13px;
  color: var(--p-muted);
  line-height: 1.45;
}

/* ────────────────────────────────────────────────
   TABELA DE ESPECIFICAÇÕES
──────────────────────────────────────────────── */
.prod-specs-section {
  background: var(--p-bg);
  padding: 60px 0;
}
.prod-specs-section h2 {
  font-family: var(--p-font-h) !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  color: var(--p-text) !important;
  text-align: center;
  margin: 0 0 36px 0 !important;
}
.prod-specs-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--p-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  background: #fff;
}
.prod-specs-tbl th,
.prod-specs-tbl td {
  padding: 14px 22px;
  font-family: var(--p-font-b);
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.055);
  text-align: left;
}
.prod-specs-tbl tr:last-child th,
.prod-specs-tbl tr:last-child td { border-bottom: none; }
.prod-specs-tbl th {
  background: #eef1ff;
  color: var(--p-blue);
  font-weight: 700;
  width: 36%;
}
.prod-specs-tbl tr:nth-child(even) td { background: #fafbff; }
.prod-specs-tbl tr:hover td { background: #eff2ff; transition: background 0.2s; }

/* Side-by-side specifications and benefits panel. */
.prod-two-column-info {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.prod-two-column-info > .col-md-6 {
  display: flex;
}
.prod-specs-box,
.prod-two-column-info .prod-features-box {
  width: 100%;
  height: 100%;
}
.prod-specs-box {
  background: var(--p-white);
  border-radius: var(--p-radius);
  box-shadow: var(--p-shadow);
  padding: 32px 28px;
}
.prod-specs-box h4,
.prod-two-column-info .prod-features-box h4 {
  font-family: var(--p-font-h) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--p-text) !important;
  text-align: center;
  margin: 0 0 22px 0 !important;
}
.prod-specs-box .prod-specs-tbl {
  box-shadow: none;
}

/* ────────────────────────────────────────────────
   PRODUTOS RELACIONADOS
──────────────────────────────────────────────── */
.prod-related-section {
  background: var(--p-white);
  padding: 60px 0;
}
.prod-related-section h2 {
  font-family: var(--p-font-h) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--p-text) !important;
  text-align: center;
  margin: 0 0 36px 0 !important;
}
.prod-rel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.prod-rel-card {
  width: 200px;
  background: var(--p-white);
  border-radius: var(--p-radius);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.28s ease;
  display: block;
  border: 2px solid transparent;
}
.prod-rel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,14,143,0.16);
  border-color: var(--p-blue);
}
.prod-rel-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  padding: 16px;
  background: var(--p-bg);
}
.prod-rel-card-body {
  padding: 12px 16px 14px;
  border-top: 3px solid var(--p-blue);
}
.prod-rel-card-body p {
  font-family: var(--p-font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--p-blue);
  margin: 0 0 2px 0;
}
.prod-rel-card-body small {
  font-family: var(--p-font-b);
  font-size: 11px;
  color: var(--p-muted);
}

/* ────────────────────────────────────────────────
   BARRA DE NAVEGAÇÃO ENTRE PRODUTOS
──────────────────────────────────────────────── */
.prod-nav-bar {
  background: linear-gradient(135deg, #000e8f 0%, #000567 100%);
  padding: 28px 0 26px;
  border-top: 3px solid var(--p-red);
}
.prod-nav-bar .prod-nav-label {
  font-family: var(--p-font-b);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0 0 14px 0;
}
.prod-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
}
.prod-nav-pill {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.82) !important;
  font-family: var(--p-font-b);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.24s ease;
}
.prod-nav-pill:hover {
  background: var(--p-red);
  color: #fff !important;
  border-color: var(--p-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227,30,36,0.35);
}
.prod-nav-pill.active {
  background: var(--p-red);
  color: #fff !important;
  border-color: var(--p-red);
}

/* ────────────────────────────────────────────────
   RESPONSIVO
──────────────────────────────────────────────── */
@media (max-width: 992px) {
  .prod-features-box { margin-top: 28px; }
  .prod-two-column-info { display: block; }
  .prod-two-column-info .prod-specs-box { margin-bottom: 28px; }
  .prod-rel-card { width: 160px; }
}
@media (max-width: 768px) {
  .prod-specs-tbl th { width: 42%; }
  .prod-nav-pill { font-size: 11px; padding: 5px 11px; }
  .prod-features-box { padding: 22px 18px; }
}
@media (max-width: 480px) {
  .prod-rel-card { width: 140px; }
  .prod-carousel-wrap img { height: 220px; }
}
