* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --body-font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --color-primary: #008b8b;
  --color-secondary: #006e6e;
  --color-tertiary: rgb(0, 100, 100);
  --color-cyan-neon: #03e9f4;
  --color-green: green;
  --color-red: red;
  --color-red-2: #e74c3c;
  --color-red-3: #e53935;
  --color-dark: #121212;
  --color-white: #ffffff;
  --color-white-2: #f1f1f1;
  --color-black: #0f0f0f;
  --color-black-2: rgba(0, 0, 0, 0.5);
  --color-black-3: #1e1e1e;
  --color-gray: #dfdfdf;
  --color-gray-2: #dddddd;
  --color-gray-3: #eeeeee;
  --color-gray-4: #9e9e9e;
  --color-gray-5: rgba(255, 255, 255, 0.1);
  --color-gray-6: rgb(227 227 227 / 1);
  --color-gray-7: #707070;
  --color-gray-8: #808080;
  --color-gray-9: #333333;
  --color-gray-10: #aaaaaa;
  --color-gray-11: #909090;
  --color-gray-12: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  --color-yellow: #ffd700;
  --color-yellow-2: #ffc300;
  --color-yellow-3: #ffc107;
  --color-yellow-4: #f1c40f;
}

::-webkit-input-placeholder {
  color: var(--color-gray-4);
}

::selection {
  background-color: var(--color-primary);
}

input {
  border: none;
}

input::-ms-reveal, input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
  border: none;
}

input, textarea {
  caret-color: var(--color-primary);
  outline: none;
}

select {
  color: var(--color-gray-9);
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 2rem;
}

body {
  color: var(--color-black);
  background-color: var(--color-dark);
  font-family: var(--body-font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  min-height: 100%;
}

img, svg {
  vertical-align: middle;
}

header {
  background-color: var(--color-primary);
}

.pg-container {
  position: relative;
  min-height: 100vh;
}

.no-copy {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.text-italic {
  font-style: italic;
}

.message-success {
  color: var(--color-green);
  font-size: 14px;
  margin-top: 5px;
}

.message-error {
  color: var(--color-red);
  font-size: 14px;
  margin-top: 5px;
}

.alert-success {
  background-color: #1e4620;
  color: #d4edda;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 5px;
  border: 1px solid #28a745;
  box-shadow: 0 0 15px #28a745cc;
  margin-bottom: 20px;
  border-radius: 8px;
  animation: fadeIn 0.4s ease forwards;
}

.alert-success i {
  font-size: 24px;
  color: #28a745;
}

.alert-success button, .alert-error button {
  background-color: transparent;
  font-size: 24px;
  color: #d4edda;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.alert-error {
  background-color: #462020;
  color: #f8d7da;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 5px;
  border: 1px solid #dc3545;
  box-shadow: 0 0 15px #dc3545cc;
  margin-bottom: 20px;
  border-radius: 8px;
  animation: fadeIn 0.4s ease forwards;
}

.alert-error i {
  font-size: 24px;
  color: #dc3545;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeOut {
  from {opacity: 1;}
  to {opacity: 0;}
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ===== noscript ===== */
.no-script {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-dark);
  color: var(--color-white-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 4;
}

.no-script strong {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.no-script p {
  font-size: 1.2rem;
  max-width: 400px;
}

/* ===== 404 ===== */
.error-404 {
  color: var(--color-white-2);
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error-404 h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-cyan-neon);
  text-shadow: 0 0 20px var(--color-cyan-neon), 0 0 40px var(--color-cyan-neon);
  margin-bottom: 1rem;
  animation: flicker 2s infinite alternate;
}

.error-404 h1::after {
  content: "💥";
  display: inline-block;
  margin-left: 0.5rem;
  animation: bounce 1.5s infinite;
}

.error-404 p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.error-404 p::before {
  content: "😢 ";
}

.error-404 a {
  display: inline-block;
  background: var(--color-cyan-neon);
  color: var(--color-black);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--color-cyan-neon);
}

.error-404 a::before {
  content: "🏠 ";
}

.error-404 a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 0 20px var(--color-cyan-neon);
  transform: scale(1.05);
}

.error-404::before,
.error-404::after {
  content: "🚀 💫 🌙 ⭐";
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 10s linear infinite;
}

.error-404::after {
  top: auto;
  bottom: 10%;
  right: 5%;
  left: auto;
  animation-delay: 5s;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.3;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.navbar {
  padding: 10px 0;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.navbar-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 1rem;
}

.navbar-content-link {
  color: var(--color-black);
  background-color: var(--color-gray-3);
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 10px;
}

.navbar-content-menu {
  color: var(--color-gray-2);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo span {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar-logo img {
  width: auto;
  height: 60px;
}

.overlay-menu-container {
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2;
  position: fixed;
  right: 0;
  top: 0;
  overflow-x: hidden;
  transition: width 0.5s;
}

.overlay-menu-container a {
  padding: 15px;
  color: var(--color-gray-8);
  display: block;
  overflow: hidden;
  white-space: nowrap;
  font-size: 22px;
  transition: color 0.3s;
}

.overlay-menu-container a:hover, .overlay-menu-container a:focus {
  color: var(--color-white);
}

.opened-menu {
  width: 280px;
}

.close-menu {
  position: absolute;
  top: 10px;
  right: 20px;
}

.overlay-menu {
  position: relative;
  top: 60px;
  text-align: left;
}

.overlay-menu i {
  color: var(--color-gray-8);
}

#language-menu ul, #categories-menu ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

#language-menu.open ul {
  max-height: 200px;
  overflow: hidden;
}

.language-toggle, .categories-toggle {
  color: var(--color-gray-8);
  width: 100%;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  font-size: 20px;
  white-space: nowrap;
}

#language-menu ul li, #categories-menu ul li {
  margin-bottom: 6px;
}

#language-menu ul li a, #categories-menu ul li a {
  font-size: 1rem;
  padding: 8px;
}

#categories-menu {
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#categories-menu.open ul {
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.modal-content {
  background-color: #1f1f1f;
  padding: 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  color: var(--color-gray-3);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  text-align: center;
}

#modal-title {
  margin-bottom: 5px;
}

