/* Importação de Fontes */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Variáveis Globais */
:root {
  --primary-color: #1ae536;
  --primary-color-dark: #009114;
  --primary-color-hover: #03ae1a;
  --secondary-color: #f9fafe;
  --text-color: #2c2c2c;
  --dark-mode-background: #2c2c2c;
  --dark-mode-text-color: #f5f5f5;
  --white: #ffffff;
  --light-white: rgba(255, 255, 255, 0.67);
  --black: #000000;
  --max-width: 1550px;
  --max-width-container: 1250px;
}

/* Estilos Globais */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;

  font-family: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  overflow-x: hidden;
}

/* Estilos para o Modo Escuro */
body.dark-mode {
  background-color: var(--dark-mode-background);
  color: var(--dark-mode-text-color);
}

h1.dark-mode {
  color: var(--white);
}

/* Estilos da Barra de Navegação (Navbar) */
nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  padding-inline: 6rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.nav__logo img {
  height: 30px;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 70px;
}

.link a {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  transition: 0.3s;
}

.link a:hover {
  color: var(--primary-color-dark);
}

.link .nav__btn {
  padding: 0.5rem 2rem;
  color: var(--white) !important;
  background-color: var(--primary-color-dark);
  border-radius: 5px;
}

.link .nav__btn:hover {
  background-color: var(--primary-color-hover);
  color: var(--white);
}

nav.dark-mode a {
  color: var(--dark-mode-text-color);
}

nav.dark-mode .nav__btn {
  color: var(--dark-mode-text-color) !important;
  background-color: var(--primary-color-dark);
}

nav.dark-mode .nav__btn:hover {
  background-color: var(--dark-mode-background);
}

/* Estilos para os Botões de Controle de Fonte na Navbar */
nav .top__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--dark-mode-text-color);
  font-size: 0.9em;
  position: absolute;
  top: 15px;
  right: 130px;
  z-index: 999;
  margin-bottom: 20px;
}

nav .top__buttons button {
  background: none;
  color: var(--text-color);
  border: none;
  padding: 0.5rem 0.75rem;
  margin-left: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  outline: none;
  transition: color 0.3s ease;
}

nav.dark-mode .top__buttons button {
  color: var(--dark-mode-text-color);
}

nav .top__buttons button:hover {
  color: var(--primary-color);
}

nav.dark-mode .top__buttons button:hover {
  color: var(--primary-color);
}

/* Navbar Fixa */
nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

nav.top__buttons .sticky {
  margin-bottom: 20px;
}

nav.sticky.dark-mode {
  background-color: var(--dark-mode-background);
}

nav.sticky .nav__logo img {
  height: 30px;
}

nav.sticky .top__buttons button {
  padding: 0.5rem 0.1rem;
}

/* Oculta a navbar padrão em telas pequenas */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .button__mobile {
    padding: 0.5rem 2rem;
    color: var(--white) !important;
    background-color: var(--primary-color-dark);
    border-radius: 5px;
  }

  .button__mobile:hover {
    background-color: var(--primary-color-hover);
    color: var(--white);
  }

  .mobile__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .mobile__nav__logo img {
    height: 30px;
  }

  .mobile__menu__toggle {
    font-size: 2rem;
    cursor: pointer;
    z-index: 999;
  }

  .mobile__nav__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--white);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-in-out;
    opacity: 0;
  }

  .mobile__nav__links.open {
    max-height: 1000px;
    opacity: 1;
  }

  .mobile__nav__links li {
    list-style: none;
  }

  .mobile__nav__links li a:hover {
    color: var(--primary-color-hover);
  }

  .mobile__nav__links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.5s;
  }
}
/* Esconde a mobile nav em telas grandes */
@media (min-width: 769px) {
  .mobile__nav {
    display: none;
  }
}

