/* ==========================================================================
   INDEX.CSS - Estilos Exclusivos da Página Home
   ========================================================================== */

/* 1. HERO SECTION */
.hero {
  padding: 120px 5% 180px;
  background: linear-gradient(135deg, #0a4d4a 0%, #1a6d69 100%);
  color: white;
  text-align: center;
  clip-path: ellipse(140% 100% at 50% 0%);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 35px;
  opacity: .9;
}

/* 2. SOBRE A DRA (AJUSTE DE TEXTO MÉDIO) */
.about-dr {
  padding: 80px 5%;
  margin-top: -60px;
}

.profile-content {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center; /* Centraliza verticalmente texto e foto */
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.profile-img-container {
  flex-shrink: 0;
}

.profile-img {
  width: 320px;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  border: 8px solid var(--bg-page);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.profile-info {
  flex: 1;
}

.profile-info h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 10px;
  color: var(--primary);
}

.separator {
  width: 60px;
  border: none;
  border-top: 3px solid var(--secondary);
  margin-bottom: 25px;
}

.profile-text p {
  font-size: 17px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.65;
  text-align: left; /* Alinhamento à esquerda flui melhor para resumos */
}

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

.btn-contato {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-contato:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* 3. DIFERENCIAIS */
.highlights {
  padding: 80px 5%;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-card {
  background: var(--white);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
  text-align: center;
  transition: 0.3s ease;
}

.highlight-card h3 { color: var(--secondary); margin-bottom: 15px; }
.highlight-card p { color: #666; font-size: 15px; }

.highlight-card:hover {
  transform: translateY(-10px);
}

/* ==============================
   RESPONSIVIDADE INDEX
================================ */
@media (max-width: 968px) {
  .profile-content {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    gap: 30px;
  }

  .profile-text p {
    text-align: center;
  }

  .profile-img {
    width: 260px;
    height: 360px;
  }

  .separator {
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .profile-text p { font-size: 16px; }
}