
/* ===== HERO SECTION ===== */
.hero {
  background-image: url(../images/fundo2.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 245, 245, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  max-width: 60%;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--verde-musgo);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--verde-musgo);
  font-weight: 500;
  margin: 0;
}

.hero-logo {
  flex: 0 0 auto;
  max-width: 35%;
}

.hero-logo img {
  width: 100%;
  height: auto;
  max-width: 400px;
}

/* ===== APRESENTAÇÃO SECTION ===== */
.apresentacao {
  background-color: var(--marrom);
  color: var(--branco);
  padding: 4rem 0;
  position: relative;
}

.apresentacao::after {
  content: '';
  position: absolute;
  bottom: -49px;
  left: 0;
  right: 0;
  height: 50px;
  background-color: var(--marrom);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.apresentacao-content {
  margin: 0 auto;
  text-align: center;
}

.apresentacao-header {
  margin-bottom: 2rem;
  width: 50%; 
}

.apresentacao-header h2 {
  background-color: var(--verde-musgo);
  color: var(--branco);
  padding: 1rem 2rem; 
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  text-align: right;
}

.apresentacao-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-conheca {
  background-color: var(--secondary-color);
  color: var(--branco);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-title);
}

.btn-conheca:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 169, 34, 0.3);
}

/* ===== QUEM SOMOS SECTION ===== */
.quem-somos {
  background-color: var(--background-color);
  padding: 6rem 0 4rem 0;
  margin-top: 50px;
}

.quem-somos-header {
  position: relative;
  margin-bottom: 3rem;
  padding: 1rem;
  border-bottom: var(--primary-color) 1px solid;
}

.quem-somos-header h2 {
  font-size: 2rem;
  color: var(--marrom);
  margin: 0;
  text-align: center;
}

.quem-somos-header .logo-proext {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem; 
}


.brasao {
  width: 80px;
  height: auto;
}
.logo-proext{
 width: 5rem;
 display: flex;
}
 
.propp-proex {
  background: transparent;   
  color: inherit;
  padding: 0;               
  margin-bottom: 2rem;
  position: relative;
}
 
.propp-proex::before { 
  content: none; 
}
 
.propp-proex-header {
  background: var(--verde-musgo);
  color: var(--branco);
  padding: 1.25rem 2rem;
  width: 35%; 
  clip-path: polygon(0 0, 0 0, 100% 50%, 0 100%, 0 100%);

}

.propp-proex-header h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--branco);
}
 
.propp-proex p {
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem 0 0;
  padding: 1.25rem 12rem 0 12rem;  
  line-height: 1.7;
  color: var(--text-color);
  background: transparent;
}


/* ===== EQUIPE SECTION ===== */
.equipe-section {
  
  border-radius: 12px;
  overflow: hidden;
}

.equipe-header {
  background-color: var(--verde-musgo);
  color: var(--branco);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%)
}

.equipe-header:hover {
  background-color: #5A7A60;
}

.equipe-header h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--branco);
}

.equipe-toggle {
  background: none;
  border: none;
  color: var(--branco);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.equipe-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.equipe-content {
  background-color: var(--branco);
  padding: 2rem;
  display: block;
  text-align: center;
}

.equipe-content.hidden {
  display: none;
}

.equipe-member {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.equipe-member:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.equipe-member h4 {
  color: var(--primary-color);
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.equipe-member p {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .apresentacao-header{
    width: 70%;
  }
  .propp-proex-header{
    width: 100%;
  }
  .layout-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero {
    margin-top: 120px;
    min-height: 80vh;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-logo {
    max-width: 60%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logos {
    justify-content: center;
  }
  .propp-proex p{
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .apresentacao-text p {
    font-size: 1rem;
  }
  
  .nav-menu {
    font-size: 0.8rem;
  }
}
