/* Social Proof Carousel — shared styles
   Used in: portal/dashboard.html, index.html */

.social-proof {
  padding: 0.5rem 0 1.5rem;
  overflow: hidden;
  position: relative;
}
.social-proof-eyebrow {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(14,58,40,0.3);
  margin-bottom: 1rem;
}
.social-proof-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.5rem 1rem;
  scrollbar-width: none;
}
.social-proof-track::-webkit-scrollbar { display: none; }
.social-proof-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--color-white, #FFFFFF);
  border: 1px solid rgba(14,58,40,0.08);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.social-proof-card:hover { box-shadow: 0 4px 20px rgba(14,58,40,0.06); }
.social-proof-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.social-proof-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(14,58,40,0.08), rgba(232,180,188,0.15));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; font-weight: 600; color: var(--color-deepGreen, #0E3A28); flex-shrink: 0;
}
.social-proof-meta { flex: 1; }
.social-proof-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem; font-weight: 600; color: var(--color-deepGreen, #0E3A28);
}
.social-proof-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem; color: rgba(14,58,40,0.4);
}
.social-proof-stars {
  color: var(--color-gold, #D4AF37); font-size: 0.875rem; letter-spacing: 2px; flex-shrink: 0;
}
.social-proof-text {
  font-family: 'Newsreader', serif;
  font-size: 1.125rem; color: var(--color-deepGreen, #0E3A28); line-height: 1.75; font-style: italic;
}
.social-proof-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(212,175,55,0.12) 60%);
  font-style: italic;
}
.social-proof-tag {
  display: inline-block; margin-top: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.625rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-rosa-fuerte, #AD445C);
  padding: 0.25rem 0.625rem;
  background: rgba(173,68,92,0.06); border-radius: 9999px;
}
.social-proof::before, .social-proof::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 2rem;
  z-index: 2; pointer-events: none;
}
.social-proof::before { left: 0; background: linear-gradient(90deg, var(--color-white, #FFFFFF), transparent); }
.social-proof::after { right: 0; background: linear-gradient(270deg, var(--color-white, #FFFFFF), transparent); }
.social-proof-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-white, #FFFFFF); border: 1px solid rgba(14,58,40,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.social-proof-arrow:hover { background: var(--color-deepGreen, #0E3A28); border-color: var(--color-deepGreen, #0E3A28); }
.social-proof-arrow:hover svg { stroke: var(--color-white, #FFFFFF); }
.social-proof-arrow svg { width: 18px; height: 18px; stroke: var(--color-deepGreen, #0E3A28); stroke-width: 2; fill: none; }
.social-proof-arrow-right { right: 0.5rem; }

@media (max-width: 600px) {
  .social-proof-card { flex: 0 0 300px; padding: 1rem 1.25rem; }
  .social-proof-text { font-size: 1rem; }
  .social-proof-arrow { width: 32px; height: 32px; }
  .social-proof-arrow svg { width: 14px; height: 14px; }
}
