/* ================================ */
/* SOBRE NOS - Página Sobre Nós */
/* ================================ */

/* ================== */
/* HERO SECTION */
/* ================== */
.about-hero {
  position: relative;
  padding: 10rem 0 6rem;
  color: white;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================== */
/* HERO BADGE - VERSÃO COM TEXTO CURTO */
/* ================== */
.hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 95%;
  text-align: center;
}

.hero-badge-full {
  display: inline;
}

.hero-badge-short {
  display: none;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.813rem;
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-hero {
    padding: 8rem 0 3rem;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-badge-full {
    display: none;
  }
  
  .hero-badge-short {
    display: inline;
  }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
  .about-hero {
    padding: 7rem 0 2.5rem;
  }

  .hero-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    margin-top: 1.5rem;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ================== */
/* COMPANY STORY */
/* ================== */
.company-story {
  padding: 6rem 0;
  background: white;
}

.story-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.story-text {
  color: #6b7280;
  line-height: 1.8;
}

.story-text p {
  margin-bottom: 1.5rem;
}

.story-text strong {
  color: #1a3a6b;
  font-weight: 700;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #1a3a6b;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #1a3a6b;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a3a6b;
  min-width: 80px;
}

.timeline-content {
  flex: 1;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 3px solid #1a3a6b;
}

.timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #6b7280;
  font-size: 0.875rem;
}

.about-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.about-hero .hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.about-hero .hero-badge {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero h1 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Hero Stats */
.hero-stats {
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--about-transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--about-accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ================== */
/* Company Story */
/* ================== */
.company-story {
  background: var(--story-bg);
}

.story-content h2 {
  color: var(--about-primary);
  margin-bottom: 2rem;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
}

.story-text strong {
  color: var(--about-primary);
  font-weight: 600;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--timeline-line);
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--timeline-dot);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--timeline-line);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--about-primary);
  min-width: 80px;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--timeline-bg);
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1;
  transition: var(--about-transition);
}

.timeline-content:hover {
  background: white;
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}

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

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ================== */
/* Mission Vision Values */
/* ================== */
.mvv-section {
  background: var(--mvv-bg);
}

.mvv-section h2 {
  color: var(--about-primary);
}

.mvv-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--about-transition);
  border: 1px solid var(--card-border);
  height: 100%;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.mission-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.vision-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.values-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.mvv-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--about-primary);
  margin-bottom: 1rem;
}

.mvv-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* ================== */
/* Team Section */
/* ================== */
.team-section {
  background: var(--team-bg);
}

.team-section h2 {
  color: var(--about-primary);
}

.team-member {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: var(--about-transition);
  text-align: center;
  border: 1px solid var(--card-border);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.member-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 4px solid white;
  box-shadow: var(--card-shadow);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--about-primary);
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 1rem;
  color: var(--about-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.expertise-tag {
  background: rgba(26, 58, 107, 0.1);
  color: var(--about-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ================== */
/* Methodology Section */
/* ================== */
.methodology-section {
  background: var(--methodology-bg);
}

.methodology-section h2 {
  color: var(--about-primary);
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.methodology-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: var(--about-transition);
  border: 1px solid var(--card-border);
}

.methodology-step:hover {
  transform: translateX(8px);
  box-shadow: var(--card-shadow-hover);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--about-accent);
  min-width: 80px;
  flex-shrink: 0;
  text-align: center;
  background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--about-primary);
  margin-bottom: 1rem;
}

.step-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  color: var(--about-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================== */
/* Certifications */
/* ================== */
.certifications-section {
  background: var(--cert-bg);
}

.certifications-section h2 {
  color: var(--about-primary);
}

.certifications-grid {
  display: grid;
  gap: 2rem;
}

.certification-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--about-transition);
  border: 1px solid var(--card-border);
}

.certification-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--about-primary), var(--about-secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.cert-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--about-primary);
  margin-bottom: 0.5rem;
}

.cert-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ================== */
/* Animations */
/* ================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Section Animations */
.story-content {
  animation: slideInLeft 0.8s ease-out;
}

.story-visual {
  animation: slideInRight 0.8s ease-out;
}

/* ================== */
/* Responsive Design */
/* ================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .methodology-step {
    gap: 1.5rem;
  }

  .step-number {
    font-size: 2rem;
    min-width: 60px;
  }
}

/* Desktop */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .timeline-year {
    font-size: 1.25rem;
    min-width: 70px;
  }

  .mvv-card,
  .team-member,
  .certification-item {
    padding: 1.5rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 0 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .methodology-step {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number {
    min-width: auto;
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-hero {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about-hero {
    padding: 1.5rem 0;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline::before {
    left: 0.5rem;
  }

  .timeline-item::before {
    left: -1.25rem;
    width: 8px;
    height: 8px;
  }

  .timeline-content {
    padding: 1rem;
  }

  .mvv-card,
  .team-member,
  .certification-item,
  .methodology-step {
    padding: 1rem;
  }

  .mvv-icon,
  .cert-icon {
    width: 60px;
    height: 60px;
  }

  .mvv-icon svg,
  .cert-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .avatar-placeholder {
    width: 80px;
    height: 80px;
  }

  .step-number {
    font-size: 2rem;
  }
}

/* ================== */
/* Accessibility */
/* ================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
.mvv-card:focus,
.team-member:focus,
.certification-item:focus,
.methodology-step:focus {
  outline: 2px solid var(--about-primary);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .about-hero {
    background: #000000;
    color: #ffffff;
  }

  .mvv-card,
  .team-member,
  .certification-item,
  .methodology-step {
    border: 2px solid #000000;
  }

  .timeline-content {
    border: 1px solid #000000;
  }
}

/* ================== */
/* Print Styles */
/* ================== */
@media print {
  .about-hero {
    background: white !important;
    color: black !important;
  }

  .hero-stats {
    display: none;
  }

  .mvv-card,
  .team-member,
  .certification-item,
  .methodology-step {
    box-shadow: none;
    border: 1px solid #000000;
    break-inside: avoid;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item::before {
    display: none;
  }
}


