@charset "UTF-8";

/* ==========================================================================
   Página SEO (pg-seo.php) - Estilos das Fontes e Menu Lateral
   D’nisa Uniformes
   ========================================================================== */

/* Typography & Base Styles for SEO Pages */
body.seo {
  font-family: "Google Sans", sans-serif;
  color: #171717;
  background-color: #ffffff;
}

body.seo h1,
body.seo h2,
body.seo h3,
body.seo h4,
body.seo h5,
body.seo h6 {
  font-family: "Google Sans", sans-serif;
  color: #111111;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

body.seo p {
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
  text-align: justify;
}

body.seo strong,
body.seo b {
  color: #111111;
  font-weight: 600;
}

body.seo .boxExpand ul,
body.seo .boxExpand ol {
  margin-bottom: 20px;
  padding-left: 0;
}

body.seo ul li {
  font-family: "Google Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 8px;
  list-style: disc inside;
}

body.seo blockquote {
  border-left: 4px solid #1d8fa5;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #4a4a4a;
  margin: 20px 0;
}

/* Gallery Swiper container */
body.seo .prodintSwiper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.seo .prodintSwiper img {
  border-radius: 16px;
}

/* Expand Box Content Typography */
#contentExpand {
  font-family: "Google Sans", sans-serif;
}

#contentExpand h2 {
  font-size: 24px;
  color: #111111;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}

#contentExpand h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: #1d8fa5;
  border-radius: 2px;
}

#contentExpand h3 {
  font-size: 20px;
  color: #1d8fa5;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ==========================================================================
   Menu Lateral (Sidebar)
   ========================================================================== */

.menuLateral {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.menuLateral .title {
  font-family: "Google Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  display: block;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border: none;
}

.menuLateral .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1d8fa5 0%, #e6121f 100%);
  border-radius: 2px;
}

.menuLateral ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px !important;
}

.menuLateral ul::-webkit-scrollbar {
  width: 5px;
}

.menuLateral ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.menuLateral ul::-webkit-scrollbar-thumb {
  background: #1d8fa5;
  border-radius: 10px;
}

.menuLateral li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.menuLateral li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.menuLateral li a span {
  flex: 1;
  word-break: break-word;
}

.menuLateral li a i {
  font-size: 12px;
  color: #a0aec0;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover State */
.menuLateral li a:hover {
  background: rgba(29, 143, 165, 0.08);
  color: #1d8fa5;
  border-color: rgba(29, 143, 165, 0.2);
  padding-left: 20px;
}

.menuLateral li a:hover i {
  color: #1d8fa5;
  transform: translateX(4px);
}

/* Active State */
.menuLateral li a.active {
  background: #1d8fa5;
  color: #ffffff !important;
  font-weight: 600;
  border-color: #1d8fa5;
  box-shadow: 0 4px 14px rgba(29, 143, 165, 0.3);
}

.menuLateral li a.active i {
  color: #ffffff !important;
  transform: translateX(2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .menuLateral {
    margin-top: 24px;
    padding: 20px 16px;
  }

  .menuLateral ul {
    max-height: 360px;
  }
}