html, body {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  min-height: 100vh;
  background-color: #000;
  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.92)),
    url('../../assets/bg.png');

  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* evita corte em telas menores */
  padding: 20px;
}

.card {
  background: rgba(28, 28, 28, 0.95); /* leve melhoria visual */
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}

.card h2 {
  margin-bottom: 5px;
  font-size: 22px;
}

.input-group {
  margin-bottom: 14px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  opacity: 0.8; /* melhora leitura */
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1); /* melhor que sem borda */
  background: #111;
  color: #fff;
  font-size: 15px;
}

.input-group input::placeholder {
  color: #777;
  font-size: 14px;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #e50914;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #e50914;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 5px;
  font-size: 13px;
}

.btn:hover {
  opacity: 0.9;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .input-group {
  flex: 1;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.link-cancel {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
}

.link-cancel:hover {
  color: #fff;
}

.terms {
  margin: 15px 0;
  font-size: 13px;
  color: #ccc;
}

.terms input {
  margin-right: 6px;
}

.terms a {
  color: #e50914;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.floating-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 240px;
  opacity: 0.8;
  z-index: 10;
  transition: opacity 0.3s;
}

.floating-logo:hover {
  opacity: 1;
}

.subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  margin-top: -2px;
}

/* ========== PLANOS (PRO ESTÁVEL) ========== */

/* container maior e centralizado */
.card-plans {
  max-width: 930px;
  width: 90%;
}

/* GRID resolve quebra de layout */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* desktop responsivo de verdade */
@media (min-width: 768px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* card base */
.plan {
  background: linear-gradient(180deg, #141414, #0f0f0f);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 300px;

  transition: all 0.25s ease;
}

/* hover elegante (sem quebrar layout) */
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.2);
}

/* título */
.plan h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* preço */
.price {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0 20px;
}

/* lista */
.plan ul {
  font-size: 14px;
  margin-bottom: 25px;
  padding-left: 18px;
  opacity: 0.85;
  line-height: 1.7;
}

/* botão */
.plan .btn {
  margin-top: auto;
}

/* ===== PLANO PRATA (DESTAQUE REAL) ===== */
.plan.prata {
  border: 1px solid #e50914;
  background: linear-gradient(180deg, #1a1a1a, #111);
  box-shadow: 0 10px 30px rgba(229,9,20,0.15);
}

/* badge centralizado (mais elegante) */
.plan.prata::before {
  content: "Mais Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e50914;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== OURO (premium clean) ===== */
.plan.ouro {
  border: 1px solid rgba(255,215,0,0.4);
}

.plan.ouro:hover {
  box-shadow: 0 15px 40px rgba(255,215,0,0.2);
}

/* ===== BRONZE ===== */
.plan.bronze {
  opacity: 1.9;
}

/* ===== CONTAINER DOS CORACOES ===== */

.hearts {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* coração individual */
.heart {
  position: absolute;
  bottom: 0;
  font-size: 16px;
  animation: floatUp 3s linear forwards;
  opacity: 0.9;
  will-change: transform;
}

/* animação */
/* @keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
  }
  100% {
    transform: translateY(-220px) scale(0.8);
    opacity: 0;
  }
} */

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-120px) translateX(10px);
  }
  100% {
    transform: translateY(-240px) translateX(-10px);
    opacity: 0;
  }
}

.input-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
  color: #fff;
  font-size: 15px;
  resize: none;
}

/* ===== FORM DE LIVE ===== */

/* CARD */
.live-page .card-live {
  max-width: 650px;
}

/* ESPAÇAMENTO PADRÃO */
.live-page .input-group {
  margin-bottom: 12px;
}

/* GRID (2 COLUNAS) */
.live-page .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  align-items: start;
}

/* INPUTS PADRÃO */
.live-page input,
.live-page textarea,
.live-page select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
  color: #fff;
  font-size: 14px;
}

/* FOCO */
.live-page input:focus,
.live-page textarea:focus,
.live-page select:focus {
  border-color: #e50914;
  outline: none;
}