.modal-content select {
  width: 100%;
  padding: 8px;
  margin-top: 10px;
  border-radius: 6px;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-buttons button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-buttons button[type="submit"], .modal-buttons #start-checkout-btn {
  background-color: #28a745;
  color: var(--color-white);
}

.modal-buttons button[type="button"] {
  background-color: #6c757d;
  color: var(--color-white);
}

#custom-alert-title {
  margin-bottom: 5px;
}

#custom-alert .modal-buttons button {
  background-color: #28a745;
  width: 100%;
  font-weight: bold;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ====== Home ====== */
.find-groups-section {
  width: 100%;
  height: 200px;
  background-color: rgba(23, 23, 23, 0.5);
  border-bottom: 2px solid var(--color-gray-5);
  display: flex;
  align-items: center;
}

.find-groups {
  background-color: var(--color-white);
  width: 100%;
  max-width: 520px;
  height: 40px;
  padding: 0 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  margin: 0 auto;
}

.find-groups input {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  font-size: 17px;
  background: none;
}

.find-groups input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.find-groups-clear-btn {
  display: none;
}

.find-groups input[type="search"]:not(:placeholder-shown) + .find-groups-clear-btn {
  display: block;
}

.find-groups-clear-btn,
.find-groups-btn {
  color: var(--color-gray-4);
  position: static;
  font-size: 18px;
}

