* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --backgroundColorOne: #000000;
  --backgroundColorTwo: #F8BF05;
  --fontColorOne: #000000;
  --fontColorTwo: #F8BF05;
}

@media (max-width: 1024px) {
  .navbar {
      padding: 20px 5%;
  }

  #home-container h1 {
      font-size: 3rem;
  }

  #home-container p {
      font-size: 1rem;
  }

  #home-container #text-container-home {
    width: 70%;
  }
}

@media (min-width: 769px) and (max-width: 990px) {
  .navbar .navbar-links {
      display: flex;
      gap: 0px;  
  }

  .navbar .navbar-links li a{
    font-size: 13px;
  }

  .navbar .navbar-brand h1 {
    font-size: 13px;
  }

  .navbar .navbar-brand img {
    width: 20px;
    height: 20px;
  }

  .navbar-toggle {
      display: flex;
  }

  .navbar-links.active {
      display: flex;
  }

  .container #home-container {
    height: 70vh;
  }

  #home-container #text-container-home h1 {
      font-size: 40px;
      line-height: 40px;
      letter-spacing: 1px;
      text-align: center;
  }

  #home-container p {
      letter-spacing: -2px;
      text-align: center;  
      font-size: 1rem;
      letter-spacing: 0px;
  }

  .container #home-container button {
      width: 75%;
      height: 50px;
      font-size: 1rem;
  }

  #home-container #text-container-home {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .navbar-links {
      display: none;
  }

  .navbar-toggle {
      display: flex;
  }

  .navbar-links.active {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .container #home-container {
    height: 70vh;
  }

  #home-container #text-container-home h1 {
      font-size: 40px;
      line-height: 40px;
      letter-spacing: 1px;
      text-align: center;
  }

  #home-container p {
      letter-spacing: -2px;
      text-align: center;  
      font-size: 1rem;
      letter-spacing: 0px;
  }

  .container #home-container button {
      width: 75%;
      height: 50px;
      font-size: 1rem;
  }

  #home-container #text-container-home {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .navbar-links {
      display: none;
  }

  .navbar-toggle {
      display: flex;
  }

  .navbar-links.active {
      display: flex;  
  }

  .container #home-container {
    height: 100vh;
  }

  #home-container #text-container-home h1 {
      font-size: 40px;
      line-height: 40px;
      letter-spacing: 1px;
      text-align: center;
  }

  #home-container #text-container-home:nth-child(2) {
      letter-spacing: -2px;
      text-align: center;  
      font-size: 4px;
      letter-spacing: 0px;
  }

  .container #home-container button {
      width: 75%;
      height: 50px;
      font-size: 1rem;
  }

  #home-container #text-container-home {
    width: 100%;
  }
}

.navbar {
  background-color: var(--backgroundColorOne);
  color: var(--backgroundColorTwo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 23px;
  height: 23px;
  margin-left: 5px;
}

.navbar-brand h1 {
  font-size: 1.5rem;
  margin: 0;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-links li a {
  color: var(--backgroundColorTwo);
  text-decoration: none;
  font-size: 1rem;
  padding: 5px 10px;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: bold;
}

.navbar-links li a:hover {
  background-color: var(--backgroundColorTwo);
  color: white;
  transform: scale(1.1);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--backgroundColorTwo);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--backgroundColorOne);
  padding: 10px 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden; 
}

#home-container {
  background-image: url('../images/imagem-de-fundo-redimensionada.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0;
}
#text-container-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 41%;
  padding: 0 20px;
}

#home-container h1 {
  color: var(--fontColorTwo);
  font-size: 3rem;
  line-height: 40px;
  padding-bottom: 20px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#home-container p {
  color: white;
  font-size: 1.5rem;
  line-height: 1.5;
  padding-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
}

#home-container button {
  width: 70%;
  height: 75px;
  background-color: var(--fontColorTwo);
  color: var(--fontColorOne);
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

#home-container button:hover {
  background-color: var(--backgroundColorTwo);
  scale: 1.1;
}

#home-container button img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

#second-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background-color: var(--backgroundColorOne);
  color: red;
  padding: 20px;
  flex-wrap: wrap;
}

#second-container h4 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
  color: var(--fontColorTwo);
}

#adestramento-explicação {
  text-align: start;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25rem;
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 20px;
}

#adestramento-explicação ul li, p {
  margin-bottom: 0.625rem;
  color: white;
}

#adestramento-explicação ul li strong {
  margin-bottom: 0.625rem;
  color: var(--fontColorTwo);
}

#adestramento-explicação p {
  color: white;
  font-weight: 600;
}

#background-imgTwo {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  #second-container {
      flex-direction: column;
      text-align: center;
  }

  #adestramento-explicação {
      width: 90%;
  }

  #background-imgTwo {
      width: 90%;
  }
}

@media (max-width: 480px) {
  #second-container h4 {
      font-size: 1.5rem;
  }

  #adestramento-explicação {
      width: 100%;
  }

  #background-imgTwo {
      width: 100%;
  }
}

#third-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  background-color: var(--backgroundColorTwo);
  padding: 20px 0;
  flex-wrap: wrap;
}

#third-container div {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  padding: 20px;
}

#third-container div h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#third-container div p {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fontColorOne);
  line-height: 1.5;
}

#third-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 20px 0;
}

