@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  user-select: none;
}

.iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.body {
  background: linear-gradient(0deg, var(--colorSecundario) 20%, var(--colorPrincipal) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .body {
    padding: 0;
  }
}

.login-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .login-container {
    flex-direction: column;
    height: auto;
    margin: 20px;
  }
}
@media (max-width: 768px) {
  .login-container {
    margin: 0;
    border-radius: 0;
    height: 100vh;
  }
}

.login-left {
  flex: 1;
  background: linear-gradient(0deg, #e6efff 20%, #c8d5ff 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(150%) contrast(120%);
  -webkit-backdrop-filter: blur(30px) saturate(150%) contrast(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .login-left {
    min-height: 40vh;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .login-left {
    min-height: 35vh;
    padding: 20px;
  }
}

.login-left::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: conic-gradient(from 0deg at 30% 30%, rgba(255, 255, 255, 0.4) 0deg, transparent 60deg, rgba(255, 255, 255, 0.2) 120deg, transparent 180deg, rgba(255, 255, 255, 0.3) 240deg, transparent 300deg, rgba(255, 255, 255, 0.4) 360deg);
  border-radius: 50%;
  filter: blur(25px);
  animation: liquidRotate 20s linear infinite;
  pointer-events: none;
}

.login-left::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 60% 40% at 70% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.1) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(15px);
  animation: liquidFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes liquidRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes liquidFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
.brand-logo {
  z-index: 10;
}
.brand-logo h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--colorTextoContrario);
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .brand-logo h1 {
    font-size: 20px;
  }
}
.brand-logo span {
  font-size: 14px;
  color: var(--colorTextoContrario);
  font-weight: 500;
  letter-spacing: 2px;
}
@media (max-width: 480px) {
  .brand-logo span {
    font-size: 12px;
  }
}

.hero-content {
  z-index: 10;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .hero-content {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    margin-top: 20px;
  }
}
.hero-content h2 {
  font-size: 24px;
  color: var(--colorTextoContrario);
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 18px;
  }
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--colorTextoContrario);
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
}

p {
  color: var(--colorTextoContrario);
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .floating-icons {
    display: none;
  }
}

.icon-item {
  position: absolute;
  background: var(--colorPrincipal);
  color: var(--colorTextoContrario);
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  animation: float 6s ease-in-out infinite;
}
.icon-item.css-icon {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}
.icon-item.html-icon {
  top: 60%;
  right: 15%;
  animation-delay: -2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-item.html-icon small {
  font-size: 10px;
  margin-top: 2px;
}
.icon-item.code-icon {
  top: 40%;
  right: 35%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.login-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.login-form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background: var(--backgroundTema);
}
@media (max-width: 1024px) {
  .login-form-container {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .login-form-container {
    padding: 30px 20px;
  }
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}
.login-header h2 {
  font-size: 32px;
  color: var(--colorTexto);
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .login-header h2 {
    font-size: 28px;
  }
}
.login-header p {
  color: var(--colorTextoAlternativos);
  font-size: 16px;
}

.login-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.login-form .form-group input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--colorSecundario);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--backgroundTema);
}
@media (max-width: 480px) {
  .login-form .form-group input {
    padding: 14px 16px;
  }
}
.login-form .form-group input:focus {
  outline: none;
  border-color: var(--colorPrincipal);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.login-form .form-group input::placeholder {
  color: var(--colorTexto);
}
.login-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .login-form .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.login-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-form .checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--colorPrincipal);
}
.login-form .checkbox-group label {
  color: var(--colorTextoAlternativos);
  font-size: 14px;
  cursor: pointer;
}
.login-form .forgot-password {
  color: var(--colorPrincipal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.login-form .forgot-password:hover {
  text-decoration: underline;
}
.login-form .login-button {
  width: 100%;
  padding: 16px;
  background: var(--colorPrincipal);
  color: var(--colorTextoContrario);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .login-form .login-button {
    padding: 14px;
  }
}
.login-form .login-button:hover {
  background: var(--hover);
}
.login-form .login-button:hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}
.login-form .signup-link {
  text-align: center;
  color: var(--colorTextoAlternativos);
  font-size: 14px;
}
.login-form .signup-link a {
  color: var(--colorPrincipal);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
}
.login-form .signup-link a:hover {
  text-decoration: underline;
}

.bodyAdm {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background: #000000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgb(12, 78, 166) 100%);
}

.wrapper {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px);
  color: #fff;
  border-radius: 12px;
  padding: 30px 40px;
}

.wrapper h1 {
  font-size: 36px;
  text-align: center;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
  color: #fff;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 30%;
  transform: translate(-50%);
  font-size: 20px;
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: -15px 0 15px;
}

.remember-forgot label input {
  accent-color: #fff;
  margin-right: 3px;
}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.wrapper .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.wrapper .btn:hover {
  background-color: rgb(169, 185, 227);
}
.wrapper .btn:active {
  background-color: rgb(91, 168, 231);
}

.wrapper .register-link {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}

.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  transform: translateX(0%);
  transition: transform 0.3s ease;
  animation: login 1s ease;
}
.toast.show {
  transform: translateX(0%);
}
.toast.info .toast-icon {
  background: #2196f3;
}
.toast.info .toast-progress {
  background: #2196f3;
}
.toast.error .toast-icon {
  background: #f44336;
}
.toast.error .toast-progress {
  background: #f44336;
}
.toast.success .toast-icon {
  background: #4caf50;
}
.toast.success .toast-progress {
  background: #4caf50;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.toast-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 12px 12px;
  transition: width 0.1s ease;
}

.demo-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn.btn-info {
  background: #2196f3;
  color: white;
}
.btn.btn-info:hover {
  background: #1976d2;
}
.btn.btn-error {
  background: #f44336;
  color: white;
}
.btn.btn-error:hover {
  background: #d32f2f;
}
.btn.btn-success {
  background: #4caf50;
  color: white;
}
.btn.btn-success:hover {
  background: #388e3c;
}

@keyframes login {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.app-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}
@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
  }
}

.activeicon {
  color: var(--colorPrincipal);
}

