/* ============================================
   EFASEG Website - CSS Principal
   Cores: Preto (#000000), Branco (#FFFFFF), Dourado (#D4AF37)
   Fonte: Poppins
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #ffffff;
}

/* ============================================
   LAYOUT E CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/*MODAL*/

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-conteudo {
  background: #000;
  color: #d4af37;
  width: 400px;
  padding: 20px 30px;
  border: 2px solid #d4af37;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
  cursor: pointer;
  color: #d4af37;
}


.fechar:hover {
  color: #ffffff;
}

/* ====== Botão que abre o modal ====== */
.btn-modal {
  padding: 12px 25px;
  background: #000;
  color: #d4af37;
  border: 2px solid #d4af37;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-modal:hover {
  background: #d4af37;
  color: #000;
}

/*----------------------------------*/

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ============================================
   HEADER
   ============================================ */

header {
  background-color: #222223;
  color: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 40px;
  width: 40px;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #D4AF37;
}

nav a.active {
  color: #D4AF37;
}

/* ============================================
   CONTACT
   ============================================ */


/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #222223;
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

footer .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

footer .footer-section {
  text-align: center;
}

footer .footer-section img {
  height: 90px;
  width: 90px;
  margin-bottom: 20px;
}

footer .footer-section h3 {
  font-size: 35px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 10px;
}


footer .footer-section p {
  color: #999;
  font-size: 20px;
  line-height: 1.6;
}


/* footersection2*/

.footer .footer-section2 a {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  display: block;        /* um embaixo do outro, igual aos <p> */
  margin-bottom: 4px;
}


footer .footer-section2 {
  text-align: center;
}

footer .footer-section2 p {
  color: #999;
  font-size: 15px;
  line-height: 1.6;
}

footer .footer-section2 h3 {
  font-size: 35px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 10px;
}

footer .footer-section2 img {
  height: 90px;
  width: 90px;
  margin-bottom: 20px;
}

footer .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

footer .footer-section a {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  display: block;        /* um embaixo do outro, igual aos <p> */
  margin-bottom: 4px;
}

footer .footer-section a:hover {
  color: #D4AF37;        /* destaca no hover com a cor do título */
}

