/* About Section Styles */
.about {
  padding: 5rem 2rem;
  background: linear-gradient(145deg, var(--light-blue) 0%, #f8fbfe 100%);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.about-text {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.about-text h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  animation: underlineGrow 0.8s ease-out;
}

.paragrafo-sobre{
  text-align: justify;
}

@keyframes underlineGrow {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

.about-text p {
  line-height: 1.8;
  color: #444;
  font-size: 1.05rem;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 98, 204, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  z-index: 1;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-image {
    height: 300px;
    order: -1;
  }
}