.sidebar {
  width: 60px;
  background-color: var(--backgroundTema);
  border-right: 1.5px solid var(--backgroundTemaAlternativo);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
  }
}

.sidebar-header {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sidebar-header {
    margin-bottom: 0;
  }
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--colorPrincipal), var(--colorSecundario));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-symbol {
  width: 20px;
  height: 20px;
  background-color: var(--colorTextoSecundario);
  border-radius: 4px;
  position: relative;
}
.logo-symbol::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: var(--colorPrincipal);
  border-radius: 2px;
}
.logo-symbol::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  background-color: var(--colorSecundario);
  border-radius: 2px;
}

.sidebar-nav {
  flex: 1;
}
@media (max-width: 768px) {
  .sidebar-nav {
    flex: none;
    margin: 0 20px;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .nav-list {
    flex-direction: row;
    gap: 15px;
  }
}

.nav-item {
  width: 40px;
  height: 40px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  color: var(--colorTextoAlternativos);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-link:hover {
  background-color: var(--backgroundTemaAlternativo);
  color: var(--colorPrincipal);
}

.nav-icon {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.home-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3C/svg%3E");
}

.layers-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3C/svg%3E");
}

.chart-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 20V10'/%3E%3Cpath d='M12 20V4'/%3E%3Cpath d='M6 20v-6'/%3E%3C/svg%3E");
}

.tool-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

.folder-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z'/%3E%3C/svg%3E");
}

.upload-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='17,8 12,3 7,8'/%3E%3Cline x1='12' y1='3' x2='12' y2='15'/%3E%3C/svg%3E");
}

.bill-icon {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXJlY2VpcHQtdGV4dC1pY29uIGx1Y2lkZS1yZWNlaXB0LXRleHQiPjxwYXRoIGQ9Ik00IDJ2MjBsMi0xIDIgMSAyLTEgMiAxIDItMSAyIDEgMi0xIDIgMVYybC0yIDEtMi0xLTIgMS0yLTEtMiAxLTItMS0yIDFaIi8+PHBhdGggZD0iTTE0IDhIOCIvPjxwYXRoIGQ9Ik0xNiAxMkg4Ii8+PHBhdGggZD0iTTEzIDE2SDgiLz48L3N2Zz4=");
}

.debts-icon {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWJhbmtub3RlLWFycm93LWRvd24taWNvbiBsdWNpZGUtYmFua25vdGUtYXJyb3ctZG93biI+PHBhdGggZD0iTTEyIDE4SDRhMiAyIDAgMCAxLTItMlY4YTIgMiAwIDAgMSAyLTJoMTZhMiAyIDAgMCAxIDIgMnY1Ii8+PHBhdGggZD0ibTE2IDE5IDMgMyAzLTMiLz48cGF0aCBkPSJNMTggMTJoLjAxIi8+PHBhdGggZD0iTTE5IDE2djYiLz48cGF0aCBkPSJNNiAxMmguMDEiLz48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+PC9zdmc+");
}

.card-icon {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNyZWRpdC1jYXJkLWljb24gbHVjaWRlLWNyZWRpdC1jYXJkIj48cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMTQiIHg9IjIiIHk9IjUiIHJ4PSIyIi8+PGxpbmUgeDE9IjIiIHgyPSIyMiIgeTE9IjEwIiB5Mj0iMTAiLz48L3N2Zz4=");
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
@media (max-width: 768px) {
  .sidebar-footer {
    flex-direction: row;
    gap: 10px;
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  color: var(--colorTextoAlternativos);
  transition: all 0.3s ease;
}
.theme-toggle:hover {
  background-color: #f1f5f9;
  color: var(--colorPrincipal);
}

.theme-icon {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.sun-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3C/svg%3E");
}

.moon-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z'/%3E%3C/svg%3E");
}

.user-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e2e8f0;
}

.user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content {
  width: 20vw;
  background-color: var(--backgroundTema);
  padding: 20px;
  overflow: hidden;
  height: 100vh;
  transition: width 0.3s ease, padding 0.3s ease;
}
.main-content.show {
  padding: 20px;
}
.main-content.hide {
  width: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .main-content {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .main-content {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #03306b;
    padding: 15px;
  }
}

.content-panel {
  margin-bottom: 30px;
  height: 89%;
}
.content-panel:last-child {
  margin-bottom: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.panel-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--colorTexto);
  margin: 0;
}

.collapse-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  font-size: 18px;
  color: var(--colorTextoAlternativos);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.collapse-btn:hover {
  background-color: #f1f5f9;
  color: var(--colorPrincipal);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (max-width: 768px) {
  .menu-list {
    margin-top: 4rem;
  }
}
.menu-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu-item.active {
  background: linear-gradient(135deg, var(--colorPrincipal), var(--colorSecundario));
}
.menu-item.active .menu-link {
  color: var(--colorTextoSecundario);
}
.menu-item.active .menu-icon {
  background-color: var(--colorTextoSecundario);
}
.menu-item.active .menu-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--colorTextoSecundario);
}
.menu-item:hover:not(.active) {
  background-color: var(--backgroundTemaAlternativo);
}
.menu-item:hover:not(.active) .menu-link {
  color: var(--colorPrincipal);
}
.menu-item:hover:not(.active) .menu-icon {
  background-color: var(--colorPrincipal);
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--colorTexto);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 12px;
}

.menu-icon {
  width: 16px;
  height: 16px;
  background-color: var(--colorTextoAlternativos);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: all 0.3s ease;
}

.overview-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3C/svg%3E");
}

.recommendations-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.insights-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 11H5a2 2 0 00-2 2v7a2 2 0 002 2h4a2 2 0 002-2v-7a2 2 0 00-2-2z'/%3E%3Cpath d='M19 4H15a2 2 0 00-2 2v14a2 2 0 002 2h4a2 2 0 002-2V6a2 2 0 00-2-2z'/%3E%3C/svg%3E");
}

.campaigns-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3C/svg%3E");
}

.keywords-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
}

.reporting-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 20V10'/%3E%3Cpath d='M12 20V4'/%3E%3Cpath d='M6 20v-6'/%3E%3C/svg%3E");
}

.ad-groups-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 3h18v18H3zM9 9h6v6H9z'/%3E%3C/svg%3E");
}

