:root {
  --surface: #ffffff;
  --surface-alt: #f2f2f2;
  --text: #1a2428;
  --muted: #5e6d73;
  --border: #d8e1e5;
  --accent: #006845;
  --accent-soft: #e9f5f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
}

.page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: start;
}

.tab-container {
  width: 100%;
  height: 100%;
  background: var(--surface);
  overflow: hidden;
}

.mobile-nav-toggle {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.mobile-nav-toggle::before {
  content: "\f0c9";
  color: var(--muted);
  font-family: "Font Awesome 5 Free"; /* Use "Font Awesome 5 Brands" for brand icons */
  font-weight: 900; /* Use 400 for regular icons, 900 for solid icons */
}

.mobile-nav-toggle[aria-expanded="true"]::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free"; /* Use "Font Awesome 5 Brands" for brand icons */
  font-weight: 900; /* Use 400 for regular icons, 900 for solid icons */
}

.tab-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  background: var(--surface-alt);
  max-height: 1000px;
  opacity: 1;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    opacity 0.2s ease,
    padding 0.2s ease;
  webkit-box-shadow: inset 0px 0px 8px -4px rgba(0, 0, 0, 0.45);
  box-shadow: inset -2px 0px 4px -4px rgba(0, 0, 0, 0.45);
}

.tab-nav.is-mobile-collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
}

.tab-group {
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: #9ab9ad;
  color: var(--text);
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 0;
}

.accordion-trigger::after {
  content: "\f0fe";
  font-size: 1rem;
  line-height: 1;
  color: var(--muted);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.accordion-trigger[aria-expanded="true"] {
  background: #006548;
  color: #ffffff;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "\f146";
  color: #ffffff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.group-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  max-height: 240px;
  opacity: 1;
  overflow: hidden;
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    padding 0.2s ease;
}

.group-items.is-collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.tab-item {
  display: inline-block;
  border: none;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.tab-item:hover {
  transform: translateY(-1px);
}

.tab-item:focus-visible {
  outline: none;
  outline-offset: 0;
}

.tab-item.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  border-radius: 0;
}

.tab-content {
  padding: 0 1rem;
}

.nested-tabs {
  margin-top: 1rem;
  box-shadow: none;
}

.tab-container.tabs-orientation-horizontal .tab-nav {
  flex-direction: row;
  flex-wrap: wrap;
}

.tab-container.tabs-orientation-horizontal .tab-item {
  width: auto;
  text-align: center;
}

.tab-panel {
  animation: fadeIn 180ms ease;
}

.tab-panel.is-hidden {
  display: none;
}

.tab-panel img {
  float: left;
  padding-right: 10px;
  width: 83px;
}

.tab-panel h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.tab-panel p {
  margin: 0;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 25px;
  padding: 0 15px;
}

.tab-panel ul {
  list-style: disc;
  margin-bottom: 25px;
}

.tab-panel ul li {
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

article .content-text {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding-top: 25px;
}

article .content-text hr {
  margin: 50px 0;
}

article .content-text h2 {
  font-size: 32px;
  letter-spacing: 0px;
  color: #ee2737;
  padding: 0 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  line-height: 38px;
}

article .content-text h3 {
  letter-spacing: 0px;
  color: #222223;
  padding: 0 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0px;
  font-size: 25px;
}

article .content-text h4 {
  letter-spacing: 0px;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 15px;
  font-size: 22px;
}

article .content-text h6 {
  letter-spacing: 0px;
  font-weight: bold;
  line-height: normal;
  font-size: 14px;
  color: #ee2737;
  padding: 0 15px;
  margin-bottom: 15px;
}

.content-text .p-spacing {
  padding-bottom: 50px;
}

.comparation-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 15px;
}
.comparation-table thead {
  background-color: #006548;
  color: #ffffff;
}
.comparation-table thead th {
  padding: 5px 10px;
  color: #ffffff;
}
.comparation-table tbody td:first-child {
  padding: 15px 10px;
  background-color: #f2f2f2;
  font-weight: 700;
}
.comparation-table tbody td {
  padding: 15px 10px;
  font-size: 0.85em;
  font-weight: 300;
  color: #222223;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.5;
}

.test-video-container iframe {
    width: 79%;
    height: 796px;
    padding: 0 15px;
    padding-bottom: 25px;
    margin: auto;
    display: block;
}

.content-section-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0 15px;
}

.content-section-row .infographic img {
    width: 100%;
    padding-top: 5px;
}

@media (min-width: 768px) {
  article .content-text {
    min-width: 80%;
    max-width: 60%;
  }

  .tab-container {
    display: grid;
    grid-template-columns: 240px 1fr;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .tab-nav {
    display: flex;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
    border-right: 1px solid var(--border);
    border-bottom: 0;
    min-height: 100%;
  }

  .tab-item {
    width: 100%;
    text-align: left;
  }

  .group-items {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .tab-content {
    padding: 1.5rem;
  }

  .nested-tabs {
    display: block;
  }

  .nested-tabs.tabs-orientation-horizontal .tab-nav {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    min-height: 0;
  }

  .nested-tabs.tabs-orientation-horizontal .tab-item {
    width: auto;
    text-align: center;
  }

  .nested-tabs.tabs-orientation-vertical .tab-nav {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .nested-tabs.tabs-orientation-vertical .tab-item {
    width: 100%;
    text-align: left;
  }

  .content-text {
    max-width: 100%;
  }
}
