@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  background-color: #7b34a3;
  color: white;
  padding: 20px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.header-content .logo img {
  height: 200px;
  margin-top: -15%;
  width: 360px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-right: 20px;
}

.nav-button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: #d49df0;
  border: none;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.nav-button:hover {
  background-color: #f2eaf6;
}

/* Restante do CSS */


.logo {
  height: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.header span {
  font-weight: 700;
  font-size: 24px;
}

#new {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background-color: #7b34a3;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

#new:hover {
  background-color: rgb(166, 77, 226);
}

.divTable {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #f9f9f9;
}

thead th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
}

tbody td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.acao {
  text-align: center;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
}

.modal label {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.modal input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.modal button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgb(57, 57, 226);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.modal button:hover {
  background-color: rgb(77, 77, 226);
}

.active {
  display: flex;
}

.active .modal {
  animation: modal .4s;
}

@keyframes modal {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .container {
    width: 95%;
  }

  .logo {
    height: 60px;
    margin-bottom: 20px;
  }
}



/* texto e imagem */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f4f4f4;
}

.intro {
  background-color: #ffffff;
  padding: 60px 20px;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro-text {
  flex: 2;
  padding-left: 40px;
}

.intro-text h1 {
  font-size: 36px;
  color: #7b34a3;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    padding-left: 0;
    margin-top: 20px;
  }

  .intro-text h1 {
    font-size: 28px;
  }

  .intro-text p {
    font-size: 16px;
  }
}




/* SAC */

h5 {
  display: flex;
  color: #69329A;
  justify-content: center;
  font-size: 90px;
  margin-top: 15%;
}



/* Rodapé */

.content {
  flex: 10;
  align-items: end;
}

.footer {
  background-color: #69329A;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  width: 100%;
}


.footer .contact-info {
  display: flex;
  align-items: center;
}

.footer .contact-info img {
  margin-right: 10px;
}

.footer .contact-info div {
  margin-right: 20px;
}

.footer .contact-info div p {
  margin: 0;
}

.footer .social-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .social-icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer .social-icon-item img,
.footer .social-icon-item i {
  margin-right: 10px;
}

.footer .social-icons img {
  height: 40px;
  width: 40px;
  margin-left: 20px;
}

.social-icons i {
  font-size: 40px;
  margin-left: 20px;
  color: #f2eaf6;
}

/* Ajuste para centralizar a logo e torná-la maior */
.footer .logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .logo img {
  display: flex;
  justify-content: center;
  height: 150px; /* Aumente o tamanho da logo */
  width: auto; /* Mantém a proporção da logo */
}