/* TEXTAREA */
.live-page textarea {
  resize: none;
  min-height: 70px;
}

/* Select */
.live-page select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

/* FILE */
.live-page input[type="file"] {
  padding: 8px;
  cursor: pointer;
}

/* ROW FLEX */
.live-page .form-row {
  display: flex;
  gap: 10px;
}

/* DATA/HORA */
.live-page .form-row input[type="date"],
.live-page .form-row input[type="time"] {
  flex: 1;
}

/* FIELD LABEL */
.live-page .field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.live-page .field small {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 4px;
}

/* Checkbox */
.live-page input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  background: #111;
  cursor: pointer;
  position: relative;
}

.live-page input[type="checkbox"]:checked {
  background: #e50914;
  border-color: #e50914;
}

.live-page input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  color: #fff;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* LABEL CHECKBOX */
.live-page .flags label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* FLAGS */
.live-page .flags {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* HOVER */
.live-page input:hover,
.live-page select:hover {
  border-color: rgba(255,255,255,0.25);
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .live-page .grid-2 {
    grid-template-columns: 1fr;
  }

  .live-page .flags {
    flex-direction: column;
    gap: 10px;
  }
}

/* Reacoes coracoes */
.hearts-left {
  position: fixed;
  bottom: 0;
  left: 20px;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.hearts-left .heart {
  position: absolute;
  bottom: 0;
  font-size: 16px;
  opacity: 0.9;
  animation: floatLeft 3.5s ease-out forwards;
}

/* animação com leve curva */
@keyframes floatLeft {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }

  30% {
    transform: translate(10px, -80px) scale(1.1);
  }

  60% {
    transform: translate(-10px, -160px) scale(1.2);
  }

  100% {
    transform: translate(5px, -260px) scale(0.8);
    opacity: 0;
  }
}

/* ========== DASHBOARD (AREA DO USUARIO CADASTRADO) ========== */

.dashboard {
  min-height: 100vh;
  padding: 20px;
  color: #fff;
}

.dashboard-sidebar button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border: none;
  padding: 12px;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

/* ícone */
.dashboard-sidebar button span {
  font-size: 16px;
}

/* hover */
.dashboard-sidebar button:hover {
  background: #e50914;
  transform: translateX(3px);
}

/* HEADER */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 🔥 ESSENCIAL */
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}

.dashboard-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.dashboard-plan {
  font-size: 12px;
  color: #e50914;
}

/* CARDS */
.dashboard-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dashboard-card {
  flex: 1;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
}

.dashboard-card span {
  font-size: 12px;
  opacity: 0.7;
}

/* BODY */
.dashboard-body {
  display: flex;
  gap: 20px;
}

/* SIDEBAR */
.dashboard-sidebar {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.dashboard-sidebar button {
  background: #111;
  border: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
}

.dashboard-sidebar button:hover {
  background: #e50914;
}

/* CONTENT */
.dashboard-content {
  flex: 1;
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
}

/* HEADER NORMAL */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* mantém usuário à esquerda */
  height: 70px;
  margin-bottom: 20px;
  position: relative; /* 🔥 necessário */
  overflow: visible; /* 🔥 evita corte */
}

/* LOGO GRANDE (não empurra layout) */
.dashboard-logo {
  height: 80px;
  object-fit: contain;
  opacity: 0.9;
  height: 160px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.2s ease;
}

.dashboard-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Proximas lives do usuario */

/* ===== LEMBRETES ===== */

.dashboard-reminders {
  margin-top: 30px;
}

.dashboard-reminders h3 {
  margin-bottom: 15px;
}

/* GRID */
.reminders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

/* CARD */
.reminder-card {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #1a1a1a;
  border-radius: 10px;
  padding: 8px;

  cursor: pointer;
  transition: 0.2s ease;
}

.reminder-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* THUMB (IMPORTANTE) */
.thumb {
  position: relative;
  flex-shrink: 0; /* 🔥 evita quebrar */
}

/* IMAGEM */
.reminder-card img {
  width: 70px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  display: block; /* 🔥 remove bug de espaçamento */
}