.extensions-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z'/%3E%3Cline x1='16' y1='8' x2='2' y2='22'/%3E%3C/svg%3E");
}

.landing-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3C/svg%3E");
}

.settings-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v6m0 10v6m11-7h-6m-10 0H1m15.5-6.5l-4.24 4.24m-8.49 0L7.5 6.5'/%3E%3C/svg%3E");
}

.menu-text {
  flex: 1;
}

.menu-badge {
  background-color: var(--backgroundTemaAlternativo);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.team-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: var(--backgroundTemaAlternativo);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid var(--borderColor);
}

.team-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e2e8f0;
}

.team-details {
  flex: 1;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--colorTexto);
  margin: 0 0 4px 0;
}

.team-id {
  font-size: 12px;
  color: var(--colorTextoAlternativos);
  margin: 0;
}

.team-settings {
  /* botton para abrir dropdown */
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: var(--colorTextoAlternativos);
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.team-settings:hover {
  background-color: var(--colorTextoContrario);
  color: var(--colorPrincipal);
}

.content-area {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: var(--backgroundTemaAlternativo);
}
@media (max-width: 768px) {
  .content-area {
    padding: 15px;
  }
}

.content-container {
  flex: 1;
  overflow-y: auto;
  background-color: var(--backgroundTema);
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  min-height: 0;
  overflow: hidden;
  overflow-y: hidden;
}
@media (max-width: 768px) {
  .content-container {
    padding: 15px;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .main-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--backgroundTema);
    z-index: 1000;
    transition: width 0.3s ease, padding 0.3s ease;
  }
  .main-content.show {
    width: 70%;
    padding: 20px;
  }
  .main-content.hide {
    width: 0;
    padding: 0;
  }
  .sidebar {
    position: relative;
    z-index: 1001;
  }
  .app-container {
    position: relative;
  }
  .content-panel {
    height: auto;
  }
  .content-area {
    width: 100%;
  }
}
/* section for the dropdown-settings */
.admin-dropdown {
  position: relative;
  display: inline-block;
}

.admin-dropdown-menu {
  position: absolute;
  list-style: none;
  display: flex;
  flex-direction: column;
  background-color: var(--backgroundTema);
  bottom: 100%;
  right: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.admin-dropdown-menu .menu-link:hover:not(.active) {
  background-color: #f1f5f9;
}
.admin-dropdown-menu .menu-link:hover:not(.active) .menu-text {
  color: var(--colorPrincipal);
}
.admin-dropdown-menu .menu-link:hover:not(.active) .menu-icon {
  background-color: var(--colorPrincipal);
}

.admin-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  min-width: 10rem;
}

.pdf-icon {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWZpbGUtdGV4dC1pY29uIGx1Y2lkZS1maWxlLXRleHQiPjxwYXRoIGQ9Ik0xNSAySDZhMiAyIDAgMCAwLTIgMnYxNmEyIDIgMCAwIDAgMiAyaDEyYTIgMiAwIDAgMCAyLTJWN1oiLz48cGF0aCBkPSJNMTQgMnY0YTIgMiAwIDAgMCAyIDJoNCIvPjxwYXRoIGQ9Ik0xMCA5SDgiLz48cGF0aCBkPSJNMTYgMTNIOCIvPjxwYXRoIGQ9Ik0xNiAxN0g4Ii8+PC9zdmc+");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  display: inline-block;
}

