/* Importação de Fontes */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik+Dirt&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;
  --gray: #ccc;
  --max-width: 1550px;
  --max-width-container: 1250px;
}

/* Estilos Globais */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  list-style: none;
}

body {
  min-height: 100vh;
  background-color: var(--white);
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 2rem;
  text-align: center;
  padding-top: 4rem;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 28px 12%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 30px;
}

.navbar {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar a {
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 0;
  margin: 0 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary-color-hover);
}

.header.scrolled .navbar a {
  color: var(--text-color);
}

.button-navbar p {
  margin: 0;
}

.white-links a {
  color: var(--white);
}
.white-links a:hover {
  color: var(--text-color);
}

.main {
  display: flex;
  align-items: center;
}

.main a {
  margin-right: 25px;
  margin-left: 10px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.5s ease;
  text-decoration: none;
}

.button-navbar {
  background-color: var(--black);
  padding: 0.4rem 1rem;
  border-radius: 10px;
}

.main a:hover {
  transform: translateX(10px);
}

#menu-icon {
  font-size: 35px;
  color: var(--text-color);
  cursor: pointer;
  z-index: 1001;
  display: none;
}

@media (max-width: 1300px) {
  header {
    padding: 14px 2%;
    transition: 0.2s;
  }

  .navbar a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1151px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 270px;
    height: 39vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all 0.5s ease;
  }

  .navbar.open {
    right: 2%;
  }

  .navbar a {
    color: var(--white);
    display: block;
    margin: 12px 0;
    padding: 0px 25px;
    transition: all 0.5s ease;
  }

  .navbar a:hover {
    color: var(--primary-color-dark);
    transform: translateY(5px);
  }

  .navbar a.active {
    color: var(--primary-color-dark);
  }
}

/* HOME */
.home {
  height: 100vh;
  background-image: url(./assets/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 999;
}

.content {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 2rem 5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding-right: 3rem;
  text-align: center;
}

.title {
  font-size: 3.3rem;
  font-weight: 600;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 2;
}

.branding {
  font-size: 1.1rem;
  margin-top: 0.8rem;
}

.buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.3rem;
}

.button-sign-in,
.button-view-courses {
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  text-decoration: none;
}

.button-sign-in {
  background-color: var(--primary-color-dark);
  color: var(--white);
}

.button-sign-in:hover,
.button-view-courses:hover,
.main-button-sign-in:hover {
  transform: translateX(10px);
}

.button-view-courses {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

.highlight-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 3rem;
  flex-wrap: wrap;
}

.high-title {
  color: var(--primary-color-dark);
}

.promotion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
  text-align: center;
}

.title-price {
  font-size: 3.3rem;
  font-family: "Rubik Dirt", sans-serif;
  font-weight: normal;
  color: var(--white);
  line-height: 1;
}

.subtitle-price {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Rubik Dirt", sans-serif;
  font-weight: normal;
  color: var(--white);
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.price {
  font-size: 3.5rem;
  font-family: "Rubik Dirt", sans-serif;
  font-weight: normal;
  color: var(--white);
}

.price-text{
  display: flex;
  flex-direction: column;
}

.price-text p{
  font-size: 1rem;
  font-family: "Rubik Dirt", sans-serif;
  font-weight: normal;
  color: var(--white);
}

.month {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}

.cent,
.mont {
  font-family: "Rubik Dirt", sans-serif;
  font-weight: normal;
  color: var(--white);
}

.main-button-sign-in {
  background-color: var(--black);
  padding: 0.8rem 2rem;
  color: var(--white);
  border-radius: 10px;
  transition: all 0.5s ease;
  text-decoration: none;
}

/* Responsividade */
@media (max-width: 1167px) {
  .content {
    flex-direction: column;
    padding: 3rem;
  }

  .home {
    background-image: none;
  }

  .title-container,
  .promotion {
    width: 100%;
    height: auto;
    padding: 1rem 0;
  }

  .title {
    font-size: 2.5rem;
    padding-top: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .branding {
    font-size: 1rem;
  }

  .highlight-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .price {
    font-size: 3rem;
  }

  .title-price {
    font-size: 2.5rem;
  }

  .subtitle-price {
    font-size: 1.2rem;
  }

  .buttons-container {
    flex-direction: column;
  }
}

/* CURSOS */
.courses {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  position: relative;
  background: #fff;
}

form {
  margin-top: 1rem;
  position: relative;
  width: 100%;
  max-width: 900px;
}

.carousel {
  position: relative;
  width: 100%;
  height: auto;
}

.card {
  height: 450px;
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fade 0.4s ease-in-out;
}

.card h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.card h2 span {
  color: var(--primary-color-dark);
  font-weight: bold;
  display: block;
  margin-top: 0.3rem;
}

.card .content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;

}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.card li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.card li i {
  color: var(--primary-color-dark);
}

.btn {
  background: var(--primary-color-dark);
  border: none;
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--primary-color-hover);
}

