/* ====== SERVICES ====== */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--rose-gold);
  transition: height 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44, 36, 32, 0.1);
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(183, 110, 92, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon { background: rgba(183, 110, 92, 0.15); }
.service-icon svg {
  width: 24px; height: 24px;
  color: var(--rose-gold);
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====== DIFERENCIAIS ====== */
.differentials {
  padding: 100px 0;
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.differentials::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(183, 110, 92, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.diff-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.diff-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.diff-images img:first-child {
  grid-row: span 2;
  height: 100%;
}
.diff-images img:nth-child(2),
.diff-images img:nth-child(3) {
  height: calc(50% - 8px);
}
.diff-content { position: relative; z-index: 2; }
.diff-content .section-tag::before { background: var(--rose-gold-light); }
.diff-content .section-title { color: #fff; }
.diff-content .section-subtitle { color: rgba(255,255,255,0.6); }
.diff-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diff-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(183, 110, 92, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.diff-check svg { width: 14px; height: 14px; color: var(--rose-gold-light); }
.diff-list li strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.diff-list li span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ====== SOBRE ====== */
.about {
  padding: 100px 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(44, 36, 32, 0.1);
}
.about-image-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  padding: 20px 28px;
  z-index: 2;
  text-align: center;
}
.about-image-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--rose-gold);
}
.about-image-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-content h2 { margin-bottom: 24px; }
.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.about-cred {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(183, 110, 92, 0.06);
  border: 1px solid rgba(183, 110, 92, 0.12);
  border-radius: 40px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.about-cred svg { width: 14px; height: 14px; color: var(--rose-gold); }

/* ====== EQUIPE ====== */
.team { padding: 100px 0; background: var(--charcoal); }
.team .section-tag::before { background: var(--rose-gold-light); }
.team .section-title { color: #fff; }
.team .section-subtitle { color: rgba(255,255,255,0.6); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 50px; }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(193,157,124,0.15); border-radius: 20px; overflow: hidden; transition: transform 0.4s, box-shadow 0.4s; }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(193,157,124,0.15); }
.team-card-img { width: 100%; height: 400px; object-fit: cover; object-position: top; }
.team-card-body { padding: 30px; }
.team-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.team-card-body .team-role { font-size: 0.85rem; color: var(--rose-gold); font-weight: 600; margin-bottom: 16px; display: block; letter-spacing: 0.02em; }
.team-card-body p { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.team-card-body .team-procedures { margin-top: 16px; }
.team-card-body .team-procedures span { display: inline-block; background: rgba(193,157,124,0.12); color: var(--rose-gold); font-size: 0.8rem; padding: 6px 14px; border-radius: 20px; margin: 4px 4px 4px 0; }