/* Estilos de Botões Genéricos */
.btn {
  padding: 0.5rem 2rem;
  color: var(--white) !important;
  background-color: var(--primary-color-dark);
  border-radius: 5px;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

/* Correção global importante */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.hero {
  margin: auto;
  padding: 2rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

body.dark-mode .hero {
  background-color: var(--dark-mode-background);
}

.content__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
  gap: 1.5rem;
  max-width: 600px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.content__container h1 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  white-space: normal;
  word-wrap: break-word;
}

body.dark-mode .content__container h1,
body.dark-mode .content__container p,
body.dark-mode .heading__2 {
  color: var(--dark-mode-text-color);
}

.heading__1 {
  font-size: 3rem;
  font-weight: 700;
}

.heading__2 {
  font-weight: 700;
  color: var(--text-color);
}

.content__container p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.green_title {
  color: var(--primary-color-dark);
}

.green_subtitle {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color-dark);
}

body.dark-mode .green_subtitle {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.image__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}

.image__container img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image__container img:nth-child(1) {
  transform: translateY(40px);
}

.image__container img:nth-child(2) {
  transform: translateY(-40px);
}

.image__content {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color-dark)
  );
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  width: 100%;
  max-width: 360px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

body.dark-mode .image__content {
  background: var(--dark-mode-background);
  color: var(--dark-mode-text-color);
}

.image__content li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding-top: 8rem;
    gap: 3rem;
  }

  .heading__1 {
    font-size: 2.3rem;
  }

  .content__container {
    padding: 0 1rem;
  }

  .image__container {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
  }

  .image__container img {
    max-width: 200px;
    transform: none !important;
  }

  .image__content {
    position: relative;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 1.5rem;
    box-sizing: border-box;
  }
}

/* Estilos da Seção Sobre */
.about__section {
  height: 100vh;
}

body.dark-mode .about__section {
  color: var(--dark-mode-text-color);
  background-color: var(--dark-mode-background);
}

.about__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white);
}

body.dark-mode .about__container {
  background-color: var(--dark-mode-background);
}

.about__text h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.about__text p {
  font-size: 1.1rem;
  padding-inline: 100px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about__text h3 {
  font-size: 1.8rem;
  color: var(--primary-color-dark);
  margin-bottom: 40px;
  font-weight: 500;
}

body.dark-mode .about__text h2,
body.dark-mode .about__text h3,
body.dark-mode .about__text p {
  color: var(--dark-mode-text-color);
}

/* Se desejar escurecer o h3 se ele estiver muito vibrante no dark mode */
body.dark-mode .about__text h3 {
  color: var(--primary-color-hover);
}

/* Estilos do Container de Imagens */
.image__container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  place-content: center;
}

.image__container img {
  width: 100%;
  max-width: 300px;
  margin: auto;
  border-radius: 10px;
  transform: translateY(0);
}

/* Border opcional para dark mode */
.header-border {
  width: 50vw;
  height: 1px;
  margin: 15px 10px 0 auto;
  background-color: var(--primary-color-dark);
}

body.dark-mode .header-border {
  background-color: var(--primary-color);
}