.pdf-button {
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  border-radius: 8px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 12px;
  border: none;
  color: var(--colorTextoContrario);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 40px;
  height: 40px;
}
.pdf-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-size: 110% 110%;
}
.pdf-button:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
.pdf-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--colorPrincipal), 0.3);
}
.pdf-button .pdf-icon {
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWZpbGUtdGV4dC1pY29uIGx1Y2lkZS1maWxlLXRleHQiPjxwYXRoIGQ9Ik0xNSAySDZhMiAyIDAgMCAwLTIgMnYxNmEyIDIgMCAwIDAgMiAyaDEyYTIgMiAwIDAgMCAyLTJWN1oiLz48cGF0aCBkPSJNMTQgMnY0YTIgMiAwIDAgMCAyIDJoNCIvPjxwYXRoIGQ9Ik0xMCA5SDgiLz48cGF0aCBkPSJNMTYgMTNIOCIvPjxwYXRoIGQ9Ik0xNiAxN0g4Ii8+PC9zdmc+");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.containerbody {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.containerbody .rowone {
  width: 100%;
  height: 10vh;
  border-radius: 10px;
  background-color: var(--backgroundTema);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
}
.containerbody .rowone .boxTitle {
  width: 35%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.containerbody .rowone .boxTitle h2 {
  color: var(--colorTexto);
  text-transform: uppercase;
}
.containerbody .rowone .filters-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.containerbody .rowone .filters-container .search-wrapper {
  width: 50vh;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container {
  position: relative;
  width: 100%;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #666;
  pointer-events: none;
  z-index: 1;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input {
  width: 100%;
  height: 40px;
  padding: 0 15px 0 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: var(--backgroundTema);
  color: var(--colorTexto);
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input::placeholder {
  color: #999;
}
.containerbody .rowone .filters-container .date-filter {
  position: relative;
  min-width: 140px;
}
.containerbody .rowone .filters-container .date-filter .date-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: var(--backgroundTema);
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.containerbody .rowone .filters-container .date-filter .date-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.containerbody .rowone .filters-container .date-filter .date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.containerbody .rowone .filters-container .date-filter .date-label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: var(--backgroundTema);
  padding: 0 4px;
  font-size: 12px;
  color: #666;
  pointer-events: none;
}
.containerbody .rowone .filters-container .status-filter {
  min-width: 160px;
}
.containerbody .rowone .filters-container .status-filter .status-select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: var(--backgroundTema);
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.containerbody .rowone .filters-container .status-filter .status-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.containerbody .rowone .filters-container .status-filter .status-select option {
  padding: 8px;
}
@media (max-width: 768px) {
  .containerbody .rowone {
    height: auto;
    min-height: 10vh;
    padding: 1rem;
  }
  .containerbody .rowone .filters-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .containerbody .rowone .filters-container .search-wrapper,
  .containerbody .rowone .filters-container .date-filter,
  .containerbody .rowone .filters-container .status-filter {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .containerbody .rowone {
    padding: 0.75rem;
  }
  .containerbody .rowone .filters-container {
    gap: 0.5rem;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input {
    height: 36px;
    font-size: 13px;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-icon {
    width: 16px;
    height: 16px;
  }
  .containerbody .rowone .filters-container .date-filter .date-input,
  .containerbody .rowone .filters-container .status-filter .status-select {
    height: 36px;
    font-size: 13px;
  }
}
@media (prefers-color-scheme: dark) {
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-icon {
    color: #ccc;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input {
    border-color: var(--colorPrincipal);
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input::placeholder {
    color: #aaa;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  .containerbody .rowone .filters-container .date-filter .date-input {
    border-color: var(--colorPrincipal);
    color: var(--colorTexto);
  }
  .containerbody .rowone .filters-container .date-filter .date-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  .containerbody .rowone .filters-container .date-filter .date-label {
    color: var(--colorPrincipal);
  }
  .containerbody .rowone .filters-container .status-filter .status-select {
    border-color: var(--colorPrincipal);
    color: var(--colorTexto);
  }
  .containerbody .rowone .filters-container .status-filter .status-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  .containerbody .rowone .filters-container .status-filter .status-select option {
    background: #333;
    color: white;
  }
}
.containerbody .config-user {
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  border-radius: 8px;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 16px;
  border: none;
  color: var(--colorTextoContrario);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.containerbody .config-user::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-user-cog-icon lucide-user-cog'%3E%3Cpath d='M10 15H6a4 4 0 0 0-4 4v2'/%3E%3Cpath d='m14.305 16.53.923-.382'/%3E%3Cpath d='m15.228 13.852-.923-.383'/%3E%3Cpath d='m16.852 12.228-.383-.923'/%3E%3Cpath d='m16.852 17.772-.383.924'/%3E%3Cpath d='m19.148 12.228.383-.923'/%3E%3Cpath d='m19.53 18.696-.382-.924'/%3E%3Cpath d='m20.772 13.852.924-.383'/%3E%3Cpath d='m20.772 16.148.924.383'/%3E%3Ccircle cx='18' cy='15' r='3'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  flex-shrink: 0;
}
.containerbody .config-user:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.containerbody .config-user:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
.containerbody .config-user:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--colorPrincipal), 0.3);
}
.containerbody .pay-button {
  border-radius: 6px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border: none;
  background-color: var(--colorSecundario);
  color: var(--colorTextoContrario);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.containerbody .pay-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: color-mix(in srgb, var(--colorSecundario), #000 10%);
}
.containerbody .pay-button:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
.containerbody .pay-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--colorSecundario), 0.4);
}
.containerbody .pay-icon {
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNyZWRpdC1jYXJkLWljb24gbHVjaWRlLWNyZWRpdC1jYXJkIj48cmVjdCB3aWR0aD0iMjAiIGhlaWdodD0iMTQiIHg9IjIiIHk9IjUiIHJ4PSIyIi8+PGxpbmUgeDE9IjIiIHgyPSIyMiIgeTE9IjEwIiB5Mj0iMTAiLz48L3N2Zz4=");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  display: inline-block;
}
.containerbody .rowtow {
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  color: var(--colorTexto);
  gap: 10px;
}
.containerbody .rowtow .cardsnav {
  width: 2.5%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerbody .rowtow .cardsnav i {
  font-size: 1.4rem;
  color: var(--colorPrincipal);
}
.containerbody .rowtow .cardsnav h2 {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--colorPrincipal);
}
.containerbody .rowtow .cardsnav:hover {
  background-color: var(--hover);
}
.containerbody .rowtow .activecards {
  background-color: color-mix(in srgb, var(--colorPrincipal), transparent 85%);
}

.container {
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.minimal-table {
  width: 100%;
  background: var(--backgroundTema);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), -3px -3px 25px rgba(0, 0, 0, 0.08), -1px -20px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.minimal-table thead {
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  position: relative;
}
.minimal-table thead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.minimal-table thead th {
  padding: 24px 32px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: var(--backgroundTema);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.minimal-table thead th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.minimal-table thead th:last-child::after {
  display: none;
}
.minimal-table thead th:first-child {
  padding-left: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.minimal-table thead th:last-child {
  padding-right: 40px;
}
.minimal-table tbody tr {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--backgroundTema);
}
.minimal-table tbody tr:nth-child(even) {
  background: var(--backgroundTabla);
}
.minimal-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.02);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}
.minimal-table tbody tr:last-child td {
  border-bottom: none;
}
.minimal-table tbody td {
  padding: 14px 15px;
  font-size: 15px;
  color: var(--colorTerciario);
  border-bottom: 1px solid #e2e8f0;
  font-weight: 400;
  vertical-align: middle;
}
.minimal-table tbody td:first-child {
  padding-left: 40px;
  font-weight: 500;
}
.minimal-table tbody td:last-child {
  padding-right: 40px;
}

.status {
  padding: 8px 16px;
  text-align: center;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  align-items: center;
  position: relative;
}
.status.available {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}
.status.available::before {
  background: #059669;
}
.status.limited {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.status.limited::before {
  background: #d97706;
}
.status.unavailable {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.status.unavailable::before {
  background: #dc2626;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
    margin: 40px auto;
  }
  .minimal-table th,
  .minimal-table td {
    padding: 16px 24px;
  }
  .minimal-table th:first-child,
  .minimal-table td:first-child {
    padding-left: 32px;
  }
  .minimal-table th:last-child,
  .minimal-table td:last-child {
    padding-right: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    margin: 24px auto;
  }
  .minimal-table {
    border-radius: 8px;
  }
  .minimal-table th,
  .minimal-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  .minimal-table th:first-child,
  .minimal-table td:first-child {
    padding-left: 20px;
  }
  .minimal-table th:last-child,
  .minimal-table td:last-child {
    padding-right: 20px;
  }
  .minimal-table th {
    font-size: 11px;
  }
}
.checkbox-wrapper-12 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.checkbox-wrapper-12 > svg {
  position: absolute;
  top: -130%;
  left: -170%;
  width: 110px;
  pointer-events: none;
}
.checkbox-wrapper-12 * {
  box-sizing: border-box;
}
.checkbox-wrapper-12 input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  background: var(--backgroundTemaAlternativo);
  margin: 0;
}
.checkbox-wrapper-12 input[type=checkbox]:focus {
  outline: 0;
}
.checkbox-wrapper-12 .cbx {
  width: 24px;
  height: 24px;
  position: relative;
}
.checkbox-wrapper-12 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--borderColor, #bfbfc0);
  border-radius: 50%;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkbox-wrapper-12 .cbx input:hover {
  border-color: var(--colorPrincipal);
}
.checkbox-wrapper-12 .cbx label {
  width: 24px;
  height: 24px;
  background: none;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: url("#goo-selectAll");
  filter: url("#goo-selectAll");
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
.checkbox-wrapper-12 .cbx svg {
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
  pointer-events: none;
}
.checkbox-wrapper-12 .cbx svg path {
  stroke: var(--colorTextoContrario, #fff);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  transition: stroke-dashoffset 0.3s ease;
  transition-delay: 0.2s;
}
.checkbox-wrapper-12 .cbx input:checked + label {
  animation: splash-12 0.6s ease forwards;
}
.checkbox-wrapper-12 .cbx input:checked + label + svg path {
  stroke-dashoffset: 0;
}

@keyframes splash-12 {
  40% {
    background: var(--colorPrincipal, --colorSecundario);
    box-shadow: 0 -18px 0 -8px var(--colorPrincipal, --colorSecundario), 16px -8px 0 -8px var(--colorPrincipal, --colorSecundario), 16px 8px 0 -8px var(--colorPrincipal, --colorSecundario), 0 18px 0 -8px var(--colorPrincipal, --colorSecundario), -16px 8px 0 -8px var(--colorPrincipal, --colorSecundario), -16px -8px 0 -8px var(--colorPrincipal, --colorSecundario);
  }
  100% {
    background: var(--colorPrincipal, --colorSecundario);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}
@-webkit-keyframes splash-12 {
  40% {
    background: var(--colorPrincipal, --colorSecundario);
    box-shadow: 0 -18px 0 -8px var(--colorPrincipal, --colorSecundario), 16px -8px 0 -8px var(--colorPrincipal, --colorSecundario), 16px 8px 0 -8px var(--colorPrincipal, --colorSecundario), 0 18px 0 -8px var(--colorPrincipal, --colorSecundario), -16px 8px 0 -8px var(--colorPrincipal, --colorSecundario), -16px -8px 0 -8px var(--colorPrincipal, --colorSecundario);
  }
  100% {
    background: var(--colorPrincipal, --colorSecundario);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}
@-moz-keyframes splash-12 {
  40% {
    background: var(--colorPrincipal, --colorSecundario);
    box-shadow: 0 -18px 0 -8px var(--colorPrincipal, --colorSecundario), 16px -8px 0 -8px var(--colorPrincipal, --colorSecundario), 16px 8px 0 -8px var(--colorPrincipal, --colorSecundario), 0 18px 0 -8px var(--colorPrincipal, --colorSecundario), -16px 8px 0 -8px var(--colorPrincipal, --colorSecundario), -16px -8px 0 -8px var(--colorPrincipal, --colorSecundario);
  }
  100% {
    background: var(--colorPrincipal, --colorSecundario);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}
.containerLoader {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(0, 255, 255, 0.15) 75%, rgba(0, 123, 255, 0.1) 100%), linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.loader {
  width: 84px;
  height: 84px;
  position: relative;
  overflow: hidden;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  transform: translate(-50%, 100%) scale(0);
  animation: push 1.5s infinite ease-in;
}

.loader:after {
  animation-delay: 0.75s;
}

@keyframes push {
  0% {
    transform: translate(-50%, 100%) scale(1);
  }
  15%, 25% {
    transform: translate(-50%, 50%) scale(1);
  }
  50%, 75% {
    transform: translate(-50%, -30%) scale(0.5);
  }
  80%, 100% {
    transform: translate(-50%, -50%) scale(0);
  }
}
p, h1, h2, h3 {
  color: var(--colorTextoSecundario);
}

.config-container {
  display: flex;
  padding-top: 2%;
  justify-content: space-around;
  flex-wrap: wrap;
}

.theme-section {
  margin-top: 4%;
  background: var(--backgroundTemaAlternativo);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--borderColor);
}
.theme-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--colorPrincipal), var(--colorSecundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.theme-section > p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.theme-selection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .theme-selection {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.theme-selection > div h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.theme-selection > div h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--colorPrincipal), var(--colorSecundario));
  border-radius: 2px;
}

.theme-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 15px;
}

.theme {
  width: 60px;
  height: 60px;
  border: 3px solid var(--borderColor);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.theme::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.theme::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme.default {
  background: linear-gradient(135deg, #07cf03, #05a302);
}

.theme.blue-mode {
  background: linear-gradient(135deg, #0074D9, #005bb5);
}

.theme.purple-mode {
  background: linear-gradient(135deg, purple, #6a0080);
}

.theme.olive-mode {
  background: linear-gradient(135deg, rgb(26, 131, 26), rgb(20, 100, 20));
}

.theme.red-purple-mode {
  background: linear-gradient(135deg, #990147, #7a0038);
}

.theme:hover {
  transform: scale(1.1);
  border-color: var(--colorPrincipal);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.theme:hover::before {
  width: 100%;
  height: 100%;
}

.theme.active-theme {
  transform: scale(1.1);
  border-color: var(--colorPrincipal);
  border-width: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.theme.active-theme::after {
  opacity: 1;
}

.dark-themes .theme {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.dark-themes .theme:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.dark-themes .theme.active-theme {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

@keyframes themeSelect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
.theme.active-theme {
  animation: themeSelect 0.5s ease-out;
}

@media (max-width: 480px) {
  .theme-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .theme {
    width: 50px;
    height: 50px;
  }
  .color-sample {
    width: 35px;
    height: 35px;
    margin: 6px;
  }
  .theme-section {
    padding: 20px;
  }
  .theme-section h1 {
    font-size: 1.5rem;
  }
  .theme-section > p {
    font-size: 1rem;
  }
}
.color-preview {
  margin-top: 20px;
  padding: 25px;
  background: var(--backgroundTema);
  border: 1px solid var(--borderColor);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.color-preview h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--colorTextoSecundario);
}
.color-preview > p {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}
.color-preview .color-palette {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.color-sample {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid var(--borderColor);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.color-sample:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--colorPrincipal);
}
.color-sample::before {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--backgroundTemaAlternativo);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid var(--borderColor);
  color: var(--colorTexto);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.color-sample:hover::before {
  opacity: 1;
}

.primary {
  background: var(--colorPrincipal);
}

.secondary {
  background: var(--colorSecundario);
}

.tertiary {
  background: var(--colorTerciario);
}

.background {
  background: var(--backgroundTema);
}

.logo-upload {
  margin: 20px 0;
  padding: 20px;
  background: var(--backgroundTemaAlternativo);
  border: 2px dashed var(--borderColor);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.logo-upload:hover {
  border-color: var(--colorPrincipal);
  background: var(--backgroundTema);
}

.logo-upload label {
  display: block;
  font-weight: 600;
  color: var(--colorTextoSecundario);
  margin-bottom: 15px;
  cursor: pointer;
}

.logo-upload input[type=file] {
  display: none;
}

.upload-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--colorPrincipal);
  color: var(--colorTextoContrario);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
.upload-button:hover {
  background: var(--hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.preview-container {
  margin-top: 20px;
  text-align: center;
}
.preview-container.hidden {
  display: none;
}

.preview-container img {
  padding: 2%;
  max-width: 300px;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  background: var(--backgroundTema);
}

.image-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.btn-danger {
  background: #dc3545;
  color: white;
}
.btn-danger:hover {
  background: #c82333;
}

.btn-success {
  background: #28a745;
  color: white;
}
.btn-success:hover {
  background: #218838;
}

.upload-info {
  margin-top: 10px;
  font-size: 12px;
  color: var(--colorTexto);
  opacity: 0.7;
}

.modificar-cliente-container {
  min-height: 100vh;
  background: var(--backgroundTema);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.profile-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 40px;
}
.profile-content .profile-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.profile-content .profile-info .user-details h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--colorTerciario);
  margin: 0 0 8px 0;
}
.profile-content .profile-info .user-details .ruc-cliente {
  color: var(--colorSecundario);
  font-size: 18px;
  margin: 0;
}
.profile-content .form-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-bottom: 4%;
}
.profile-content .form-container .form-grid .form-group {
  display: flex;
  flex-direction: column;
}
.profile-content .form-container .form-grid .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorTerciario);
  margin-bottom: 12px;
}
.profile-content .form-container .form-grid .form-group input, .profile-content .form-container .form-grid .form-group select {
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--borderColor);
  border-radius: 12px;
  font-size: 16px;
  color: var(--colorTexto);
  background: var(--backgroundTema);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-content .form-container .form-grid .form-group input:focus, .profile-content .form-container .form-grid .form-group select:focus {
  outline: none;
  border-color: var(--colorPrincipal);
  box-shadow: 0 0 0 4px rgba(var(--colorPrincipal), 0.1);
}
.profile-content .form-container .form-grid .form-group input::placeholder, .profile-content .form-container .form-grid .form-group select::placeholder {
  color: var(--colorTextoAlternativos);
}
.profile-content .form-container .form-grid .form-group.full-width {
  grid-column: 1/-1;
}
.profile-content .form-container .email-section .section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--colorTerciario);
}
.profile-content .form-container .email-section .email-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--backgroundTemaAlternativo);
  border-radius: 12px;
  margin-top: 10px;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-content .form-container .email-section .email-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.profile-content .form-container .email-section .email-item .email-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--colorPrincipal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.profile-content .form-container .email-section .email-item .email-icon::before {
  content: "✉";
  color: var(--colorTextoContrario);
  font-size: 20px;
}
.profile-content .form-container .email-section .email-item .email-details {
  flex: 1;
}
.profile-content .form-container .email-section .email-item .email-details .email-address {
  font-weight: 500;
  color: var(--colorTerciario);
  margin-bottom: 4px;
  font-size: 16px;
}
.profile-content .form-container .email-section .email-item .email-details .email-input {
  font-weight: 500;
  color: var(--colorTerciario);
  margin-bottom: 4px;
  font-size: 16px;
  background: transparent;
  border: 1px solid var(--colorPrincipal);
  border-radius: 4px;
  padding: 4px 8px;
  outline: none;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-content .form-container .email-section .email-item .email-details .email-input:focus {
  border-color: var(--colorSecundario);
  box-shadow: 0 0 0 2px rgba(var(--colorPrincipal), 0.1);
}
.profile-content .form-container .email-section .update-email-btn {
  color: var(--colorPrincipal);
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 0;
}
.profile-content .form-container .email-section .update-email-btn:hover {
  text-decoration: underline;
}
.profile-content .form-container .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--borderColor);
}
.profile-content .form-container .form-actions .btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  min-width: 140px;
}
.profile-content .form-container .form-actions .btn.btn-primary {
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  color: var(--colorTextoContrario);
}
.profile-content .form-container .form-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.profile-content .form-container .form-actions .btn.btn-primary:active {
  transform: translateY(0);
}
.profile-content .form-container .form-actions .btn.btn-secondary {
  background: var(--backgroundTemaAlternativo);
  color: var(--colorTexto);
  border: 1px solid var(--borderColor);
}
.profile-content .form-container .form-actions .btn.btn-secondary:hover {
  background: var(--backgroundTema);
  border-color: var(--colorPrincipal);
}

@media (max-width: 768px) {
  .profile-header {
    padding: 0 24px 30px;
  }
  .profile-content {
    padding: 60px 24px 40px;
  }
  .profile-content .form-container .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .profile-content .profile-info {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .profile-header {
    padding: 0 16px 30px;
  }
  .profile-content {
    padding: 60px 16px 40px;
  }
  .profile-content .form-container .form-actions {
    flex-direction: column;
    gap: 12px;
  }
  .profile-content .form-container .form-actions .btn {
    width: 100%;
  }
}
.modificar-cliente-container {
  min-height: 100vh;
  background: var(--backgroundTema);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.profile-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 40px;
}
.profile-content .profile-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.profile-content .profile-info .user-details h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--colorTerciario);
  margin: 0 0 8px 0;
}
.profile-content .profile-info .user-details .licencia {
  color: var(--colorSecundario);
  font-size: 18px;
  margin: 0;
}
.profile-content .form-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-bottom: 4%;
}
.profile-content .form-container .form-grid .form-group {
  display: flex;
  flex-direction: column;
}
.profile-content .form-container .form-grid .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--colorTerciario);
  margin-bottom: 12px;
}
.profile-content .form-container .form-grid .form-group input, .profile-content .form-container .form-grid .form-group select {
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--borderColor);
  border-radius: 12px;
  font-size: 16px;
  color: var(--colorTexto);
  background: var(--backgroundTema);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-content .form-container .form-grid .form-group input:focus, .profile-content .form-container .form-grid .form-group select:focus {
  outline: none;
  border-color: var(--colorPrincipal);
  box-shadow: 0 0 0 4px rgba(var(--colorPrincipal), 0.1);
}
.profile-content .form-container .form-grid .form-group input::placeholder, .profile-content .form-container .form-grid .form-group select::placeholder {
  color: var(--colorTextoAlternativos);
}
.profile-content .form-container .form-grid .form-group.full-width {
  grid-column: 1/-1;
}
.profile-content .form-container .email-section .section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--colorTerciario);
}
.profile-content .form-container .email-section .email-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--backgroundTemaAlternativo);
  border-radius: 12px;
  margin-top: 10px;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-content .form-container .email-section .email-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.profile-content .form-container .email-section .email-item .email-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--colorPrincipal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.profile-content .form-container .email-section .email-item .email-icon::before {
  content: "✉";
  color: var(--colorTextoContrario);
  font-size: 20px;
}
.profile-content .form-container .email-section .email-item .email-details {
  flex: 1;
}
.profile-content .form-container .email-section .email-item .email-details .email-address {
  font-weight: 500;
  color: var(--colorTerciario);
  margin-bottom: 4px;
  font-size: 16px;
}
.profile-content .form-container .email-section .email-item .email-details .email-input {
  font-weight: 500;
  color: var(--colorTerciario);
  margin-bottom: 4px;
  font-size: 16px;
  background: transparent;
  border: 1px solid var(--colorPrincipal);
  border-radius: 4px;
  padding: 4px 8px;
  outline: none;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-content .form-container .email-section .email-item .email-details .email-input:focus {
  border-color: var(--colorSecundario);
  box-shadow: 0 0 0 2px rgba(var(--colorPrincipal), 0.1);
}
.profile-content .form-container .email-section .update-email-btn {
  color: var(--colorPrincipal);
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 0;
}
.profile-content .form-container .email-section .update-email-btn:hover {
  text-decoration: underline;
}
.profile-content .form-container .change-password-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  min-width: 140px;
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  color: var(--colorTextoContrario);
}
.profile-content .form-container .change-password-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.profile-content .form-container .change-password-btn:active {
  transform: translateY(0);
}
.profile-content .form-container .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--borderColor);
}
.profile-content .form-container .form-actions .btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  min-width: 140px;
}
.profile-content .form-container .form-actions .btn.btn-primary {
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  color: var(--colorTextoContrario);
}
.profile-content .form-container .form-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.profile-content .form-container .form-actions .btn.btn-primary:active {
  transform: translateY(0);
}
.profile-content .form-container .form-actions .btn.btn-secondary {
  background: var(--backgroundTemaAlternativo);
  color: var(--colorTexto);
  border: 1px solid var(--borderColor);
}
.profile-content .form-container .form-actions .btn.btn-secondary:hover {
  background: var(--backgroundTema);
  border-color: var(--colorPrincipal);
}

