/* About Page Styles */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.about-text {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--muted);
  border: 1px solid rgba(46, 196, 182, 0.1);
}

.about-text p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
}

.profile-section {
    margin: 4rem 0;
}

.profile-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(46, 196, 182, 0.1);
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-content {
    flex: 1;
}

.profile-content h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.profile-role {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.profile-description {
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 0;
}




/* Responsividade */
@media (max-width: 768px) {
  .about-container {
    padding: 4rem 1.5rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-text {
    padding: 2rem;
  }

   .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }
    
    .profile-image {
        margin-bottom: 1.5rem;
    }
    
    .profile-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-text {
    padding: 1.5rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }

.profile-image img {
    width: 150px;
    height: 150px;
}

.profile-content h3 {
    font-size: 1.3rem;
}

.profile-role {
    font-size: 1rem;
}



}