/* ===== PÁGINA SOBRE NÓS ===== */

/* Seção Hero - Estilo da página de grupos */
.sobre-hero-section {
  background: #09101c;
  padding: 60px 0 40px 0;
  border-bottom: none;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.sobre-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,70,6,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,70,6,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,70,6,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,70,6,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,70,6,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.sobre-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sobre-hero-title {
  color: #fff;
  font-family: 'Boldonse', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.sobre-hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff4606;
  border-radius: 2px;
}

.sobre-hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 40px auto 0;
  max-width: 800px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Seção Missão - Cards originais */
.sobre-missao-section {
  background: #ffffff;
  padding: 100px 0;
}

.sobre-missao-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sobre-missao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.sobre-missao-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px 0 rgba(9, 16, 28, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.sobre-missao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px 0 rgba(9, 16, 28, 0.08);
  border-color: rgba(123, 66, 255, 0.2);
}

.sobre-missao-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #7b42ff 0%, #9b62ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(123, 66, 255, 0.3);
}

.sobre-missao-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.sobre-missao-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  flex: 1;
}

/* Seção Terapeutas - Cards originais */
.sobre-terapeutas-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1a2e 50%, #0a0e1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sobre-terapeutas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(123, 66, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.sobre-terapeutas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.sobre-terapeutas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sobre-section-title {
  color: #fff;
  font-family: 'Boldonse', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.sobre-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff4606;
  border-radius: 2px;
}

.sobre-section-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 40px auto 0;
  max-width: 800px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sobre-terapeutas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.sobre-terapeuta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sobre-terapeuta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 66, 255, 0.3);
  box-shadow: 0 10px 40px rgba(123, 66, 255, 0.2);
}

.sobre-terapeuta-image-wrapper {
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(123, 66, 255, 0.3);
  position: relative;
}

.sobre-terapeuta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-terapeuta-content {
  width: 100%;
}

.sobre-terapeuta-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sobre-terapeuta-role {
  font-size: 1rem;
  color: rgba(123, 66, 255, 0.9);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.sobre-terapeuta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sobre-terapeuta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  background: linear-gradient(135deg, #7b42ff 0%, #9b62ff 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(123, 66, 255, 0.25);
}

.sobre-terapeuta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 66, 255, 0.35);
}

/* Seção Serviços - Cards originais */
.sobre-servicos-section {
  background: #ffffff;
  padding: 100px 0;
}

.sobre-servicos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sobre-servicos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sobre-servicos-header .sobre-section-title {
  color: #000;
}

.sobre-servicos-header .sobre-section-title::after {
  background: #ff4606;
}

.sobre-servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.sobre-servico-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sobre-servico-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 66, 255, 0.3);
  box-shadow: 0 10px 40px rgba(123, 66, 255, 0.1);
}

.sobre-servico-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7b42ff 0%, #9b62ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.sobre-servico-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.sobre-servico-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.sobre-servico-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7b42ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.sobre-servico-link:hover {
  gap: 0.75rem;
  color: #9b62ff;
}

/* Responsividade */
@media (max-width: 1024px) {
  .sobre-terapeutas-grid {
    grid-template-columns: 1fr;
  }

  .sobre-servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sobre-hero-section {
    padding: 40px 0 30px 0;
  }

  .sobre-hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .sobre-hero-description {
    font-size: 1rem;
  }

  .sobre-missao-section,
  .sobre-terapeutas-section,
  .sobre-servicos-section {
    padding: 60px 0;
  }

  .sobre-section-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .sobre-section-description {
    font-size: 1rem;
    margin-top: 30px;
  }

  .sobre-missao-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sobre-terapeutas-grid {
    gap: 2rem;
    margin-top: 3rem;
  }

  .sobre-terapeuta-card {
    padding: 2rem;
  }

  .sobre-terapeuta-image-wrapper {
    width: 150px;
    height: 150px;
  }

  .sobre-servicos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .sobre-servico-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .sobre-hero-container,
  .sobre-missao-container,
  .sobre-terapeutas-container,
  .sobre-servicos-container {
    padding: 0 16px;
  }

  .sobre-hero-title,
  .sobre-section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .sobre-hero-description,
  .sobre-section-description {
    font-size: 0.875rem;
  }

  .sobre-terapeuta-card {
    padding: 1.5rem;
  }

  .sobre-terapeuta-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .sobre-servico-card {
    padding: 1.5rem;
  }
}