@media (max-width: 768px) {
  .profile-header {
    padding: 0 24px 30px;
  }
  .profile-content {
    padding: 60px 24px 40px;
  }
  .profile-content .form-container .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .profile-content .profile-info {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .profile-header {
    padding: 0 16px 30px;
  }
  .profile-content {
    padding: 60px 16px 40px;
  }
  .profile-content .form-container .form-actions {
    flex-direction: column;
    gap: 12px;
  }
  .profile-content .form-container .form-actions .btn {
    width: 100%;
  }
}
.payment-methods-container {
  padding: 2rem;
  background-color: var(--backgroundTema);
  min-height: 100vh;
  color: var(--colorTexto);
}
.payment-methods-container h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--colorTexto);
  margin-bottom: 2rem;
  text-align: center;
}

.payment-option {
  margin-bottom: 2rem;
}
.payment-option:last-child {
  margin-bottom: 0;
}
.payment-option.bancard-section {
  padding-left: 0;
}

.option-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--colorTexto);
  cursor: pointer;
  margin-bottom: 1rem;
}
.option-label input[type=radio] {
  display: none;
}
.option-label .radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--borderColor);
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all 0.2s ease;
}
.option-label .radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--colorPrincipal);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}
.option-label input[type=radio]:checked + .radio-custom {
  border-color: var(--colorPrincipal);
}
.option-label input[type=radio]:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.method-description {
  color: var(--colorTexto);
  font-size: 1rem;
  margin-bottom: 2rem;
  margin-top: 0;
  margin-left: 32px;
  font-weight: 500;
}

