/* Estilo geral da página */
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Home Section */
.home {
  text-align: center;
  background-color: #1a7463;
  padding: 20px 0;
}

.home-explication {
  background: linear-gradient(135deg, #1a7463, #01362e);
  color: #fff;
}
  
.explication-internal {
  position: relative;
  display: flex;
  justify-content: flex-start;
  min-height: 600px;
  padding: 50px;
  color: rgb(255, 255, 255);
  background: url("../imagens/LIBLOGO2.png");
  background-size: 300px 300px; /* Alterado o tamanho da imagem para 1280x780 */
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1A7463;
}

.explication-internal-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.explication-internal-section-content {
  text-align: justify;
  font-size: 150%;
}

.explication-internal-section-content-h1 {
  text-align: center;
  font-size: 110%;
}

/* .explication-internal-content-section-p > p:last-child {
  text-align: center;
} */

.explication-internal-section-content-link {
  margin-top: 30px;
}

.explication-internal-section-content-link a {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
}

.instagram {
  margin-top: 20px;
}

.instagram-img {
  width: 40px;
  height: auto;
}

/* Support Section */
.home-support {
  background-color: #fff;
  border-top: 5px solid #333;
  padding: 40px 0;
}

.support-internal {
  padding: 20px;
}

.support-internal-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
  
}

.support-internal-section div {
  text-align: center;
  
}

.support-internal-section div img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #d8cece;
}

.support-internal-section div:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.support-internal-section div h3 {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.support-internal-section div:hover h3 {
  color: #007bff;
}

/* About Section */
.about {
  width: 80%;
  margin: 40px auto;
  background-color: #ffffff;
  border: 1px solid #3e597c;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.about-title {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.about-internal {
  color: #333;
}

.about-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}

.about-subtitle {
  font-size: 24px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.about-text strong {
  color: #333;
}


/* modificado */

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-button {
  background-color: #1a7463;
  border: none;
  border-radius: 5px 5px 0 0;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tab-button.active, .tab-button:hover {
  background-color: #000000;
}


.tab-content {
  display: none;
}

.tab-content .support-internal-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.tab-content .support-internal-section div {
  text-align: center;
}

.tab-content .support-internal-section div img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #d8cece;
}

.tab-content .support-internal-section div:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.tab-content .support-internal-section div h3 {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.tab-content .support-internal-section div:hover h3 {
  color: #007bff;
}
