* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
}

.main-content {
  flex-grow: 1;
}

.first--section__container {
  width: 100%;
  height: auto;
  max-height: 550px;
  overflow: hidden;
}

.first--section__content {
  width: 100%;
  height: 100%;
  position: relative;
}

.first--section__content img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  display: block;
} 

.first--section__content .img-mobile { 
  display: none;
}

/* Container da seção */
.second--section__container {
  background-image: url('./assets/background-section.jpg');
  width: 100%;
  min-height: 450px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 1rem;
  color: #fff; /* Cor do texto para destacar em cima do fundo */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Conteúdo da seção */
.second--section__content {
  margin-top: 20px;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6); /* Fundo semitransparente para destacar o texto */
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

/* Títulos principais */
.second--section__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Subtítulos */
.second--section__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Parágrafos */
.second--section__content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Destaques em negrito */
.second--section__content strong {
  font-weight: bold;
}

/* Programação - Lista */
.second--section__content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.second--section__content ul li {
  margin: 1rem 0;
}

.second--section__content ul li strong {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.second--section__content ul li em {
  font-style: italic;
  font-size: 1rem;
}

/* Ícones e Emojis */
.second--section__content .fa, .second--section__content i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}


.btn-container {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-container button {
  border-radius: 60px;
  border: none;
  background-color: #0052B1;
  padding: 15px 40px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  width: fit-content;
}

.btn-container button span {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-decoration: none;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.btn-container button:hover {
  box-shadow: 0 0 0 2px #0052B1;
}

.second--section__container .second--section__content {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.second--section__content p {
  max-width: 1100px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  padding: 1rem;
  border-radius: 8px;
}

.third--section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 2rem 1rem;
}

.third--section__container .third--section__content {
  text-align: center;
}

.third--section__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  background-image: linear-gradient(to right, #25AFA1, #4AAC94, #5DA78C, #1A9A9B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 1rem;
}

.third--section__content button {
  border-radius: 60px;
  border: none;
  background-color: #0052B1;
  padding: 15px 40px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  width: fit-content;
}

.third--section__content button:hover {
  box-shadow: 0 0 0 2px #0052B1;
}

.third--section__content button span {
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-decoration: none;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.footer--section__container {
  background-color: #ccc;
  width: 100%;
  padding: 3rem 1rem;
}

.footer--section__container .footer-section__content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.text-container__footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-container__footer .address,
.contact {
  display: flex;
  gap: 10px;
  flex-direction: column;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  text-align: center;
}

.maps-container__footer {
  width: 100%;
}

.maps-container__footer iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

/* Media Queries */
@media (min-width: 768px) {
  .footer--section__container .footer-section__content {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }

  .text-container__footer .address,
  .contact {
    text-align: left;
  }

  .maps-container__footer {
    width: 60%;
    min-width: 600px;
  }

  .maps-container__footer iframe {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .first--section__content img {
    height: 400px;
  }
}

@media (max-width: 480px) {
 
  .first--section__content .img-mobile { 
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
  }

  .first--section__content .img-desktop{ 
    display: none;
  }

  .maps-container__footer iframe {
    height: 300px;
  }
}