/* De quebra, deixar o ícone com um tamanho melhor */
footer .footer-section h3 ion-icon {
  font-size: 40px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  /* Substituição do carrossel por imagem de fundo: logo 3d.png */
  background-image: url('../images/logo 3d.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Garante que a seção ocupe a altura total da viewport */
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
}


.hero::before {
  /* Overlay escuro para melhorar a legibilidade do texto */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* Aumentei a opacidade para garantir legibilidade */
  z-index: 0;
}

.hero .container {
  width: 100%;
  position: relative;
  z-index: 1;
  /* Centraliza o conteúdo dentro do container */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-content {
  /* Estilos para o conteúdo do hero (h1, p, buttons) */
  max-width: 800px; /* Limita a largura do texto para melhor leitura */
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.hero .subtitle {
  font-size: 20px;
  color: #D4AF37;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.hero p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

.hero .buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px; /* Ajustei a margem superior */
  justify-content: center;
}

/* Remoção de estilos de carrossel e imagem que não são mais necessários */

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background-color: #D4AF37;
  color: #000000;
}

.btn-primary:hover {
  background-color: #c9a227;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.btn-secondary:hover {
  background-color: #D4AF37;
  color: #000000;
}

.btn-dark {
  background-color: #000000;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.btn-dark:hover {
  background-color: #1a1a1a;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.stats .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 16px;
  color: #666;
}

/* ============================================
   COURSES SECTION
   ============================================ */

.courses {
  padding: 60px 0;
  justify-content: center;
}

.courses h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
}

.courses-unidades {
  padding: 60px 0;
  justify-content: center;
  align-items: center;
}

.courses-unidades h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-unidades {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
 
}

.courses-grid-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-mudancas-recentes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-cursos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-direitos-do-vigilante {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-mercadodetrabalho {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-contato {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-grid-curiosidades {
display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.courses-gridsalario {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}


.course-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}

.course-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.course-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.course-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.course-cardsalario {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}

.course-cardsalario:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.course-cardsalario h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.course-cardsalario p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.course-card a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.course-card a:hover {
  text-decoration: underline;
}

.courses-center {
  text-align: center;
}

/* ============================================
   RECICLAGENS
   ============================================ */

.reciclagens {
  padding: 60px 0;
  justify-content: center;
  border: 2px solid #e0e0e0;
  background-color: #f5f5f5;

}

.reciclagens h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: #000000;
}

.courses-grid1 .course-card {
  display: grid;
  margin-bottom: 40px;
}

 .course-card2 {
  display: grid;
  margin-bottom: 40px;
  border: 2px solid #e0e0e0;
  background-color: #f5f5f5;
  gap: 20px;
}

.course-card2 {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-top: 50px;
  transition: all 0.3s ease;
}

.course-card2:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.course-card2 h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.course-card2 p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.course-card2 a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.course-card2 a:hover {
  text-decoration: underline;
}


.courses-grid1 .course-card {  background-color: #f5f5f5;
}



/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0;
}

.why-choose h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.why-choose-grid-portaria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.why-choose-grid-portaria16 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.why-item {
  padding: 20px;
}

.why-item .icon {
  font-size: 36px;
  color: #D4AF37;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-item p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* ============================================
   FEATURED SECTIONS
   ============================================ */

.featured {
  padding: 60px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.featured-card {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.featured-card:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.featured-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.featured-card span {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  background-color: #D4AF37;
  color: #000000;
  padding: 60px 0;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* ============================================
   FORM SECTION
   ============================================ */

.form-section {
  padding: 60px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #D4AF37;
}

.form-group input::placeholder {
  color: #999;
}

.form-info {
  background-color: rgba(212, 175, 55, 0.1);
  border: 2px solid #D4AF37;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  margin-top: 25px;
}

.form-info p {
  font-size: 14px;
  color: #000000;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #000000;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 30px 0 15px;
}

.content-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-section li {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  nav {
    gap: 15px;
    font-size: 12px;
  }

  .hero .container {
  width: 100%;
  }
  

  .hero h1 {
    font-size: 32px;
  }

  .hero .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /*MODAL*/

  @media (max-width: 480px) {
    .modal-conteudo {
        width: 92%;
        padding: 15px;
        font-size: 0.95rem;
    }

    .modal-conteudo h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .modal-conteudo p {
        line-height: 1.4;
        text-align: center;
    }

    .fechar {
        font-size: 28px;
        top: 8px;
        right: 10px;
    }
}

/* Para tablets */
@media (max-width: 768px) {
    .modal-conteudo {
        width: 85%;
        padding: 20px;
    }
}

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid-unidades {
    grid-template-columns: 1fr;
  }

  .courses-grid-contato {
    grid-template-columns: 1fr;
  }

  .courses-grid-index {
    grid-template-columns: 1fr;
  }
  
  .courses-grid-mudancas-recentes {
    grid-template-columns: 1fr;
  }

  .courses-grid-cursos {
    grid-template-columns: 1fr;
  }

  .courses-grid-direitos-do-vigilante {
    grid-template-columns: 1fr;
  }

  .courses-grid-curiosidades {
    grid-template-columns: 1fr;
  }
  

  .courses-grid-mercadodetrabalho {
    grid-template-columns: 1fr;
  }

  .reciclagens-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid-portaria {
    grid-template-columns: 1fr;
  }

  .why-choose-grid-portaria16 {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 25px;
  }

  footer .container {
  width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header .container {
  width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .stat-item h3 {
    font-size: 36px;
  }

  .courses h2 {
    font-size: 28px;
  }

  .reciclagens h2 {
    font-size: 28px;
  }

  .why-choose h2 {
    font-size: 28px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 16px;
  }
}
/* === MENU HAMBÚRGUER (SOMENTE MOBILE) === */
@media (max-width: 768px) {
  /* Ajustes do header */
  header .container {
  width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }

  /* Esconde o menu padrão */
  header nav {
    order: 3;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #d4af37;
  }

  /* Exibe o menu quando ativo */
  header nav.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  /* Links do menu */
  header nav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Botão hambúrguer */
  .hamburger {
    order: 2;
    width: 28px;
    height: 20px;
    display: block;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    
  }

  .hamburger span {
    margin: 4px;
  }

  .logo {
    order: 1;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }
  
  .logo span {
    font-size: 18px;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Animação quando ativo */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Animação do menu aparecendo */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}





/* ============================================
   ABOUT PAGE - CARDS E SEÇÕES
   ============================================ */

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #000000;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px;
}

.content-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-section li {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.about-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}


.about-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.about-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-card ul {
  margin-left: 20px;
}

.about-card li {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.about-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   UNIDADES SECTION
   ============================================ */

.units {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.units h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.units-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.unit-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  text-align: center;
}

.unit-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.unit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.unit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* RESPONSIVO PARA ABOUT PAGE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .units-grid {
    grid-template-columns: 1fr;
  }
}