input {
  display: none;
}

input#slide1:checked ~ .carousel label[for="slide1"],
input#slide2:checked ~ .carousel label[for="slide2"] {
  display: flex;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 10px;
}

.indicators label {
  width: 12px;
  height: 12px;
  background: var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

input#slide1:checked ~ .indicators label[for="slide1"],
input#slide2:checked ~ .indicators label[for="slide2"] {
  background: var(--black);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 5;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav:hover {
  opacity: 1;
}

.nav.prev {
  color: var(--primary-color);
  left: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.nav.next {
  color: var(--primary-color);
  right: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

@media (max-width: 1024px) {
  .card {
    height: auto;
    padding: 1.5rem;
  }

  .card h2 {
    font-size: 1.3rem;
  }

  .card .content {
    flex-direction: column;
    gap: 1.2rem;
  }

  .card li {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .nav {
    font-size: 1.2rem;
    padding: 0.6rem;
  }
}

@media (max-width: 768px) {
  .courses {
    padding: 2rem 1rem;
  }

  .carousel {
    width: 100%;
  }

  .card h2 {
    font-size: 1.1rem;
  }

  .card li {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }

  .nav {
    top: 90%;
    transform: translateY(-50%);
    padding: 0.5rem;
    font-size: 1.1rem;
  }

  .nav.prev {
    left: 10px;
  }

  .nav.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 1.2rem;
  }

  .card h2 {
    font-size: 1rem;
  }

  .card li {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.9rem;
  }

  .indicators {
    gap: 8px;
  }

  .indicators label {
    width: 10px;
    height: 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);
}

.section-title {
  text-align: center;
  margin: 0 0 40px;
  color: var(--black);
}
.section-title h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 10px;
}
.separator::after {
  background: var(--dark-mode-background);
  content: "";
  height: 5px;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 30px;
}
.separator {
  background-color: var(--gray);
  border: 1px solid var(--gray);
  display: block;
  height: 5px;
  margin: 0 auto;
  position: relative;
  width: 60px;
}
.title-border-left::after {
  content: "";
  position: absolute;
  width: 50px;
  border: 1px solid var(--primary-color-dark);
}
.testimonials-wrapper .owl-dots {
  display: none;
}
.testimonials-wrapper {
  min-height: 100vh;
  padding: 70px 0 80px;
  position: relative;
}
.inner-page-wrapper.testimonials-wrapper {
  background: 0 0;
}
.inner-page-wrapper.testimonials-wrapper .owl-nav {
  position: absolute;
  right: 0;
  top: -30px;
  z-index: 99;
}
.inner-page-wrapper.testimonials-wrapper .owl-nav > div {
  border: 2px solid var(--dark-mode-background);
  color: var(--dark-mode-background);
}
.testimonials-wrapper .section-title h2 {
  margin: 0 0 10px;
  color: var(--white);
}
.testimonials-wrapper .owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
  z-index: 99;
}
.testimonials-wrapper .owl-next,
.testimonials-wrapper .owl-prev {
  position: relative;
  height: 38px;
  width: 38px;
  line-height: 33px;
  text-align: center;
  font-size: 22px;
  color: var(--black);
  margin-left: 10px;
  display: inline-block;
  border: 2px solid var(--black);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonials-wrapper.style-two .owl-next,
.testimonials-wrapper.style-two .owl-prev {
  color: var(--dark-mode-background);
  border-color: var(--dark-mode-background);
}
.testimonials-wrapper .owl-carousel .owl-stage-outer {
  padding-top: 50px;
}
.testimonial-block {
  position: relative;
}
.testimonial-block .inner-box {
  position: relative;
  padding: 0 30px 30px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid var(--dark-mode-background);
}
.testimonial-block .inner-box .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -50px;
  margin-bottom: 25px;
  display: inline-block;
}
.testimonial-block .inner-box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
}
.testimonial-block .inner-box .content i {
  position: absolute;
  right: 0;
  top: -35px;
  font-size: 30px;
  font-style: italic;
  color: var(--primary-color-dark);
}
.testimonial-block .inner-box .content .author-info {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-mode-background);
}
.testimonial-block .inner-box .content span {
  position: relative;
  color: var(--black);
  font-size: 14px;
}
.testimonial-block .inner-box .content .text {
  position: relative;
  margin-top: 20px;
  color: var(--text-color);
  font-size: 15px;
}
.testimonials-wrapper .owl-nav .owl-next {
  right: auto;
}
.testimonials-wrapper .owl-carousel .owl-item img {
  background: #333;
}
.testimonials-wrapper .owl-theme .owl-nav [class*="owl-"] {
  margin-right: 3rem;
  border: 2px solid #000;
  color: #000;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  border-color: var(--primary-color-hover) !important;
  color: var(--primary-color-hover) !important;
  background: transparent;
}
@media only screen and (max-width: 991px) {
  .testimonials-wrapper .owl-dots {
    display: block;
  }
}

