main {
  display: flex;
  flex-direction: column;
}

custom-header {
  animation: slide-up-in 0.55s ease;
}

.banner {
  background: var(--primary-blue);
  background-image: url("/src/assets/banner-alt.png");
  background-position: center;
  background-size: cover;
  display: inline-flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 89px 0;
  color: var(--primary-contrast);
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.34);
}

.banner .container {
  animation: slide-left-in 0.55s ease;
}

/* METRICS */
.metrics {
  background: var(--primary-red);
  text-align: center;
}

/* CLIENTS */
.clients {
  justify-content: center;
  padding: 55px 0;
}

.clients .container {
  overflow: hidden;
  margin: 0;
  max-width: unset;
}

.clients .row {
  flex-wrap: nowrap;
  gap: 34px;
  animation: slider 15s linear infinite;
}

.clients img {
  opacity: 0.55;
  height: 89px;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* SOLUTIONS */
.solutions {
  background: var(--background-alt);
}

.solutions .container {
  gap: 34px;
}

.solutions-container {
  background: var(--background);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  width: 100%;
  flex: 1;
}

.solutions-container .tabs {
  flex: 1;
  gap: 8px;
  justify-content: space-evenly;
}

.solutions-container .solution {
  display: flex;
  padding: 21px;
  cursor: pointer;
}

.solutions-container .solution:not(.active) {
  gap: 0;
}

.solutions-container .solution h4 {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solutions-container .solution.active h4 {
  color: var(--primary-blue);
}

.solutions-container .solution p {
  max-height: 0;
  overflow: hidden;
}

.solutions-container .solution.active p {
  max-height: unset;
}

.solutions-container .solution h4::after {
  content: "+";
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  transition: all 0.21s ease;
}

.solutions-container .solution.active h4::after {
  color: var(--primary-blue);
  content: "-";
}

.solutions .img {
  background-position: center;
  background-size: cover;
  aspect-ratio: 1.618;
  flex: 1;
}

@media (max-width: 1024px) {
  .solutions-container {
    flex-direction: column-reverse;
  }

  .solutions-container .img {
    width: 100%;
  }
}

/* DIFERENTIALS */
.diferentials .card {
  min-width: 233px;
  flex: 1;
}

.contact {
  background: var(--primary-blue);
  text-align: center;
}

.metrics *,
.contact * {
  color: var(--primary-contrast);
}

/* FAQ */
.faq .questions {
  display: flex;
  flex: 1;
  width: 100%;
}

.faq .questions details {
  display: flex;
  flex: 1;
  padding: 21px;
  cursor: pointer;
}

.faq .questions details:not([open]) {
  gap: 0;
}

.faq .questions summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq .questions summary::after {
  content: "+";
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  transition: all 0.21s ease;
}

.faq .questions details[open] summary::after {
  transform: rotate(-45deg);
}

/* CHAT */
:root {
  --chat--header--background: var(--primary-red);
  --chat--header--color: var(--primary-contrast);
  --chat--subtitle--line-height: 1.3;
  --chat--message-line-height: 1.3;
}

.chat-header p {
  color: var(--primary-contrast) !important;
}

.chat-message p {
  font-size: 16px !important;
}

.chat-message.chat-message-from-user:not(.chat-message-transparent) {
  background: var(--primary-blue) !important;
}

.chat-message.chat-message-from-user:not(.chat-message-transparent) p {
  color: var(--primary-contrast) !important;
}

.chat-window-wrapper .chat-window-toggle {
  background: var(--primary-red) !important;
  color: var(--primary-contrast) !important;
}