.groups {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.whatsapp-groups-title {
  margin-bottom: 1.5rem;
}

.whatsapp-groups-title.whatsapp-groups-my-country {
  font-size: 2rem;
}

.whatsapp-groups-my-country {
  color: var(--color-white-2);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.whatsapp-groups-title, .faq-whatsapp-title {
  color: var(--color-white-2);
  text-align: center;
}

.groups-filter {
  justify-content: center;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 2rem;
}

.groups-filter label {
  color: var(--color-white-2);
}

#region-select {
  background-color: var(--color-white);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
}

.find-groups-result {
  color: var(--color-white-2);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.find-groups-result strong {
  color: var(--color-primary);
}

.whatsapp-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
}

.card-col {
  flex: 0 0 100%;
  max-width: 100%;
}

.whatsapp-groups-card {
  background-color: var(--color-black-2);
  position: relative;
  border: 1px solid var(--color-gray-5);
  background-clip: border-box;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.whatsapp-groups-card-img-wrapper {
  width: 100%;
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.whatsapp-groups-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-groups-card-flag {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.whatsapp-groups-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  word-break: break-word;
}

.whatsapp-groups-card-title {
  line-height: 1.2;
  white-space: nowrap;
  font-size: 1.25rem;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.whatsapp-groups-card-user {
  color: var(--color-gray-11);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whatsapp-groups-card-description {
  height: 6em;
  text-align: left;
  margin-bottom: 20px;
}

.whatsapp-groups-card-ctg {
  color: var(--color-gray-7);
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whatsapp-groups-card-title, .whatsapp-groups-card-user, .whatsapp-groups-card-ctg {
  max-width: 100%;
}

.whatsapp-groups-card-title, .whatsapp-groups-card-description {
  color: var(--color-white-2);
  overflow: hidden;
}

.whatsapp-groups-btn {
  color: var(--color-white);
  background-color: var(--color-primary);
  width: 100%;
  padding: 10px;
  display: block;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.whatsapp-groups-btn:hover, .whatsapp-groups-btn:focus {
  background-color: var(--color-tertiary);
}

.vip-badge {
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-yellow), #ffa500);
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1;
}

.whatsapp-groups-card.vip, .send-group-card-preview.vip, .group-header.vip {
  border: 1px solid var(--color-yellow-2);
  background-clip: padding-box;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 4px 20px rgba(0,0,0,0.3);
}

.group-card.vip {
  border: 1px solid var(--color-yellow);
  background-clip: padding-box;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/*
.whatsapp-groups-card.vip:hover {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 8px 25px rgba(0,0,0,0.4); 
}
*/

.whatsapp-groups-empty {
	color: var(--color-white-2);
  padding: 30px;
  font-size: 20px;
  border: 1px solid var(--color-gray-9);
  text-align: center;
  background: var(--color-gray-12);
  border-radius: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pagination-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.pagination-btn:hover, .pagination-btn:focus {
  background-color: var(--color-tertiary);
}

.faq-whatsapp {
  padding-bottom: 1rem;
}

.faq-whatsapp .container {
  max-width: 800px;
}

.faq-whatsapp-title {
  font-size: 26px;
  margin-bottom: 30px;
}

.faq-whatsapp h3 {
  color: var(--color-white-2);
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.faq-whatsapp p {
  color: #5a5a5a;
}

footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 1.5rem 0;
}

footer a {
  font-weight: 600;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--color-gray);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 5rem;
  justify-content: center;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  font-size: 17px;
}

.footer-copy {
  font-size: 15px;
}

/* ====== Login, cadastro, esqueceu senha ====== */
.auth-main {
  padding: 4rem 0;
}

.auth-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.auth-box {
  background-color: var(--color-black-2);
  width: 100%;
  max-width: 400px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.auth {
  position: relative;
  margin-bottom: 40px;
}

.auth-title {
  color: var(--color-white-2);
  margin-bottom: 30px;
}

.auth-title-description {
  color: var(--color-white-2);
  margin-bottom: 10px;
}

.auth-description {
  color: var(--color-white-2);
  margin-bottom: 20px;
}

.auth-main .container .auth input {
  background-color: var(--color-white);
  width: 100%;
  border-radius: 5px;
  font-size: 1rem;
}

.auth-main .container .auth #password,
.auth-main .container .auth #repeat-password { 
  padding-right: 30px; 
}

.auth-main .container .auth label {
  color: var(--color-gray-4);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  pointer-events: none;
  transition: 0.5s;
}

.auth-main .container .auth input, .auth-main .container .auth label {
  padding: 10px;
}

.auth-main .container .auth input:focus ~ label,
.auth-main .container .auth input:not(:placeholder-shown) ~ label {
  color: var(--color-cyan-neon);
  top: -30px;
  left: 0;
  font-size: 13px;
}

.auth-btn {
  color: var(--color-black);
  background-color: var(--color-cyan-neon);
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 2px;
  transition: background-color 0.3s;
}

.auth-btn:hover, .auth-btn:focus {
  background-color: rgb(0, 170, 179);
}

.auth-forgot-password {
  font-size: 14px;
  margin-top: 30px;
}

.auth-register {
  margin-top: 40px;
}

.auth-login {
  margin-top: 30px;
}

.auth-register, .auth-login {
  font-size: 15px;
}

.auth-forgot-password, .auth-register, .auth-login {
  color: var(--color-cyan-neon);
}

.auth-register a, .auth-login a {
  color: var(--color-white);
}

.auth-register a:hover, .auth-register a:focus, .auth-forgot-password a:hover, .auth-forgot-password a:focus, .auth-login a:hover, .auth-login a:focus  {
  text-decoration: underline;
}

.auth-cancel-register {
  font-size: 15px;
  margin-top: 20px;
}

.auth-cancel-register a {
  color: var(--color-cyan-neon);
  transition: color 0.3s, text-decoration 0.3s;
}

.auth-cancel-register a:hover,
.auth-cancel-register a:focus {
  color: #00cfd1;
  text-decoration: underline;
}

/* ====== Minha conta ====== */
.my-account-wrapper {
  display: flex;
  flex-direction: row;
  border-left: 1px solid var(--color-gray-5);
  border-right: 1px solid var(--color-gray-5);
}

.my-account-sidebar {
  min-width: 250px;
  min-height: 100vh;
  border-right: 1px solid var(--color-gray-5);
}

.my-account-menu {
  padding: 20px 0;
}

.my-account-menu span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.my-account-menu button, .my-account-menu a {
  color: var(--color-gray-6);
  width: 100%;
  padding: 20px;
  display: block;
  text-align: left;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.my-account-menu button.active, .my-account-menu a.active {
  background-color: var(--color-primary);
  border-radius: 5px;
}

.my-account-menu button.no-animation, .my-account-menu a.no-animation {
	transition: none;
}

#my-groups, #store, #profile {
  flex-grow: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 30px;
  padding-right: 30px;
}

.my-groups-title, .store-title, .profile-title {
  color: var(--color-white-2);
  text-align: center;
  font-size: 26px;
  margin-bottom: 2rem;
}

.my-groups-title::after, .store-title::after, .profile-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin: 5px auto 0;
}

.my-groups-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.group-card {
  background-color: rgba(255,255,255,0.02);
  padding: 15px;
  display: flex;
  gap: 10px;
  border: 1px solid var(--color-gray-5);
  border-radius: 12px;
}

.group-card-img {
  flex: 0 0 120px;
  width: 120px;
  overflow: hidden;
  border-radius: 12px;
}

.group-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-card-info {
  width: 100%;
}

.group-card-info h3 {
  color: var(--color-white-2);
  line-height: 1.2;
  font-size: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}

.vip-benefits {
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid var(--color-gray-5);
  border-radius: 8px;
}

.vip-benefits ul {
  margin: 8px 0;
}

.vip-benefits li {
  font-size: 14px;
  margin-bottom: 5px;
}

.vip-benefits i {
  color: var(--color-yellow);
  margin-right: 6px;
}

.group-card-status {
  margin-bottom: 12px;
}

.group-card-status .card-status {
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
}

.card-status.approved {
  background-color: rgba(39, 174, 96, 0.15);
  color: #27ae60;
}

.card-status.pending {
  background-color: rgba(255, 165, 0, 0.15);
  color: #ffa500;
}

.card-status.rejected {
  background-color: rgba(231, 76, 60, 0.15);
  color: var(--color-red-2);
}

.card-rejection-reason {
  color: var(--color-red-2);
  display: block;
  margin-top: 15px;
}

.group-card-views {
  color: var(--color-white-2);
  margin-bottom: 10px;
  font-size: 15px;
}

.group-card-views i {
  color: #555;
}

.group-card-views .views-count {
  font-weight: bold;
}

.group-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.group-card-actions a {
  color: var(--color-white);
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.group-card-actions a.boost-btn {
  background-color: #27ae60;
}

.group-card-actions .boost-btn.disabled {
  color: var(--color-white);
  background-color: #27ae60;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 5px;
}

.group-card-actions .boost-btn.disabled-2 {
  color: var(--color-white);
  background-color: #27ae60;
  padding: 6px 10px;
  opacity: 0.7;
  font-size: 14px;
  border-radius: 5px;
}

.group-card-actions .promote-btn.disabled {
  padding: 6px 10px;
  opacity: 0.7;
  font-size: 14px;
  border-radius: 5px;
}

.group-card-actions .disabled, .group-card-actions .disabled-2 {
  cursor: not-allowed;
  pointer-events: none;
}

.store-card-verified-btn.disabled {
  pointer-events: none;
  opacity: 0.7;
  cursor: not-allowed;
}

.group-card-actions a.promote-btn,
.group-card-actions span.promote-btn {
  background-color: var(--color-yellow-3);
  color: var(--color-black);
  font-weight: bold;
}

.group-card-actions a.view-btn {
  background-color: var(--color-primary);
}

.group-card-actions .view-btn.disabled {
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 6px 10px;
  opacity: 0.7;
  font-size: 14px;
  border-radius: 5px;
}

.group-card-actions a.edit-btn {
  background-color: #2c3e50;
}

.group-card-actions a.delete-btn {
  background-color: var(--color-red-2);
}

.group-card-actions a:hover {
  opacity: 0.8;
}

.vip-info-box {
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.05));
  border: 1px solid var(--color-yellow);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
  animation: glow 3s infinite alternate;
}

.vip-info-box li {
  font-size: 14px;
  margin-bottom: 5px;
}

.vip-info-header {
  color: var(--color-yellow);
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.vip-info-header i {
  font-size: 1.2rem;
}

.vip-glow {
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255,215,0,0.3); }
  to { box-shadow: 0 0 20px rgba(255,215,0,0.6); }
}

.no-groups {
	text-align: center;
	color: var(--color-white);
	font-size: 18px;
}

.no-groups a.send-group-btn-2 {
  display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	background-color: var(--color-primary);
	border-radius: 10px;
	transition: background-color 0.3s ease;
}

.no-groups a.send-group-btn-2:hover, a.send-group-btn-2:focus {
	background-color: var(--color-secondary);
}

.edit-group {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.save-group-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
}

.my-account-back {
  color: var(--color-primary);
  display: block;
  font-size: 15px;
  text-align: center;
  margin-top: 20px;
}

.my-account-back:hover, .my-account-back:focus {
  text-decoration: underline;
}

.store-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;

}

.store-card-col {
  flex: 0 0 100%;
  max-width: 100%;
}

.store-card-verified {
  background-color: var(--color-black-2);
  min-height: 350px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--color-gray-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  word-break: break-word;
  justify-content: space-between;
}

.store-card-verified-title {
  color: var(--color-white-2);
  font-size: 22px;
  text-transform: uppercase;
}

.store-card-verified-value {
  color: var(--color-white-2);
  font-size: 21px;
  font-weight: bold;
}

.store-card-verified-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.store-card-verified-btn:hover, .store-card-verified-btn:focus {
  background-color: var(--color-tertiary);
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.profile-image-container {
  position: relative;
  background: transparent;
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
}

.profile-image-container label {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-gray-5);
  overflow: hidden;
  background-clip: border-box;
  cursor: pointer;
  position: relative;
}

#profile-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  pointer-events: none;
}

/*
.profile-image-container:hover .profile-image-overlay {
  opacity: 1;
}
*/

.profile-image-overlay.no-photo {
  opacity: 1;
}

.profile-image-overlay i {
  font-size: 24px;
}

#remove-profile-image-btn {
  background-color: transparent;
  border: 1px solid var(--color-red-2);
  color: var(--color-red-2);
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#remove-profile-image-btn:hover {
  background-color: var(--color-red-2);
  color: var(--color-white);
}

.profile-edit label {
  color: var(--color-white);
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.profile-edit input, 
.profile-edit textarea, 
.profile-edit select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-gray-5);
  border-radius: 8px;
  font-size: 17px;
  background-color: rgba(255,255,255,0.05);
  color: var(--color-white);
}