.token-section {
  margin-bottom: 2rem;
  margin-left: 32px;
}

.token-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.token-toggle span {
  font-size: 1rem;
  color: var(--colorTexto);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--colorTextoAlternativos);
  transition: 0.3s;
  border-radius: 24px;
}
.toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--colorTextoContrario);
  transition: 0.3s;
  border-radius: 50%;
}
.toggle-switch input:checked + .slider {
  background-color: var(--colorPrincipal);
}
.toggle-switch input:checked + .slider:before {
  transform: translateX(26px);
}

.keys-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-left: 32px;
}
@media (max-width: 768px) {
  .keys-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

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

.input-container {
  position: relative;
  margin-bottom: 2rem;
}

.input-container input {
  width: 100%;
  padding: 1rem 0.75rem 0.5rem 0.75rem;
  border: 1px solid var(--borderColor);
  border-radius: 6px;
  background-color: var(--backgroundTema);
  color: var(--colorTexto);
  font-size: 0.9rem;
  font-family: monospace;
  word-break: break-all;
  transition: all 0.2s ease;
}
.input-container input:focus {
  outline: none;
  border-color: var(--colorPrincipal);
  background-color: var(--backgroundTema);
}
.input-container input:focus + .floating-label, .input-container input:not(:placeholder-shown) + .floating-label {
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--colorPrincipal);
  padding: 0 0.25rem;
}
.input-container input[readonly] {
  background-color: var(--backgroundTemaAlternativo);
  color: var(--colorSecundario);
  cursor: default;
}
.input-container input[readonly]:focus {
  border-color: var(--borderColor);
  background-color: var(--backgroundTemaAlternativo);
}
.input-container input[readonly]:focus + .floating-label, .input-container input[readonly]:not(:placeholder-shown) + .floating-label {
  color: var(--colorPrincipal);
}

