/* ================================
   PÁGINA SOBRE A ORAL CLÍNICA
   ================================ */

/* ================================
   1. HERO/TÍTULO DA PÁGINA
   ================================ */

.sobre-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.95) 0%, rgba(212, 175, 55, 0.9) 100%);
  text-align: center;
}

@media (max-width: 767px) {
  .sobre-hero {
    padding: 60px 0;
  }
}

.sobre-hero .hero-title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sobre-hero .hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .sobre-hero .hero-title {
    font-size: 32px;
  }

  .sobre-hero .hero-subtitle {
    font-size: 18px;
  }
}

/* ================================
   2. SEÇÃO HISTÓRIA
   ================================ */

.historia-section {
  padding: 80px 0;
  background: var(--color-white);
}

@media (max-width: 767px) {
  .historia-section {
    padding: 60px 0;
  }
}

.historia-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-dark);
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .historia-section .section-title {
    font-size: 24px;
  }
}

.historia-content {
  max-width: 900px;
  margin: 0 auto;
}

.historia-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 24px;
}

.historia-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .historia-text p {
    font-size: 16px;
  }
}

/* ================================
   3. SEÇÃO VALORES
   ================================ */

.valores-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

@media (max-width: 767px) {
  .valores-section {
    padding: 60px 0;
  }
}

.valores-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-dark);
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .valores-section .section-title {
    font-size: 24px;
  }
}

/* Grid de Valores */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1023px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .valores-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Card de Valor */
.valor-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.valor-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.valor-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
}

.valor-card:hover .valor-icon {
  transform: scale(1.05);
}

.valor-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-white);
}

.valor-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-neutral-dark);
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .valor-title {
    font-size: 20px;
  }
}

.valor-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 0;
}

/* ================================
   4. SEÇÃO EQUIPE
   ================================ */

.equipe-section {
  padding: 80px 0;
  background: var(--color-white);
}

@media (max-width: 767px) {
  .equipe-section {
    padding: 60px 0;
  }
}

.equipe-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-dark);
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .equipe-section .section-title {
    font-size: 24px;
  }
}

/* Grid de Equipe */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .equipe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Card de Equipe */
.equipe-card {
  background: #FAFAFA;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.equipe-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.equipe-foto {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-primary);
}

.equipe-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .equipe-foto {
    width: 150px;
    height: 150px;
  }
}

.equipe-nome {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-neutral-dark);
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .equipe-nome {
    font-size: 22px;
  }
}

.equipe-cargo {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-medium);
  margin-bottom: 0;
}

/* ================================
   5. SEÇÃO FOTOS DAS CLÍNICAS
   ================================ */

.fotos-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

@media (max-width: 767px) {
  .fotos-section {
    padding: 60px 0;
  }
}

.fotos-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-neutral-dark);
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .fotos-section .section-title {
    font-size: 24px;
  }
}

/* Grid de Fotos */
.fotos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .fotos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .fotos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Item de Foto */
.foto-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-white);
}

.foto-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Aspect ratio 4:3 */
  overflow: hidden;
}

.foto-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.foto-item:hover .foto-wrapper img {
  transform: scale(1.05);
}

.foto-legenda {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-dark);
  text-align: center;
  background: var(--color-white);
  margin: 0;
}

@media (max-width: 767px) {
  .foto-wrapper {
    padding-bottom: 66.67%; /* Aspect ratio 3:2 em mobile */
  }
}

/* ================================
   6. SEÇÃO CTA DE CONTATO
   ================================ */

.cta-contato-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  text-align: center;
}

@media (max-width: 767px) {
  .cta-contato-section {
    padding: 60px 20px;
  }
}

.cta-contato-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-contato-section .cta-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .cta-contato-section .cta-title {
    font-size: 26px;
  }
}

.cta-contato-section .cta-subtitle {
  font-size: 18px;
  color: white;
  margin-bottom: 32px;
  opacity: 0.95;
}

@media (max-width: 767px) {
  .cta-contato-section .cta-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.btn-cta {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cta-primary {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
  background: var(--color-neutral-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .btn-cta {
    width: 100%;
    padding: 14px 24px;
  }
}