.profile-edit select option {
  background-color: var(--color-black-3);
  color: var(--color-white);
}

.profile-edit .profile-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-edit .profile-checkbox input[type="checkbox"] {
  display: none;
}

.profile-edit .profile-checkbox .profile-checkmark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.05);
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}

.profile-edit .profile-checkbox .profile-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.profile-edit .profile-checkbox input[type="checkbox"]:checked + .profile-checkmark::after {
  display: block;
}

.profile-edit .profile-checkbox:hover .profile-checkmark {
  border-color: var(--color-white);
}

.delete-account-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background-color: var(--color-red-3);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.delete-account-btn:hover, .delete-account-btn:focus {
  background-color: #c62828;
}

/* ====== Enviar grupo ====== */
.send-group-main {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.send-group-title {
  color: var(--color-white-2);
  margin-bottom: 30px;
}

.send-group-description {
  color: var(--color-white-2);
  margin-bottom: 42px;
}

.send-group-title, .send-group-description {
  text-align: center;
}

.send-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.send-group-card-preview {
  background-color: var(--color-black-2);
  position: relative;
  border: 1px solid var(--color-gray-5);
  background-clip: border-box;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#card-preview-image {
  width: 100%;
  position: relative;
  aspect-ratio: 2 / 1;
  background-color: #0c0c0c;
  background-size: cover;
  background-position: center;
}

#card-preview-image:before {
  content: "";
  float: left;
  padding-bottom: 50%;
}