@media (max-width: 768px) {
  #third-container {
      flex-direction: column;
      align-items: center;
  }

  #third-container div {
      width: 90%;
      max-width: none;
      align-items: center;
      text-align: center;
  }

  #third-container img {
      width: 90%;
      max-width: none;
  }
}

@media (max-width: 480px) {
  #third-container div h4 {
      font-size: 1.5rem;
  }

  #third-container div p {
      font-size: 1rem;
  }
}

#fourth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 1.5rem;
  background-color: var(--backgroundColorOne);
  color: var(--fontColorTwo);
}

#fourth-container h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.25rem;
}

.services-apresentation-one, .services-apresentation-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.service {
  background-color: var(--backgroundColorOne);
  border: 3px solid var(--backgroundColorTwo);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0.625rem;
  padding: 1.25rem;
  width: 100%;
  max-width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.5s;
}

.service:hover {
  scale: 1.1;
  cursor: context-menu;
}

.service h2 {
  font-size: 1.5em;
  margin-bottom: 1rem;
  color: var(--fontColorTwo);
  font-weight: 400;
}

.service p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: white;
}

#fifth-container {
  background-color: var(--backgroundColorTwo);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  #fourth-container h4 {
      text-align: center;
      font-size: 30px;
  }

  .service {
      width: 90%;
      max-width: none;
  }

  #fifth-container {
      flex-direction: column;
      padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  #fourth-container h4 {
      font-size: 1.5rem;
      font-size: 30px;
  }

  .service h2 {
      font-size: 1.55em;
  }

  .service p {
      font-size: 1.2rem;
  }
}

#fifth-container img {
  margin-right: 0;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 1.5rem;
}

#content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
  margin-left: 0;
  width: 100%;
  max-width: 400px;
  padding: 1.5rem;
}

#content-container h4 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#content-container p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fontColorOne);
  line-height: 1.6;
}

@media (max-width: 768px) {
  #fifth-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  #fifth-container img {
      width: 80%;
      margin-right: 0;
      margin-bottom: 1.5rem;
  }

  #content-container {
      align-items: center;
      text-align: center;
      margin-left: 0;
  }

  #content-container h4 {
      font-size: 2rem;
  }

  #content-container p {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #content-container h4 {
      font-size: 1.75rem;
  }

  #content-container p {
      font-size: 1.2rem;
  }
} 

#sixth-container {
  background-color: var(--backgroundColorOne);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sixth-container div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#sixth-tittles {
  background-color: var(--backgroundColorOne);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sixth-tittles h5 {
  font-size: 20px;
  color: var(--fontColorTwo);
  padding-top: 35px;
  padding-bottom: 20px;
}

#sixth-tittles h4 {
  font-size: 30px;
  color: white;
}

#seventh-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: var(--backgroundColorOne);
  height: auto;
  padding: 2rem 1rem;
}

#seventh-container h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

#social-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 0;
}

#social-media a {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0.5rem;
  transition: 0.3s;
}

#social-media a:nth-child(1) {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#social-media a:nth-child(2) {
  background: linear-gradient(45deg, #25D366, #128C7E, #075E54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#social-media a:nth-child(3) {
  background: linear-gradient(45deg, #69C9D0, #EE1D52, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#social-media a:nth-child(4) {
  background: linear-gradient(45deg, #FF0000, #FF4D4D, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#social-media a img {
  margin-bottom: 0.625rem;
}

#social-media img {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  #seventh-container h4 { font-size: 1.25rem; }
  #social-media a { font-size: 1rem; margin: 0.5rem; }
  #social-media img { width: 35px; height: 35px; }
}

@media (max-width: 480px) {
  #seventh-container h4 { font-size: 1.125rem; }
  #social-media a { font-size: 0.875rem; }
  #social-media img { width: 30px; height: 30px; }
}

@media (max-width: 768px) {
  .navbar { padding: 20px; }
  .navbar-links { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-links.active { display: flex; }
}

@media (max-width: 480px) {
  .navbar { padding: 15px; }
  .navbar-brand h1 { font-size: 1.2em; }
  .navbar-links li a { font-size: 0.9em; }
}

.carrossel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.feedback-um { background-size: contain; }
.feedback-dois { background-size: contain; }
.feedback-tres { background-size: contain; }
.feedback-quatro { background-size: contain; }

.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.seta:hover { background-color: rgba(0, 0, 0, 0.8); }
.seta-esquerda { left: 10px; }
.seta-direita { right: 10px; }

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup h2 { color: var(--backgroundColorOne); }

.popup-conteudo {
  background-color: var(--backgroundColorTwo);
  color: var(--backgroundColorOne);
  padding: 20px;
  border-radius: 10px;
  width: 40%;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fechar {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

form { display: flex; flex-direction: column; }
label { margin-top: 10px; }
input, textarea { margin-bottom: 10px; padding: 8px; border: 1px solid #ccc; border-radius: 5px; }

button[type="submit"] {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover { background-color: #128C7E; }

@media (max-width: 468px) {
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup h2 { color: var(--backgroundColorOne); }
  
  .popup-conteudo {
    background-color: var(--backgroundColorTwo);
    color: var(--backgroundColorOne);
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .fechar { float: right; font-size: 24px; cursor: pointer; }
  
  form { display: flex; flex-direction: column; }
  label { margin-top: 10px; }
  input, textarea { margin-bottom: 10px; padding: 8px; border: 1px solid #ccc; border-radius: 5px; }
  
  button[type="submit"] {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover { background-color: #128C7E; }
}
