@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;
  }
}

/* BoxExpand - Leia Mais */
.seo .boxExpand {
  margin: 3rem 0;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.seo .boxExpand #contentExpand {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}

.seo .boxExpand #contentExpand h3 {
  color: #84582e;
  font-family: "Smooch Sans", sans-serif;
  margin-bottom: 1rem;
}

.seo .boxExpand #contentExpand ul {
  margin: 1.5rem 0;
}

.seo .boxExpand #contentExpand ul li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 0.8rem;
  color: #444;
  line-height: 1.6;
}

.seo .boxExpand #contentExpand p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.seo .boxExpand #contentExpand.expanded {
  max-height: 5000px;
}

.seo .boxExpand #contentExpand.expanded::before {
  display: none;
}

.seo .boxExpand #contentExpand::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to top, #f9f9f9 20%, rgba(0, 0, 0, 0) 100%);
}

.seo .boxExpand .btn-expand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  top: 0px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  transition: 0.3s ease;
  background: transparent;
  color: #84582e;
}

.seo .boxExpand .btn-expand:hover {
  color: #fbc412;
}

.seo .boxExpand .btn-expand i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #84582e;
  bottom: 0px;
  font-size: 40px;
  transition: 0.3s ease;
}

.seo .boxExpand .btn-expand span {
  margin-top: 0.5rem;
  font-weight: 600;
}

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