.floating-label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--colorTextoAlternativos);
  font-weight: 500;
  pointer-events: none;
  transition: all 0.2s ease;
  background-color: transparent;
}

.action-buttons {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-confirm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #10b981;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-confirm:hover {
  background-color: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.btn-confirm:active {
  transform: translateY(0);
}
.btn-confirm i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .payment-methods-container {
    padding: 1rem;
  }
  .payment-methods-container h1 {
    font-size: 1.5rem;
  }
  .payment-options {
    padding: 1.5rem;
  }
  .method-description,
  .token-section,
  .keys-section {
    margin-left: 0;
  }
  .token-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.checkout-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

#iframe-container {
  height: 100%;
  width: 55%;
}

.payment-summary {
  background: var(--backgroundTema);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 45%;
  top: 24px;
}

.summary-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--colorTexto);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--borderColor);
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  background: var(--backgroundTabla);
  border-radius: 8px;
  border-left: 4px solid var(--colorPrincipal);
  transition: all 0.2s ease;
}

.item-row:hover {
  background: var(--backgroundTemaAlternativo);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.item-description {
  font-weight: 500;
  color: var(--colorTexto);
  font-size: 0.95rem;
  line-height: 1.4;
}

.item-status {
  font-size: 0.8rem;
  color: var(--colorTextoSecundario);
  background: var(--backgroundTema);
  padding: 2px 8px;
  border-radius: 12px;
  width: fit-content;
}

.item-amount {
  font-weight: 600;
  color: var(--colorPrincipal);
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 12px;
}

.total-section {
  border-top: 2px solid var(--borderColor);
  padding-top: 16px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--colorPrincipal), var(--colorSecundario));
  border-radius: 8px;
  color: var(--colorTextoContrario);
}

