@charset "UTF-8";

.menuLateral .title {
  border: none;
  color: #0056b3;
  border-left: 2px solid #ffc107;
  font-size: 22px;
  font-weight: 500;
  padding-left: 10px;
  transition: 0.4s;
}

.menuLateral li {
  padding: 3px 30px;
  list-style: none !important;
}

.menuLateral li a {
  line-height: 2.5;
  color: #444444;
  transition: 0.4s;
}

/** CTA */
.hotline-area {
  color: #fff;
  background: red;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.hotline-area .hotline-area h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 45px;
  font-weight: 400;
}

.hotline-area .hotline-area span {
  font-size: 60px;
  font-weight: 800;
  font-family: "Rubik", sans-serif;
  margin-bottom: 28px;
  display: block;
}

.rowTab {
  display: flex;
  padding-top: 2rem;
}

.rowTab .col {
  flex: 1;
}

.rowTab .d-flex {
  display: flex;
}

.rowTab .col:last-child {
  margin-left: 1em;
}

.rowTab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* Accordion styles */
.tabs {
  /* border-radius: 8px; */
  overflow: hidden;
  /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.7rem;
  /* Icon */
}

.tab-label:hover {
  background: #1a252f;
}

.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}

.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}

.tab-close:hover {
  background: #1a252f;
}

input:checked+.tab-label {
  background: #1a252f;
}

input:checked+.tab-label::after {
  transform: rotate(90deg);
}

input:checked~.tab-content {
  max-height: 100vh;
  padding: 1em;
}

@media (max-width: 768px) {
  .rowTab .d-flex {
    flex-direction: column;
  }
}

body.seo {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
}

.int-page.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.product-details1 .swiper {
  border-radius: 1rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  background: #fff;
  padding: 1rem;
}

.product-details1 .swiper-slide img {
  border-radius: 0.75rem;
  max-height: 340px;
  object-fit: cover;
  width: 100%;
  background: #f1f5f9;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--color-primary, #0ea5e9);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-pagination-bullet-active {
  background: var(--color-primary, #0ea5e9);
}

.boxExpand {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  margin-top: 2rem;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: relative;
}

#contentExpand {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}

#contentExpand.expanded {
  max-height: 2000px;
}

.btn-expand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary, #0ea5e9);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem auto 0 auto;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(14,165,233,0.10);
  transition: background 0.2s;
}

.btn-expand:hover {
  background: #0369a1;
}

.menuLateral.sticky-div {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  position: sticky;
  top: 2rem;
}

.menuLateral .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary, #0ea5e9);
  margin-bottom: 1.2rem;
  display: block;
}

.menuLateral ul {
  padding: 0;
  margin: 0;
}

.menuLateral ul li {
  margin-bottom: 0.7rem;
}

.menuLateral ul li a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.menuLateral ul li a:hover {
  background: var(--color-primary, #0ea5e9);
  color: #fff;
}

@media (max-width: 991px) {
  .int-page.section-padding {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .menuLateral.sticky-div {
    position: static;
    margin-top: 1.5rem;
    padding: 1.2rem 1rem;
  }
  .boxExpand {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .product-details1 .swiper {
    padding: 0.5rem;
  }
} 

/*# sourceMappingURL=pg-seo.css.map */