/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(147, 98%, 13%); /*=hsl(220, 24%, 12%)=*/
  --black-color-light: hsl(220, 10%, 70%); /*hsl(220, 24%, 15%);*/
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1420px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== BANDEIRAS ===============*/


.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-flag {
  width: 30px;
  height: 20px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid white;
  transition: transform 0.2s ease;
}

.lang-flag:hover {
  transform: scale(1.1);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.9rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 2.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 2.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color:var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: hsl(220, 10%, 70%);/*var(--black-color-lighten);*/
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
    width: max-content;
    white-space: nowrap;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 2.5rem;
   
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

/*=============== INTRO ABAA ===============*/

.intro-container {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 20px auto;
  padding: 0 20px;
  text-align: center;
  background: transparent; /* Sem fundo */
}

.intro-container h2 {
  font-size: 2.2rem;
  color: hsl(147, 98%, 13%); /*#fff;*/
  margin-bottom: 10px;
}

.intro-container p {
  font-size: 1.1rem;
  color:hsl(147, 98%, 13%) /* #ddd;*/
}


/*=============== CARROSSEL ===============*/
.conteudo-principal {
  margin-top: 10px;
}

.carousel-container {
  background-color: var(--body-color);/*rgba(255, 255, 255, 0.1); branco com 10% de opacidade */
  padding: 0px; /* espaçamento interno em todos os lados */
  margin: 1px 1px; /* espaçamento externo (vertical) e centralização horizontal */
  border-radius: 0px;
  max-width: 100%;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.2);
}

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: var(--body-color);
}

.carousel-track {
  display: flex;
  animation: scroll 360s linear infinite;
}

.carousel-track img {
  width: 400;
  max-width:auto ;
  height: 400px;
  margin-right: 0px;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Animação contínua */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-1200px); }/* 100% { transform: translateX(-100%); */
}


/*=============== NOVO CONTAINER ===============*/

.novo-container {
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 20px auto;
  padding: 0 20px;
  text-align: center;
  background: transparent; /* Sem fundo */
}

.novo-container h2 {
  font-size: 2.2rem;
  color: hsl(147, 98%, 13%); /*#fff;*/
  margin-bottom: 10px;
}

.novo-container p {
  font-size: 1.1rem;
  color:hsl(147, 98%, 13%) /* #ddd;*/
}

/*=============== NOVO CONTAINER ===============*/

.semana-container {
  width: 80%;
  max-width: 800px;
  margin: 10px auto 20px auto;
  padding: 0 20px;
  text-align: center;
  background: transparent; /* Sem fundo */
}

.semana-container h2 {
  font-size: 2.2rem;
  color: hsl(147, 98%, 13%); /*#fff;*/
  margin-bottom: 10px;
}

.semana-container p {
  font-size: 1.1rem;
  color:hsl(147, 98%, 13%) /* #ddd;*/
}


/*=============== NOVO CONTAINER ===============*/

.agenda-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

/* Coluna do Calendário */
.col-calendar {
  flex: 0 0 500px;
}

.calendar-card {
  background-color: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  height: 100%;
}

.calendar-card h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #333;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 1.3rem;
}

.calendar th {
  color: #444;
  font-weight: 600;
  padding: 6px;
}

.calendar td {
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.calendar td:hover {
  background-color: #eceff1;
  cursor: pointer;
}

.today {
  background-color: #ff7b44;
  color: white;
  border-radius: 10px;
  font-weight: bold;
}
.calendar td.today {
  background-color: #ff7b44;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
}


/* Coluna dos Cards */

.grid-container {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-container h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  letter-spacing: 0.6px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
}

.grid-item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  min-height: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.8),
    0 6px 18px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.grid-item:hover {
  transform: scale(1.05);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 8px rgba(255,255,255,0.2);
  background: rgba(255, 255, 255, 0.25);
  filter: brightness(1.05) saturate(1.15);
}

.grid-item span {
  z-index: 1;
  font-size: 1.1rem;
  color: #111827;
}

.grid-item::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}






.titulo-missao {
  text-align: center;
  margin-bottom: 40px;
}

.titulo-missao h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black-color);
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cards-missao {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.card-missao {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 150px;
  text-align: justify;
}

.card-missao:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card-missao h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.card-missao p {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.6;
}

.site-footer {
  background-color: var(--black-color);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-container p {
  color: #f3f4f6;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 400;
}