/* BADGE */
.live-badge {
  position: absolute;
  top: 3px;
  left: 3px;

  background: #e50914;
  color: #fff;
  font-size: 9px;

  padding: 2px 5px;
  border-radius: 4px;
  font-weight: bold;
}

/* INFO */
.reminder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  flex: 1; /* 🔥 ocupa espaço correto */
}

.reminder-info strong {
  font-size: 13px;
}

.reminder-info span {
  font-size: 11px;
  color: #aaa;
}

/* BOTÃO */
.btn-enter {
  margin-top: 4px;
  padding: 4px 8px;

  font-size: 11px;
  background: #e50914;

  border: none;
  border-radius: 5px;
  color: #fff;

  cursor: pointer;
}

.btn-enter:hover {
  opacity: 0.85;
}

/* BOTÃO CADASTRAR LIVES */
.dashboard-sidebar .btn-live {
  background: linear-gradient(135deg, #35557c, #88bdf7);
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(106,92,255,0.4);
  border: none;
}

/* hover */
.dashboard-sidebar .btn-live:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(45,140,255,0.4);
}

/* ícone */
.dashboard-sidebar .btn-live span {
  font-size: 16px;
}

/* Lives recomendacao */
.dashboard-recommended {
  margin-top: 25px;
}

.dashboard-recommended h3 {
  margin-bottom: 12px;
}

/* Botao detalhes sobre as lives */
.btn-details {
  margin-top: 4px;
  padding: 5px 10px;
  font-size: 13px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  color: #ccc;
  cursor: pointer;
  transition: 0.2s ease;
}

/* hover */
.btn-details:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-details::after {
  content: " →";
  font-size: 10px;
}

/* DASBOARD USUARIO - MENU SUPORTE */
.support {
  color: #fff;
}

.support-subtitle {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 15px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.support-card {
  background: #1a1a1a;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
}

.support-card strong {
  display: block;
  margin-bottom: 4px;
}

.support-card span {
  color: #ccc;
}

.support-footer {
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}

/* PUBLICIDADE */
/* CARD PUBLICIDADE */
.dashboard-ad {
  flex: 1;

  height: 90px;
  min-width: 0;

  border-radius: 10px;
  overflow: hidden;

  background: #1c1c1c url("../../assets/publicidade.png") no-repeat;
  background-size: cover;              /* 🔥 VOLTA PRO CERTO */
  background-position: center 41%;

  position: relative;
}

/* overlay */
.dashboard-ad::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
}

/* DASHBOAD - AÇÕES DOS CARDS NO MENU LEMBRETES */
.btn-remove {
  margin-top: 6px;
  align-self: flex-start;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #aaa;

  font-size: 11px;
  padding: 4px 8px;

  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-remove:hover {
  color: #fff;
  border-color: #e50914;
}

/* REDES SOCIAIS */
.support-social {
  margin-top: 20px;
}

.support-social h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #aaa;
}

/* LINKS */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  background: #1a1a1a;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #ccc;
  text-decoration: none;
  transition: 0.2s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.social-links a:hover {
  color: #fff;
  border-color: #6a5cff;
  background: rgba(106,92,255,0.1);
}

/* DASHBOARAD - Menu saldo */
/* HEADER */
.saldo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SELECT */
.saldo-filter {
  background: #1a1a1a;
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* GRID */
.saldo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

/* CARD */
.saldo-card {
  background: #1a1a1a;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  transition: 0.2s;
}

/* HOVER LEVE */
.saldo-card:hover {
  transform: translateY(-2px);
}

/* TEXTO */
.saldo-card span {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 5px;
}

/* VALOR */
.saldo-card strong {
  font-size: 18px;
}

/* DESTAQUE */
.saldo-card.destaque {
  border: 1px solid #6a5cff;
  box-shadow: 0 0 10px rgba(106,92,255,0.15);
}

/* HISTÓRICO */
.saldo-history {
  margin-top: 15px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 10px;
}

.saldo-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.saldo-row:last-child {
  border-bottom: none;
}

.saldo-row strong {
  color: #ff4d4f;
}

/* BOTÃO */
.saldo-actions {
  margin-top: 15px;
}

.btn-sacar {
  width: 100%;
  padding: 10px;
  background: #6a5cff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-sacar:hover {
  background: #7c6dff;
}


/* Menu Seguindo */
/* GRID */
.following-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

/* CARD */
.following-card {
  display: flex;
  gap: 10px;
  background: #1a1a1a;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
  transition: 0.2s;
}

.following-card:hover {
  transform: translateY(-3px);
}

/* AVATAR */
.following-avatar {
  position: relative;
}

.following-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* DOT AO VIVO */
.live-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  background: #e50914;
  border-radius: 50%;
  border: 2px solid #111;
}