/* Responsivo */
@media (max-width: 768px) {
  .about__section {
    height: auto;
    padding-top: 2rem;
  }

  .about__text h2 {
    font-size: 1.8rem;
  }

  .about__text h3 {
    font-size: 1.5rem;
  }

  .about__text p {
    font-size: 1rem;
    padding-inline: 20px;
  }

  .cards-list {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .card .card_image {
    height: 180px;
  }

  .card .card_title {
    font-size: 1rem;
    padding: 10px;
  }
}

/* Estilos da Seção Sobre Nós (About Us) */
.about_us {
  padding: 30px 20px;
  background-color: var(--white);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    to bottom,
    var(--primary-color-dark) 40%,
    var(--white) 40%
  );
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .about_us {
  background-color: var(--dark-mode-background);
  color: var(--dark-mode-text-color);
  background-image: linear-gradient(
    to bottom,
    var(--primary-color-dark) 40%,
    var(--dark-mode-background) 40%
  );
}

.about_us_logo {
  height: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about_us__container {
  max-width: var(--max-width-container);
  margin: 30px auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .about_us__container {
  background-color: var(--black);
  color: var(--dark-mode-text-color);
}

.about_us__container h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
}

body.dark-mode .about_us__container h2 {
  color: var(--dark-mode-text-color);
}

.about_us__container h3 {
  font-size: 1.6rem;
  color: var(--primary-color-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: left;
}

body.dark-mode .about_us__container h3 {
  color: var(--primary-color);
}

.about_us__container p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

body.dark-mode .about_us__container p {
  color: var(--dark-mode-text-color);
}

.about_us__list li {
  color: var(--text-color);
}

body.dark-mode .about_us__list li {
  color: var(--dark-mode-text-color);
}

.about_us_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_us_button a {
  font-size: 15px;
}

.whatsapp-link {
  display: inline-block;
  background-color: var(--primary-color-dark);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px 0;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
}

body.dark-mode .whatsapp-link {
  background-color: var(--primary-color);
  color: var(--black);
}

.whatsapp-link:hover {
  background-color: var(--primary-color-hover);
}

body.dark-mode .whatsapp-link:hover {
  background-color: var(--primary-color-hover);
}

.inscricao-link {
  color: var(--primary-color-dark);
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

body.dark-mode .inscricao-link {
  color: var(--primary-color);
}

.inscricao-link:hover {
  color: var(--primary-color-hover);
}

.aprovacao-frase {
  font-style: italic;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
}

body.dark-mode .aprovacao-frase {
  color: var(--dark-mode-text-color);
}

/* Estilos da Seção de Preços (Prices) */
.prices {
  padding: 80px 20px;
  background-color: var(--primary-color-dark);
  text-align: center;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prices.dark-mode {
  background-color: var(--primary-color-dark);
  color: var(--dark-mode-text-color);
}

.prices__container {
  max-width: var(--max-width);
  margin: 0 auto;
  margin-bottom: 50px;
}

.prices__container h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.prices.dark-mode h2,
.prices.dark-mode .prices__subtitle,
.prices.dark-mode .price__card h3,
.prices.dark-mode .price__card-title,
.prices.dark-mode .price__card-list li {
  color: var(--dark-mode-text-color);
}

.prices__subtitle {
  font-size: 1.1rem;
  color: var(--dark-mode-text-color);
  margin-bottom: 40px;
}

.prices__cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.price__card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  width: calc(50% - 150px);
  min-width: 200px;
}

.prices.dark-mode .price__card {
  background-color: var(--black);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.price__card h3 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}

.price_span {
  color: var(--primary-color-dark);
}

.price__card-title {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.price__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.price__card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.price__button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--primary-color-dark);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.price__button:hover {
  background-color: var(--primary-color-hover);
}

/* Estilos para o Botão "Concursos de Bolsas" */
.course__button__container {
  margin-top: 50px;
  text-align: center;
}

.course__button {
  display: inline-block;
  width: auto;
  padding: 15px 30px;
  background-color: var(--light-white);
  color: var(--black);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.course__button:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .prices__container h2 {
    font-size: 2rem;
  }

  .price__card {
    width: 100%;
    max-width: 500px;
  }

  .prices__cards {
    gap: 20px;
  }

  .price__card h3 {
    font-size: 1.6rem;
  }

  .price__card-title {
    font-size: 1.1rem;
  }

  .price__button {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .prices {
    padding: 60px 15px;
  }

  .prices__container h2 {
    font-size: 1.8rem;
  }

  .prices__subtitle {
    font-size: 1rem;
  }

  .prices__cards {
    flex-direction: column;
    align-items: center;
  }

  .price__card {
    width: 100%;
    padding: 25px 20px;
  }

  .course__button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .prices__container h2 {
    font-size: 1.5rem;
  }

  .price__card h3 {
    font-size: 1.4rem;
  }

  .price__card-title {
    font-size: 1rem;
  }

  .price__card-list li {
    font-size: 0.95rem;
  }

  .course__button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Estilos da Seção Sobre Nós (About Us) */
.about_us {
  padding: 30px 20px;
  background-color: var(--white);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    to bottom,
    var(--primary-color-dark) 40%,
    var(--white) 40%
  );
}

.about_us_logo {
  height: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.about_us.dark-mode {
  background-color: var(--dark-mode-background);
  color: var(--dark-mode-text-color);
}

.about_us.dark-mode h2,
.about_us.dark-mode h3,
.about_us.dark-mode p,
.about_us.dark-mode .about_us__list li {
  color: var(--dark-mode-text-color);
  text-align: left;
}

.about_us__container {
  max-width: var(--max-width-container);
  margin: 30px auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about_us__container h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: left;
}

.about_us__container h3 {
  font-size: 1.6rem;
  color: var(--primary-color-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: left;
}

.about_us__container p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.about_us_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_us_button a {
  font-size: 15px;
}

.whatsapp-link {
  display: inline-block;
  background-color: var(--primary-color-dark);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px 0;
  transition: background-color 0.3s ease-in-out;
  text-align: center;
}

.whatsapp-link:hover {
  background-color: var(--primary-color-hover);
}

.inscricao-link {
  color: var(--primary-color-dark);
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.inscricao-link:hover {
  color: var(--primary-color-hover);
}

.aprovacao-frase {
  font-style: italic;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
}

/* SEÇÃO DE APROVADOS */
.approved-section {
  padding: 50px 160px;
  background-color: var(--secondary-color);
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .approved-section {
  background-color: var(--dark-mode-background);
}

.approved-section h2 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 30px;
}

body.dark-mode .approved-section h2 {
  color: var(--dark-mode-text-color);
}

.approved-cards-container {
  display: flex;
  overflow-x: hidden;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.approved-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  min-width: 300px;
  flex: 0 0 calc(33.33% - 20px);
  scroll-snap-align: start;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 360px; 
  min-height: 300px;
}

body.dark-mode .approved-card {
  background-color: var(--black);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

.approved-card .quote-box {
  margin-bottom: 15px;
  font-style: italic;
  color: var(--text-color);
  border-left: 3px solid var(--primary-color-dark);
  padding-left: 15px;
  flex-grow: 1;
}

body.dark-mode .approved-card .quote-box {
  color: var(--secondary-color);
  border-left: 3px solid var(--primary-color);
}

.approved-card .student-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.approved-card .student-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.approved-card .student-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.approved-card .student-details .student-name {
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 5px;
}

body.dark-mode .approved-card .student-details .student-name {
  color: var(--dark-mode-text-color);
}

.approved-card .student-details .student-etec {
  font-size: 0.9rem;
  color: var(--text-color);
}

body.dark-mode .approved-card .student-details .student-etec {
  color: var(--text-color);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-controls button {
  background: none;
  border: 1px solid var(--dark-mode-text-color);
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-color);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.carousel-controls button:hover {
  border-color: var(--primary-color-dark);
  color: var(--primary-color-dark);
}

body.dark-mode .carousel-controls button {
  border-color: var(--text-color);
  color: var(--dark-mode-text-color);
}

body.dark-mode .carousel-controls button:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 1024px) {
  .approved-section {
    padding: 50px 40px;
  }

  .approved-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .approved-section {
    padding: 40px 20px;
  }

  .approved-section h2 {
    font-size: 1.5rem;
  }

  .approved-cards-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .approved-card {
    flex: 0 0 80%;
    min-width: 250px;
  }

  .carousel-controls {
    display: none;
  }
}

/* Estilos do Rodapé (Footer) */
#footer {
  background-color: var(--primary-color-dark);
  color: var(--white);
  font-family: sans-serif;
  line-height: 1.6;
}

.f-item-con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.app-info .app-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.app-info .app-name img {
  max-height: 45px;
  width: auto;
}

.app-info p {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.useful-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.useful-links li {
  margin-bottom: 0.6rem;
}

.useful-links li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.useful-links li a:hover {
  color: var(--black);
  padding-left: 5px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.g-inp {
  padding: 0.8rem 1rem;
  border-radius: 5px;
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.g-inp::placeholder {
  color: var(--text-color);
}

.g-inp#g-msg {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

.f-btn {
  padding: 0.8rem 1.5rem;
  background-color: var(--black);
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  margin-top: 0.5rem;
}

.f-btn:hover {
  background-color: var(--text-color);
  transform: translateY(-2px);
}

.cr-con {
  background-color: var(--black);
  color: var(--text-color);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid var(--text-color);
}

/* Estilos Responsivos para o Rodapé */
@media (max-width: 992px) {
  .f-item-con {
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }

  #footer {
    margin-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .f-item-con {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 1rem;
  }

  .app-info,
  .useful-links,
  .g-i-t {
    text-align: center;
  }

  .app-info .app-name {
    justify-content: center;
  }

  .useful-links ul {
    display: inline-block;
    text-align: left;
  }
}

.footer__container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.footer__container.dark-mode .footer {
  background-color: var(--black);
  color: var(--dark-mode-text-color);
}

.footer {
  display: flex;
  max-width: var(--max-width);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--black);
  color: var(--white);
  padding: 0.8rem 1rem;
  width: 100%;
  gap: 2rem;
  text-align: center;
}

.footer img {
  width: 54px;
  height: 54px;
}

.footer p {
  font-size: 1rem;
  margin: 0;
}

.footer .btn {
  background-color: var(--primary-color-dark);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer .btn:hover {
  background-color: var(--primary-color-hover);
}

/* Responsividade */

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .footer p {
    font-size: 0.95rem;
  }

  .footer .btn {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer img {
    width: 0px;
    height: 0px;
  }

  .footer {
    padding: 0.1rem 1rem;
  }

  .footer p {
    font-size: 0.9rem;
  }

  .footer .btn {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
  }
}

/* Estilos dos Cards */
.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px;
}

.cards-list.dark-mode .card .card_title {
  color: var(--dark-mode-text-color);
}

.card {
  margin: 0;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  box-shadow: 2px 2px 13px 3px rgba(0, 0, 0, 0.001),
    -2px -2px 13px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: scale(0.9, 0.9);
  box-shadow: 2px 2px 13px 3px rgba(0, 0, 0, 0.001),
    -5px -5px 30px 15px rgba(0, 0, 0, 0.1);
}

.card .card_image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.card .card_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.card .card_title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  font-size: 0.9em;
  padding: 15px;
  color: var(--black);
  border-radius: 0 0 20px 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Outros Estilos */
.hero-video {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

.video-placeholder {
  background-color: var(--white);
  width: 100%;
  max-width: 500px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-size: 0.9em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.black {
  color: var(--black);
}

.title-white {
  color: var(--white);
}

.title-black {
  color: var(--black);
}

/* Estilos Responsivos Gerais */
@media all and (max-width: 500px) {
  .card-list {
    flex-direction: column;
  }
}

@media (width < 900px) {
  .link a:not(.nav__btn) {
    display: none;
  }

  .container {
    grid-template-columns: repeat(1, 1fr);
  }

  .content__container {
    text-align: center;
  }

  .content__container form {
    margin-right: auto;
    margin-left: auto;
  }

  .image__container {
    grid-area: 1/1/2/2;
  }

  .image__container img {
    transform: translateY(0) !important;
  }
}

/* Estilos do Switch do Modo Escuro */
.dark-mode-switch {
  display: flex;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: var(--white);
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--dark-mode-background);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--dark-mode-background);
}

input:checked + .slider:before {
  transform: translateX(13px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* SEÇÃO DE DÚVIDAS FREQUENTES (FAQ) */
.faq-section {
  padding: 50px 20px;
  text-align: center;
  background-color: var(--white);
  transition: background-color 0.3s ease;
}

body.dark-mode .faq-section {
  background-color: var(--dark-mode-background);
}

.faq-section h2 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 30px;
}

body.dark-mode .faq-section h2 {
  color: var(--dark-mode-text-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.dark-mode .faq-item {
  background-color: var(--black);
  border-color: var(--text-color);
}

.faq-question {
  background: none;
  border: none;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

body.dark-mode .faq-question {
  color: var(--dark-mode-text-color);
}

.faq-question:hover {
  color: var(--primary-color-dark);
}

body.dark-mode .faq-question:hover {
  color: var(--primary-color);
}

.faq-question .arrow-icon {
  font-size: 1.2rem;
  color: var(--primary-color-dark);
  transition: transform 0.3s ease, color 0.3s ease;
}

body.dark-mode .faq-question .arrow-icon {
  color: var(--primary-color);
}

.faq-question.open .arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, background-color 0.3s ease;
  background-color: var(--dark-mode-text-color);
  border-top: 1px solid var(--secondary-color);
}

body.dark-mode .faq-answer {
  background-color: var(--black);
  border-top: 1px solid var(--text-color);
}

.faq-answer p {
  padding: 15px 0;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}

body.dark-mode .faq-answer p {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding: 10px 0;
  }
}