#card-preview-image:after {
  clear: both;
  content: "";
  display: table;
}

.send-group-card-preview-flag {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.send-group-card-preview-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  word-break: break-word;
}

#send-group-card-preview-title {
  color: var(--color-white-2);
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

#send-group-card-preview-user {
  color: var(--color-gray-11);
  margin-bottom: 10px;
}

#send-group-card-preview-description {
  color: var(--color-white-2);
  height: 6em;
  text-align: left;
  overflow: hidden;
  margin-bottom: 20px;
}

#send-group-card-preview-ctg {
  color: var(--color-gray-7);
}

#send-group-card-preview-title, #send-group-card-preview-user, #send-group-card-preview-ctg {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#send-group-loading {
  color: var(--color-white);
  text-align: center;
}

.send-group-rules-add {
  margin-bottom: 5px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid var(--color-gray-5);
}

.send-group-rules-remove {
  font-size: 20px;
}

.send-group-rules-add, .send-group-rules-remove {
  color: var(--color-gray-7);
  padding: 5px;
}

.send-group-rules-add:focus-visible, .send-group-rules-remove:focus-visible {
  outline: 1px solid var(--color-primary);
}

.send-group-rules-remove:hover, .send-group-rules-remove:focus {
  color: var(--color-white);
}

.rule-input {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.rule-input input {
  margin-right: 10px;
}

.send-group-form {
  background-color: var(--color-black-2);
  max-width: 600px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--color-gray-5);
  border-radius: 10px;
}

.send-group-shipping-rules {
  padding-bottom: 10px;
  text-align: left;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-5);
}

.send-group-shipping-rules strong {
  color: var(--color-white);
}

.send-group-shipping-rules ul {
  margin-top: 10px;
}

.send-group-shipping-rules li {
  color: var(--color-gray-10);
}

.send-group {
  margin-bottom: 30px;
  text-align: left;
}

.send-group label {
  color: var(--color-white);
  display: block;
  margin-bottom: 10px;
}

.send-group input[type="file"] {
  background-color: transparent;
  color: var(--color-white);
  padding: 0;
  font-size: 15px;
}

.send-group option {
  font-size: 18px;
  font-weight: 500;
}

