.porque-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.porque-section.parallax {
  background-image: var(--bg-url);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.porque-section.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.45) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 0;
}

.porque-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.porque-title {
  color: var(--dourado-claro) !important;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
}

.porque-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 300;
}

.porque-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.porque-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.porque-item:last-child {
  margin-bottom: 0;
}

.porque-icon {
  width: 50px;
  height: 50px;
  background: var(--dourado-claro);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-noite);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(200, 169, 120, 0.25);
}

.porque-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.porque-item p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.porque-image {
  position: relative;
}

.porque-image .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.porque-photo {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.porque-image .image-wrapper:hover .porque-photo {
  transform: scale(1.05);
}

.porque-action {
  margin-top: 35px;
}

@media (max-width: 968px) {
  .porque-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .porque-title {
    text-align: center;
    font-size: 2.2rem;
  }

  .porque-description {
    text-align: center;
    font-size: 1rem;
  }

  .porque-action {
    text-align: center;
  }

  .porque-photo {
    height: 400px;
  }
}