.testimonial-block .inner-box .content {
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 768px) {
  .testimonial-block .inner-box .content {
    align-items: center;
    text-align: center;
  }

  .testimonial-block .inner-box .content i {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 10px;
  }

  .testimonial-block .inner-box .content .author-info,
  .testimonial-block .inner-box .content .text {
    text-align: center;
  }
}

.testimonial-block .inner-box .content .text {
  word-break: break-word;
}

.carousel-spacing {
  padding-left: 4rem;
  padding-right: 4rem;
}

@media (max-width: 768px) {
  .carousel-spacing {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.team-section {
  background-color: var(--primary-color-dark);
  padding: 40px 20px;
  text-align: center;
  color: var(--white);
  margin-top: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.team-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  width: 20rem;
  height: 26rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  color: var(--primary-color);
  box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  transition: background-color 0.3s ease;
}

body.dark-mode .team-card {
  background-color: #2a2a2a;
  color: var(--primary-color);
}

.team-card img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 1s;
}

.team-card h2,
.team-card h3 {
  position: absolute;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  color: #fff;
}

.team-card p,
.team-card a {
  position: absolute;
  text-align: left;
  opacity: 0;
  max-width: 80%;
  transition: opacity 0.3s ease-out;
  color: #eee;
}

.team-card a {
  text-decoration: none;
}

.team-card p {
  inset: auto auto 80px 30px;
}

.team-card a {
  inset: auto auto 40px 30px;
}

.team-card h2 {
  inset: auto auto 45px 30px;
  transition: inset 0.3s 0.3s ease-out;
}

.team-card h3 {
  inset: auto auto 20px 30px;
  transition: inset 0.3s 0.3s ease-out;
}

.team-card:hover h2 {
  inset: auto auto 300px 30px;
  transition: inset 0.3s ease-out;
}

.team-card:hover h3 {
  inset: auto auto 280px 30px;
  transition: inset 0.3s ease-out;
}

.team-card:hover p,
.team-card:hover a {
  opacity: 1;
  transition: opacity 0.5s 0.1s ease-in;
}

.team-card:hover img {
  filter: brightness(0.4);
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  pointer-events: none;
  z-index: 1;
}

.team-card h2,
.team-card h3,
.team-card p,
.team-card a {
  z-index: 2;
}

.material-symbols-outlined {
  vertical-align: middle;
}

.team-card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: none;
  z-index: 2;
}

@media (max-width: 1024px) {
  .team-card {
    width: 18rem;
    height: 24rem;
  }

  .team-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .team-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    color: var(--black);
  }

  .team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: none;
    position: relative;
  }

  .team-card-content {
    position: relative;
    padding: 20px;
    background: none;
    color: var(--black);
    text-align: left;
  }

  .team-card h2 {
    color: var(--primary-color-dark);
  }

  .team-card h2,
  .team-card h3,
  .team-card p {
    position: static;
    opacity: 1;
    margin: 5px 0;
    transition: none !important;
    color: var(--black);
  }

  .team-card::after {
    display: none;
  }

  .team-card:hover h2,
  .team-card:hover h3,
  .team-card:hover p,
  .team-card:hover img {
    all: unset !important;
  }
}

@media (max-width: 480px) {
  .team-title {
    font-size: 1.4rem;
  }

  .team-section {
    padding: 30px 10px;
  }

  .team-grid {
    gap: 15px;
  }
}

/* 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;
  }
}

/* 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(--black);
  margin-bottom: 30px;
}

body.dark-mode .faq-section h2 {
  color: var(--black);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--black);
  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(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

body.dark-mode .faq-question {
  color: var(--white);
}

.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(--secondary-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;
  }
}