.send-group input, .send-group textarea, .send-group select {
  background-color: var(--color-white);
  width: 100%;
  padding: 10px;
  font-size: 17px;
  border-radius: 5px;
  border: 1px solid transparent;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow 0.2s ease-in-out;
}

.send-group input:focus, .send-group textarea:focus, .send-group select:focus {
  box-shadow: 0 0 0 2px var(--color-primary);
}

.send-group input.error, .send-group textarea.error {
  box-shadow: 0 0 0 1px var(--color-red);
}

.send-group-preferences label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.send-group-preferences input[type="checkbox"] {
  width: 15px;
  height: 15px;
  box-shadow: none;
}

.send-group-preferences input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 2px var(--color-primary);
}

.send-group small {
  color: var(--color-gray-10);
}

#tags-container {
  background-color: var(--color-white);
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
}

#tags-container .tag {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 5px 10px;
  border-radius: 3px;
  margin: 3px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}

#tags-container .tag span {
  margin-left: 5px;
  cursor: pointer;
  font-weight: bold;
}

.send-group-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  padding: 10px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  /*transition: background-color 0.2s ease;*/
}

/*
.send-group-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  box-shadow: 0 0 12px rgba(0, 139, 139, 0.8);
}

.send-group-btn:hover, .send-group-btn:focus {
  background-color: var(--color-tertiary);
}
*/

/* ====== Perfil ====== */
.user-profile {
  color: var(--color-white-2);
  padding: 2rem 0;
}

.profile-header {
  position: relative;
  margin-bottom: 40px;
}

.user-banner {
  position: relative;
  width: 100%;
  height: 220px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.user-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.user-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0.65));
}

.profile-avatar {
  position: absolute;
  background: transparent;
  width: 120px;
  height: 120px;
  left: 32px;
  bottom: -50px;
  border-radius: 50%;
  z-index: 1;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  padding: 20px;
  text-align: left;
  border-radius: 18px;
  margin-top: 30px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.user-info {
  width: 100%;
}

.user-info-list li {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.user-name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.user-name {
  font-size: 1.6rem;
}

.user-role {
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

.user-role.role-admin {
  background: linear-gradient(135deg, #ff4d4d, #c0392b);
  color: var(--color-white);
}

.user-role.role-moderator {
  background: linear-gradient(135deg, #3498db, #1e6fa8);
  color: var(--color-white);
}

.user-role i {
  font-size: 0.85rem;
}

.user-bio {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.user-bio h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.user-groups-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.user-you {
  font-size: 22px;
}

.whatsapp-contact {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(37, 211, 102, 0.55);
  color: #25d366;
  font-size: 1.15rem;
  transition: all 0.2s ease;
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.15);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.08);
  transform: translateY(-1px);
}

.whatsapp-btn:active {
  transform: translateY(0);
}

.whatsapp-groups-empty-2 {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  font-size: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* ====== Checkout ====== */
.checkout {
  padding: 2rem 0;
}

.checkout-title {
  color: var(--color-white-2);
  text-align: center;
  margin-bottom: 2rem;
}

.checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  text-align: center;
}

.checkout-steps .step span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-gray-5);
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 5px;
  z-index: 1;
}

.checkout-steps .step.active span {
  background-color: var(--color-primary);
}

.checkout-steps .step p {
  color: var(--color-white-2);
  font-size: 13px;
}

.checkout-steps .step::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-gray-5);
  z-index: 0;
}

.checkout-steps .step:last-child::after {
  display: none;
}

.checkout-steps .step.active::after {
  background-color: var(--color-primary);
}

.checkout-summary {
  color: var(--color-white-2);
  background-color: var(--color-dark);
  padding: 30px;
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.checkout-summary h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--color-gray-9);
  padding-bottom: 10px;
}

.checkout-summary p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.checkout-summary strong {
  font-weight: 600;
  display: inline-block;
}

.checkout-amount {
  text-align: center;
  font-weight: 500;
  margin-top: 25px;
  padding-top: 15px;
}

.checkout-amount strong {
  color: var(--color-yellow);
  font-weight: bolder;
}

.checkout-divider {
  border: 0;
  border-top: 2px solid var(--color-gray-9);
  margin: 1.5rem 0;
}

.checkout-method-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 1.5rem;
}

