/* HEADER*/
.header {
  padding: 1.25rem 1rem;
  justify-content: space-between;
  align-items: center;
  background: var(--color-lepp-blue);
  box-shadow: 4px 0px 15px 0px rgba(15, 15, 15, 0.5);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header ul {
  gap: 30px;
}

.header ul a,
.header a {
  transition: all 0.3s ease;
  color: var(--color-off-white);
}

.header p {
  color: var(--color-off-white);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  text-align: left;
}

.header ul a:hover {
  color: var(--color-hover-orange);
  margin-right: 10px;
}

.header a:hover,
.header p:hover {
  color: var(--color-hover-orange);
  margin-left: 10px;
}

.headerContent {
  justify-content: space-between;
  align-items: center;
}

div#mobile-menu {
  display: none;
}
/* END HEADER */

/* SECTIONS */
section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  color: var(--color-dark-gray);
  flex-direction: column;
  padding: 2rem 1rem;
  margin-bottom: 1rem !important;
  gap: 10px;
  flex: 0 0 auto;
  box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.1);
}

.section__background {
  max-width: 100vw;
  padding: 1rem 0;
  background: #f8f8f8;
}

section h2 {
  color: var(--color-lepp-green);
}
section h3 {
  text-align: justify;
  text-justify: inter-word;
}

section:hover {
  transform: scale(1.005);
  transition: 0.5s ease;
}
/* END SECTIONS */

/* FOOTER */
footer {
  background: var(--color-darker-gray);
  padding: var(--spacing-lg) 0;
  color: var(--color-off-white);
}

footer .caixa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-lg);
  padding: 10px var(--spacing-sm);
}

.footer__coluna {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

footer h3 {
  color: var(--color-lepp-blue);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  font-size: var(--font-size-base);
}

footer p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  text-align: left;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: var(--spacing-xs);
}

footer a {
  color: var(--color-off-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--color-hover-orange);
}

.redes__sociais {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.redes__sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.redes__sociais a svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-off-white);
  transition: stroke 0.3s ease;
}

.redes__sociais a:hover svg {
  stroke: var(--color-hover-orange);
}

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVIDADE */
@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }

  #main__menu {
    display: none;
    width: 100%;
    background: #2196f3;
    z-index: 12;
    padding: 10px 0;
  }

  #menu__list {
    width: 100%;
    display: grid;
    grid-column: 1;
    text-align: left;
  }

  #menu__ul {
    flex-direction: column;
  }

  div#mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 5px;
    background: var(--color-lepp-blue);
    transition: background 0.5s ease;
  }

  div#mobile-menu:hover {
    background: #00000033;
  }

  .bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: background 0.5 ease;
  }

  .bar:not(:last-child) {
    margin-bottom: 4px;
  }

  div#mobile-menu:hover .bar {
    background: var(--color-hover-orange);
  }

  .header {
    margin-bottom: 1rem;
  }

  header p {
    width: 90%;
  }

  .headerContent #menu__ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-items: center;
    align-items: center;
    gap: 0;
  }

  .headerContent #menu__ul li {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .headerContent #menu__ul li a {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    display: block;
  }

  footer .caixa {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
  }

  .footer__coluna {
    width: 90%;
    max-width: 400px;
    text-align: center;
  }

  footer h3 {
    text-align: center;
  }

  footer p {
    text-align: center;
  }

  .redes__sociais {
    justify-content: center;
  }

  .redes__sociais a svg {
    stroke: var(--color-off-white);
    transition: none;
  }

  .slider-track img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  header p {
    width: 60%;
  }

  #menu__ul {
    gap: 10px;
  }

  .footer__coluna {
    min-width: unset;
    width: 95%;
  }

  footer h3 {
    font-size: var(--font-size-base);
  }

  footer p,
  footer li,
  .footer__copyright p {
    font-size: var(--font-size-small);
  }
}
/* END RESPONSIVIDADE */
