/* ================================
   Social Media Icon Styles
   Barroso Limo
   ================================ */

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}

.socials a,
.socials .social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: #f4f4f5;
}

/* Disabled icon (TikTok for now) */
.socials .disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.socials {
  display: flex;
  justify-content: center; /* ← centers horizontally */
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}


/* ================================
   Rates Page - Dynamic Tabs
   ================================ */

.rateTabs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin:18px auto 6px;
  flex-wrap:wrap;
}

.rateTab{
  padding:10px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(245,242,232,.85);
  font-weight:700;
  cursor:pointer;
  transition: all .18s ease;
}

.rateTab:hover{
  transform: translateY(-1px);
  border-color: rgba(212,175,55,.45);
}

.rateTab.active{
  background: linear-gradient(180deg, rgba(212,175,55,.26), rgba(212,175,55,.10));
  border-color: rgba(212,175,55,.60);
  color: rgba(245,242,232,.98);
}

.rateSection{
  display:none;
  animation: fadeUp .35s ease forwards;
}

.rateSection.active{
  display:block;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(8px);
  }
  to{
    opacity:1;
    transform:none;
  }
}