.checkout-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-method-card {
  background-color: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

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

.checkout-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-logo {
  height: 30px;
  object-fit: contain;
}

.checkout-method-card span {
  color: var(--color-white);
}

.loading-spinner {
  border: 3px solid var(--color-gray-9);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

.checkout-btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.checkout-btn.disabled {
  pointer-events: none;
  opacity: 0.7;
  cursor: not-allowed;
}

.checkout-btn:hover, .checkout-btn:focus {
  background-color: var(--color-tertiary);
}

.checkout-security {
  text-align: center;
  color: var(--color-gray-11);
  margin-top: 20px;
  font-size: 14px;
}

.checkout-security i {
  color: var(--color-primary);
  margin-right: 5px;
}

.checkout-terms {
  color: var(--color-gray-10);
  text-align: center;
  margin-top: 15px;
}

.checkout-terms p {
  font-size: 15px;
}

.checkout-terms a {
  color: var(--color-primary);
}

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

/* ====== Pagamento ====== */
.payment {
  padding: 4rem 0;
}

.payment .container {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.payment-box {
  color: var(--color-white-2);
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 1px 4px rgba(255,255,255,0.05);
}

.payment-box h1 {
  margin-bottom: 1rem;
}

.payment-box p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.payment-loading-spinner {
  width: 92px;
  height: 92px;
  background: transparent;
  border: 6px solid rgba(0,0,0,0.06);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: none;
  animation: spin 1s linear infinite;
}

#payment-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 220ms ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.payment-pending-icon {
  font-size: 4rem;
  margin-bottom: 18px;
}

.payment-success-check {
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.12), rgba(46, 204, 113, 0.03));
  border: 2px solid rgba(46, 204, 113, 0.18);
}

.payment-success-check::after {
  content: "✓";
  color: #2ecc71;
  display: block;
  font-size: 46px;
  font-weight: 700;
}

.payment-error-icon {
  background: linear-gradient(180deg, rgba(231,76,60,0.06), rgba(231,76,60,0.02));
  border: 2px solid rgba(231,76,60,0.12);
}

.payment-error-icon::after {
  content: "✕";
  color: var(--color-red-2);
  display: block;
  font-size: 40px;
  font-weight: 700;
}

#payment-title {
  font-weight: 600;
  margin-bottom: 18px;
}

#payment-message {
  margin-bottom: 18px;
}

.retry-btn {
  background-color: var(--color-red-3);
  color: var(--color-white);
  padding: 12px 22px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 12px;
  transition: transform .12s ease;
}

.my-account-back-btn {
  color: var(--color-white);
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
  padding: 12px 22px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 12px;
  transition: transform .12s ease;
}

.my-account-back-btn:hover, .retry-btn:hover {
  transform: translateY(-2px);
}

/* ====== Grupo ====== */
.group {
  padding: 40px 0;
}

.group-box {
  background: var(--color-black-2);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.group-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/*
.group-header.group-box:not(.vip) {
  border: 1px solid rgba(3, 233, 244, 0.25);
  box-shadow: 0 0 30px rgba(3, 233, 244, 0.15);
}
*/

.group-header.group-box:not(.vip) {
  border: 1px solid rgba(3, 233, 244, 0.25);
}

.group-header img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
}

.group-header-info {
  flex: 1;
}

.group-header-title {
  color: var(--color-white-2);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.group-meta {
  color: var(--color-gray-7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.separator {
  margin: 0 4px;
  opacity: .7;
}

.group-user:hover, .group-user:focus {
  color: var(--color-cyan-neon);
}

.group-country-restriction {
  color: var(--color-cyan-neon);
  background: rgba(3, 233, 244, 0.08); 
  padding: 8px;
  border: 1px solid rgba(3, 233, 244, 0.3);
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
}

.group-country-restriction i {
  opacity: 0.9;
}

.group-join-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: 14px 20px;
  font-weight: 600;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.group-join-btn:hover, .group-join-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 139, 139, 0.4);
}

.group-description {
  color: var(--color-white-2);
}

.group h2 {
  color: var(--color-white-2);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.group-rules-list li {
  color: var(--color-white-2);
  line-height: 1.6;
}

.group-info ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.group-info li {
  color: var(--color-white-2);
  font-size: 14px;
}

.tag-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gray-7);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--color-gray-5);
  border-radius: 6px;
}

.group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.group-tags-content {
  display: flex;
  flex-direction: column;
}

.group-tags .tag-2 {
  background: var(--color-gray-5);
  color: var(--color-cyan-neon);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50px;
  transition: background-color .25s ease, box-shadow .25s ease, transform .2s ease, color .2s ease;
}

.group-tags .tag-2:hover,
.group-tags .tag-2:focus {
  background: rgba(3, 233, 244, 0.18);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(3, 233, 244, 0.6), 0 6px 18px rgba(3, 233, 244, 0.35);
}

.gift-vip-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border: 1px solid var(--color-cyan-neon);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(3, 233, 244, 0.2);
}