/* INFO */
.following-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.following-info strong {
  font-size: 14px;
}

.following-info span {
  font-size: 11px;
  color: #aaa;
}

/* AÇÕES */
.following-actions {
  display: flex;
  gap: 6px;
  margin-top: 5px;
}

/* UNFOLLOW */
.btn-unfollow {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #aaa;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-unfollow:hover {
  color: #fff;
  border-color: #e50914;
}

/* Boas vinda ao usuario */

.welcome-minimal {
  max-width: 520px;
  padding: 5px 0;
  animation: fadeIn 0.4s ease;
}

/* título */
.welcome-minimal h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* texto principal */
.welcome-text {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* destaque */
.welcome-text strong {
  color: #fff;
}

/* dica */
.welcome-tip {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  color: #9f8cff;

  background: rgba(106,92,255,0.08);
  border: 1px solid rgba(106,92,255,0.15);

  padding: 10px 12px;
  border-radius: 8px;
}

/* animação leve */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Perfil */
/* CONTAINER */
.profile {
  max-width: 500px;
}

/* FORM */
.profile-form {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

/* AVATAR */
.profile-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.profile-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.btn-change-photo {
  font-size: 11px;
  background: transparent;
  border: none;
  color: #aaa;
  cursor: pointer;
}

/* CAMPOS */
.profile-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-fields input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
  color: #fff;
}

/* BOTÃO */
.profile-actions {
  margin-top: 15px;
}

.btn-save {
  width: 100%;
  padding: 10px;
  background: #6a5cff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-save:hover {
  background: #7c6dff;
}

/* LOGIN */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 10px;
  margin-bottom: 15px;

  font-size: 12px;
}

/* lembrar */
.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bbb;
}

/* recuperar senha */
.forgot-password {
  color: #8b7bff;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* LOGOUT */
.btn-logout {
  margin-top: auto;

  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.08) !important;

  color: #ff6b6b !important;
}

.btn-logout:hover {
  background: rgba(255,80,80,0.08) !important;
  border-color: rgba(255,80,80,0.2) !important;

  transform: translateX(3px);
}

/* DASHBOARD - Menu Perfil do usuario*/
.profile-form {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.profile-avatar {
  width: 180px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;
}

.profile-avatar img {
  width: 120px;
  height: 120px;

  border-radius: 50%;
  object-fit: cover;

  border: 3px solid rgba(255,255,255,0.08);
}

.profile-fields {
  flex: 1;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-row {
  display: flex;
  gap: 12px;
}

.profile-row .input-group {
  flex: 1;
}

.profile-fields .full {
  width: 100%;
}

.profile-socials {
  margin-top: 5px;
}

.profile-socials h4 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.profile-fields textarea {
  width: 100%;
  min-height: 100px;

  resize: vertical;
}

.profile-actions {
  margin-top: 5px;
}

.btn-save {
  width: 100%;

  padding: 12px;

  border: none;
  border-radius: 8px;

  background: #6a5cff;
  color: #fff;

  font-weight: 600;

  cursor: pointer;

  transition: 0.2s;
}

.btn-save:hover {
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .profile-form {
    flex-direction: column;
  }

  .profile-avatar {
    width: 100%;
  }

  .profile-row {
    flex-direction: column;
  }

}