.total-label {
  font-size: 1.1rem;
  font-weight: 500;
}

.total-amount {
  font-size: 1.3rem;
  font-weight: 700;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: var(--backgroundTabla);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--colorTextoSecundario);
}

.security-icon {
  width: 16px;
  height: 16px;
  color: var(--colorPrincipal);
}

@media (max-width: 1024px) {
  .checkout-container {
    flex-direction: column;
    gap: 24px;
  }
  .payment-summary {
    width: 100%;
    position: relative;
    top: 0;
    margin-top: 0;
  }
  #iframe-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .payment-summary {
    padding: 16px;
  }
  .summary-title {
    font-size: 1.25rem;
  }
  .item-row {
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .item-amount {
    text-align: right;
    margin-left: 0;
    font-size: 1.1rem;
  }
  .total-row {
    padding: 12px;
  }
  .total-label {
    font-size: 1rem;
  }
  .total-amount {
    font-size: 1.2rem;
  }
}
.payment-success-main-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.payment-success-container {
  background: var(--backgroundTema);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 70%;
}

.success-icon-wrapper {
  position: relative;
  margin: 0 auto 30px;
  width: 120px;
  height: 120px;
}

.success-icon-bg {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  animation: pulse 2s infinite;
}

.success-icon-bg::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.2);
  top: 15px;
  left: 15px;
  animation: pulse 2s infinite 0.5s;
}

.success-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.success-icon::after {
  content: "✓";
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.success-icon.failure-icon::after {
  content: "✗";
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--colorTexto);
  margin-bottom: 15px;
}

.success-message {
  color: var(--colorTextoAlternativos);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.payment-accounts { /* payment-items */
  background: var(--backgroundTemaAlternativo);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.payment-accounts h3 {
  color: var(--colorTexto);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.payment-account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--borderColor);
}

.payment-account:last-child {
  border-bottom: none;
}

.payment-accounts-item-info {
  flex: 1;
}

.item-name {
  font-weight: 600;
  color: var(--colorTexto);
  font-size: 16px;
  margin-bottom: 4px;
}

.payment-accounts-item-details {
  color: var(--colorTextoAlternativos);
  font-size: 14px;
}

.payment-accounts-item-amount {
  font-weight: 600;
  color: var(--colorTexto);
  font-size: 16px;
}

.success-payment-summary {
  background: var(--backgroundTemaAlternativo);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  margin-bottom: 10px;
}

.success-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--colorTextoAlternativos);
}

.success-summary-row:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid var(--borderColor);
  font-size: 16px;
  font-weight: 600;
  color: var(--colorTexto);
}

.back-button {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-primary {
  background: #4CAF50;
  color: white;
}

.btn-primary:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--colorTextoAlternativos);
  border: 2px solid var(--borderColor);
}

.btn-secondary:hover {
  background: var(--colorTextoAlternativos);
  color: var(--colorTextoContrario);
  transform: translateY(-2px);
}

.loading {
  display: none;
  font-style: italic;
  color: var(--colorTextoAlternativos);
  margin: 20px 0;
}

@media (max-width: 768px) {
  .payment-success-container {
    padding: 25px 20px;
    margin: 10px;
  }
  .success-title {
    font-size: 24px;
  }
  .back-button {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 250px;
  }
}