.gift-vip-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gift-icon {
  font-size: 2.5rem;
  color: var(--color-yellow);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.gift-text h3 {
  color: var(--color-white);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.gift-text p {
  color: var(--color-gray-4);
  font-size: 0.9rem;
}

.gift-vip-btn {
  background-color: var(--color-cyan-neon);
  color: var(--color-black);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gift-vip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--color-cyan-neon);
}

.group-rating {
  display: flex;
  flex-direction: column;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-stars i {
  font-size: 22px;
  color: var(--color-gray-7);
  cursor: pointer;
  transition: color .2s ease, transform .1s ease;
}

.rating-stars i:hover {
  transform: scale(1.1);
}

.rating-owner .rating-stars i {
  cursor: not-allowed;
  pointer-events: none;
}

.rating-owner .rating-stars i:hover {
  transform: none;
}

.rating-owner-warning {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(3, 233, 244, 0.05);
  border: 1px solid rgba(3, 233, 244, 0.3);
  color: var(--color-cyan-neon);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars.selectable i.active,
.rating-stars.selectable i.hover {
  color: var(--color-yellow-4);
}

.rating-info {
  margin-left: 10px;
  font-size: 14px;
  color: var(--color-gray-8);
}

.rating-login-required {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(3, 233, 244, 0.05);
  border: 1px solid rgba(3, 233, 244, 0.3);
  color: var(--color-cyan-neon);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-login-btn {
  background: var(--color-cyan-neon);
  color: var(--color-black);
  padding: 6px 14px;
  border: none;
  font-weight: 700;
  font-size: 13px;
  margin-left: auto;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.rating-login-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px rgba(3, 233, 244, 0.4);
  transform: translateY(-1px);
}

.rating-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rating-form.open {
  gap: 10px;
}

.rating-form textarea {
  width: 100%;
}

.rating-toggle-comment {
  background: transparent;
  color: var(--color-cyan-neon);
  font-size: 14px;
  align-self: flex-start;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-comment-wrapper {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
}

.rating-comment-wrapper.open {
  max-height: 200px;
  opacity: 1;
}

.rating-form .rating-submit,
.rating-form .rating-delete {
  display: none;
}

.rating-form.open .rating-submit,
.rating-form.open .rating-delete {
  display: inline-flex;
}

.rating-comment-wrapper textarea {
  margin-top: 8px;
}

.rating-form textarea {
  background: var(--color-black);
  color: var(--color-white);
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
}

.rating-submit {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  align-self: flex-start;
  font-size: 14px;
  border-radius: 8px;
}

.rating-delete {
  background: transparent;
  color: var(--color-red-2);
  padding: 6px 14px;
  align-self: flex-start;
  border: 1px solid var(--color-red-2);
  font-size: 13px;
  border-radius: 8px;
}

.rating-delete:hover {
  background: rgba(231, 76, 60, 0.1);
}

.rating-list:empty {
  display: none;
  margin-top: 0;
}

.rating-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 15px;
}

.rating-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-gray-5);
  border-radius: 12px;
  padding: 14px;
}

.rating-user {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rating-avatar {
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-gray-5);
  background: var(--color-black);
}

.rating-user-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-user-link {
  display: inline-flex;
}

.rating-username {
  color: var(--color-white-2);
  font-size: 14px;
  font-weight: 600;
}

.rating-username:hover, .rating-user-link:hover img {
  filter: brightness(1.1);
}

.rating-stars-view {
  color: var(--color-yellow-4);
  letter-spacing: 2px;
}

.rating-time {
  font-size: 12px;
  color: var(--color-gray-8);
}

.rating-comment {
  color: var(--color-white-2);
  word-break: break-word;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

.rating-actions {
  margin-top: 8px;
}

.rating-like {
  background: transparent;
  border: 1px solid var(--color-gray-5);
  color: var(--color-gray-8);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s ease;
}

.rating-like:hover {
  color: var(--color-cyan-neon);
  border-color: var(--color-cyan-neon);
}

.rating-like.liked {
  color: var(--color-cyan-neon);
  border-color: var(--color-cyan-neon);
  background: rgba(3, 233, 244, 0.08);
}

.related-groups h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
}

/* ====== Melhores grupos ====== */
.best-groups {
  padding: 2rem 0;
}

.best-groups-title {
  margin-bottom: 20px;
}

.best-groups-description {
  margin-bottom: 30px;
}

.best-groups-title, .best-groups-description {
  color: var(--color-white-2);
  text-align: center;
}

.best-groups-list {
  display: grid;
  gap: 1.5rem;
}

.best-groups-card {
  background: var(--color-black-3);
  display: flex;
  position: relative;
  padding: 15px;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.best-groups-card.vip {
  border: 1px solid var(--color-yellow);
  background-clip: padding-box;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.35), 0 4px 18px rgba(0, 0, 0, 0.25);
}

.vip-badge-2 {
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-yellow), #ffb700);
  position: absolute;
  top: 8px;
  right: 8px;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
  z-index: 1;
}

.best-groups-card .group-avatar {
  width: 80px;
  height: 80px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 12px;
}

.best-groups-card .group-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
}

.rank-badge img {
  width: 36px;
  height: 36px;
  display: block;
}

.rank-badge.rank-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  color: var(--color-white-2);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.card-info h3 {
  color: var(--color-white-2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-info p {
  color: var(--color-white-2);
  margin: 8px 0;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-stats {
  color: var(--color-gray-8);
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 12px;
}
