/* Hero Section */
.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -100px;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.about-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.85) 0%,
    rgba(var(--primary-color-rgb), 0.65) 50%,
    rgba(var(--primary-color-rgb), 0.75) 100%
  );
  z-index: -1;
}

.about-breadcrumb {
  margin-bottom: 2rem;
}

.about-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 8px 20px;
  backdrop-filter: blur(10px);
}

.about-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb .breadcrumb-item a:hover {
  color: white;
}

.about-breadcrumb .breadcrumb-item.active {
  color: white;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  span {
    color: var(--primary-color) !important;
  }
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.about-stat-item {
  text-align: center;
  color: white;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Video Section */
.about-video-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.about-video-container {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  margin-bottom: 2rem;
  aspect-ratio: 16 / 9;
}

.about-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Video Controls */
.about-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.about-video-wrapper:hover .about-video-controls,
.about-video-wrapper.about-video-playing .about-video-controls {
  opacity: 1;
}

.about-video-progress-container {
  margin-bottom: 15px;
}

.about-video-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.about-video-progress-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.about-video-controls-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-video-controls-left,
.about-video-controls-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-video-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.about-play-pause-btn {
  font-size: 1.5rem;
}

.about-video-time {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Play Button Overlay */
.about-video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
  transition: opacity 0.3s ease;
}

.about-video-play-overlay.d-none {
  opacity: 0;
  pointer-events: none;
}

.about-video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--primary-color-rgb), 0.9);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.about-video-play-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.about-video-info {
  text-align: center;
}

.about-video-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-video-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Values Section */
.about-values-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.about-value-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--primary-color-rgb), 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.about-value-card:hover::before {
  left: 100%;
}

.about-value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.about-mission-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.about-vision-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.about-values-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
}

.about-value-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  transition: all 0.3s ease;
  svg {
    width: 42px;
    height: 42px;
  }
}

.about-mission-card .about-value-icon {
  background: rgba(34, 197, 94, 0.1);
  color: var(--primary-color);
}

.about-vision-card .about-value-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.about-values-card .about-value-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1);
}

.about-value-content {
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      &:before {
        content: "\f26a";
        font-family: "bootstrap-icons"; /* Essencial para carregar a fonte do Bootstrap Icons */
        font-size: 1rem;
        color: var(--primary-color);
      }
    }
  }
}

.about-value-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-value-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-value-list i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* History Section */
.about-history-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.about-history-content {
  padding-right: 2rem;
}

.about-history-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.about-timeline {
  position: relative;
  padding-left: 2rem;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    rgba(var(--primary-color-rgb), 0.3)
  );
}

.about-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--bg-secondary);
  z-index: 2;
}

.about-timeline-year {
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: center;
}

.about-timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.about-history-image {
  position: relative;
}

.about-achievement-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.about-achievement-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-achievement-text {
  display: flex;
  flex-direction: column;
}

.about-achievement-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.about-achievement-subtitle {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Team Section */
.about-team-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.about-team-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.about-team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.about-team-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.about-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-team-card:hover .about-team-image img {
  transform: scale(1.05);
}

.about-team-content {
  padding: 1.5rem;
  text-align: center;
}

.about-team-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-team-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.about-team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-team-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.about-team-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* CTA Section */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    rgba(var(--primary-color-rgb), 0.8) 100%
  );
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=600&width=1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.about-cta-content {
  position: relative;
  z-index: 2;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.about-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-cta-buttons .btn-success {
  background: white;
  color: var(--primary-color);
  border: none;
}

.about-cta-buttons .btn-success:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.about-cta-buttons .btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Dark Mode Support */
.dark .about-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.9) 0%,
    rgba(var(--primary-color-rgb), 0.7) 50%,
    rgba(var(--primary-color-rgb), 0.8) 100%
  );
}

.dark .about-video-container {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

.dark .about-value-card {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

.dark .about-team-card {
  background: var(--bg-primary);
  border-color: var(--border-color);
}

.dark .about-achievement-badge {
  background: rgba(var(--bg-primary-rgb), 0.9);
  border-color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-stats {
    gap: 2rem;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-video-container {
    padding: 2rem;
  }

  .about-value-card {
    padding: 2rem;
  }

  .about-history-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-video-container {
    padding: 1.5rem;
  }

  .about-video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about-value-card {
    padding: 1.5rem;
  }

  .about-value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about-timeline {
    padding-left: 1.5rem;
  }

  .about-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .about-timeline-item::before {
    left: -1.75rem;
  }

  .about-cta-content h2 {
    font-size: 2rem;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 1.75rem;
  }

  .about-video-container {
    padding: 1rem;
  }

  .about-video-controls {
    padding: 15px;
  }

  .about-video-btn {
    font-size: 1rem;
    padding: 6px;
  }

  .about-play-pause-btn {
    font-size: 1.2rem;
  }

  .about-video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .about-achievement-badge {
    bottom: 10px;
    right: 10px;
    padding: 0.75rem 1rem;
  }

  .about-cta-content h2 {
    font-size: 1.75rem;
  }

  .about-cta-content p {
    font-size: 1rem;
  }
}
