.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
}

.hero_section,
.soros_section,
.personas_section,
.sala_situacao_section,
.destaques_section,
.soro_section {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
}

.container {
  max-width: 880px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
}

.section-description {
  font-size: 1rem;
  color: #737373;
  font-weight: 500;
}

footer {
  background-color: var(--primary-background);
  padding: 60px 0;
}

@media screen and (min-width: 992px) {
  .header {
    width: calc(100% - 56px);
  }

  .hero_section,
  .soros_section,
  .personas_section,
  .sala_situacao_section,
  .destaque_section,
  .soro_section {
    min-height: 100vh;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1128px;
  }

  footer {
    padding: 120px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }
  
  .section-description {
    font-size: 1.25rem;
  }
}

/* Hero */
.hero_section {
  background-image: url('../../../images/v2/hero_section_75.png');
  background-size: cover;
  background-position: 30% 0;
  margin-top: 63px;
  min-height: calc(100vh - 63px);
}

.hero-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.hero-description {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 200%;
  position: absolute;
  top: 30px;
}

.box-indicadores {
  color: var(--primary-color);
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.box-indicadores__title {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.box-indicadores__description {
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .hero_section {
    background-size: 100% 100%;
    background-position: 0;
    min-height: calc(100vh - 63px);
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.375rem;
  }

  .box-indicadores__title {
    font-size: 2rem;
  }
  
  .box-indicadores__description {
    font-size: 1.125rem;
  }

  .box-indicadores__title img {
    width: 40px;
  }
}

@media screen and (min-width: 1400px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-description {
    font-size: 1.625rem;
  }
  
  .hero-image-wrapper img {
    width: 140%;
  }

  .box-indicadores__title {
    font-size: 2.5rem;
  }
  
  .box-indicadores__description {
    font-size: 1.375rem;
  }
}

/* Personas */
.personas_section {
  background-color: white;
}

.persona {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 240px;
}

.persona.active {
  height: 100%;
}

.persona.closed {
  height: 80px;
}

.persona-banner {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}

.persona-banner .persona-banner__img {
  object-fit: cover;
  object-position: 0 20%;
  height: 240px;
  width: 100%;
}

.persona-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 131, 128, 0.50) 0%, rgba(0, 131, 128, 0.00) 100%);
  z-index: 1;
  opacity: 1;
}

.persona-banner:hover::before {
  opacity: 1;
}

.persona-banner__title {
  position: absolute;
  top: 75%;
  display: flex;
  gap: 1rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: white;
  text-align: center;
  font-weight: 600;
  z-index: 2;
}

.persona-banner__title .v-icon {
  width: 25px;
  height: 25px;
}

.persona.closed .persona-banner__title {
  top: calc(50% - (25px/2));
}

.persona.closed .persona-banner__title div {
  display: none;
}

.persona-description {
  display: none;
  background: var(--primary-background);
  width: 100%;
  padding: 1.5rem;
  color: var(--primary-color);
}

.persona-description__heading {
  font-size: 1.5rem;
}

.persona-description__paragraph {
  font-size: 1rem;
}

.persona-description p,
.persona-description div {
  line-height: 120%;
}

.persona-description hr {
  width: 40px;
  border-top: 2px solid var(--primary-color);
  opacity: 1;
}

.persona.active .persona-description {
  display: block;
}

@media screen and (min-width: 992px) {
  .personas_section {
    background-image: url('../../../images/v2/personas_section.png');
  }

  .persona {
    height: 100%;
    flex-direction: row;
  }

  .persona.closed {
    height: 100%;
  }

  .persona-banner .persona-banner__img {
    height: 100%;
    max-width: 100%;
  }

  .persona-banner::before {
    background: linear-gradient(0deg, #008380 0%, rgba(0, 131, 128, 0.00) 100%);
    opacity: 0;
  }

  .persona-banner__title {
    top: 58%;
    font-size: 2rem;
    flex-direction: column;
  }

  .persona-banner__title .v-icon {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1400px) {
  .persona-banner .persona-banner__img {
    max-width: 352px;
  }

  .persona-banner__title {
    font-size: 2.5rem;
    top: 68%;
  }

  .persona-description__heading {
    font-size: 2rem;
  }
  
  .persona-description__paragraph {
    font-size: 1.375rem;
  }
}

/* Sala de Situação */
.sala_situacao_section .section-title {
  color: var(--primary-color);
}

@media screen and (min-width: 992px) {
  .sala_situacao_section {
    background-image: url('../../../images/v2/sala_situacao_section.png');
    background-size: 100%;
    background-position: 0;
  }
}

/* soros */
.soros_section {
  background-color: #FFFFFFB2;
}

@media screen and (min-width: 992px) {
  .soros_section {
    background-image: url('../../../images/v2/soros_section.png');
    background-size: 160px 420px;
    background-position: 100% 50%;
  }
}

@media screen and (min-width: 1200px) {
  .soros_section {
    background-image: url('../../../images/v2/soros_section.png');
    background-size: 220px 560px;
    background-position: 100% 50%;
  }
}

@media screen and (min-width: 1660px) {
  .soros_section {
    background-image: url('../../../images/v2/soros_section.png');
    background-size: 320px auto;
    background-position: 100% 50%;
  }
}

/* destaques */
.destaques_section {
  background-color: white;
}

.destaques__title {
  font-size: 24px;
}

.carousel-circle {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-circle.active {
  background-color: var(--primary-color);
}

.banner-aviso {
  position: fixed;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: 80px;
}

.banner-aviso-card {
  box-shadow: 0px 6px 12px 1px rgba(0, 0, 0, 0.12);
  background-color: white;
  border-radius: 4px;
}

@media screen and (min-width: 992px) {
  .destaques_section {
    background-image: url('../../../images/v2/destaques_section.png');
  }
}
