@charset "UTF-8";

.menuLateral .title {
  border: none;
  color: #0056b3;
  border-left: 4px solid #ffc107;
  font-size: 24px;
  font-weight: 600;
  padding: 15px 20px;
  margin-bottom: 20px;
  transition: 0.4s;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menuLateral li {
  padding: 8px 20px;
  list-style: none;
  margin: 5px 0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menuLateral li:hover {
  background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
  transform: translateX(5px);
}

.menuLateral li a {
  list-style: none;
  line-height: 1.6;
  color: #495057;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: block;
  padding: 8px 0;
}

.menuLateral li:hover a {
  color: #ffffff;
}

.content-api {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  text-align: justify;
  margin-top: 30px;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-left: 4px solid #0056b3;
}

.content-api h1, .content-api h2, .content-api h3, .content-api h4, .content-api h5, .content-api h6 {
  color: #0056b3;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
}

.content-api p {
  margin-bottom: 20px;
  text-align: justify;
}

.content-api strong {
  color: #2c3e50;
  font-weight: 600;
}

.content-api ul, .content-api ol {
  margin: 20px 0;
  padding-left: 25px;
}

.content-api li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/** 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 {
  overflow: hidden;
}

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

.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;
  }
  
  .menuLateral .title {
    font-size: 20px;
    padding: 12px 15px;
  }
  
  .content-api {
    font-size: 14px;
    padding: 20px;
  }
}

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