@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #f4f4f4;
  color: #333333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.admin-header {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid #D7B985;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
@media (min-width: 768px) {
  .admin-header-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }
}

.admin-brand .admin-logo-link {
  text-decoration: none;
}
.admin-brand .admin-logo {
  font-family: "Montserrat", sans-serif;
  color: #7C0038;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.user-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
@media (min-width: 768px) {
  .user-controls {
    width: auto;
    border-top: none;
    padding-top: 0;
    gap: 20px;
  }
}

.user-badge {
  display: flex;
  flex-direction: column;
}
.user-badge .user-name {
  font-size: 0.85rem;
  color: #333333;
}
.user-badge .user-name strong {
  color: #7C0038;
}
.user-badge .user-role {
  font-size: 0.7rem;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-logout-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #7C0038;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-logout-icon:active {
  transform: scale(0.95);
}
.btn-logout-icon svg {
  margin-bottom: -2px;
}
@media (min-width: 768px) {
  .btn-logout-icon:hover {
    background-color: #5A002A;
    box-shadow: 0 4px 12px rgba(124, 0, 56, 0.2);
  }
}

#global-loader {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(179, 141, 70, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s;
}
#global-loader.is-active {
  visibility: visible;
  opacity: 1;
}
#global-loader .loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#global-loader .spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
#global-loader p {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseText {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.custom-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(215, 185, 133, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.3s ease forwards;
}
.custom-modal-wrapper .custom-modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  text-align: center;
  animation: slideUpModal 0.3s ease forwards;
}
.custom-modal-wrapper .modal-header {
  margin-bottom: 1rem;
}
.custom-modal-wrapper .modal-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #7C0038;
  font-size: 1.4rem;
  margin: 0;
}
.custom-modal-wrapper .modal-body {
  margin-bottom: 2rem;
  color: #333333;
  font-family: "Open Sans", sans-serif;
}
.custom-modal-wrapper .modal-body p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.custom-modal-wrapper .modal-body .warning-text {
  color: #A90033;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}
.custom-modal-wrapper .modal-body .promotor-detail {
  display: block;
  margin-top: 15px;
  padding: 12px;
  background: #f4f4f4;
  border-radius: 8px;
  font-size: 0.95rem;
  border-left: 4px solid #D7B985;
  color: #333333;
}
.custom-modal-wrapper .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.custom-modal-wrapper .modal-actions button {
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.custom-modal-wrapper .modal-actions .btn-cancel {
  background-color: #eee;
  color: #333333;
}
.custom-modal-wrapper .modal-actions .btn-cancel:hover {
  background-color: #ddd;
  transform: scale(1.02);
}
.custom-modal-wrapper .modal-actions .btn-confirm-delete {
  background-color: #A90033;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(169, 0, 51, 0.3);
}
.custom-modal-wrapper .modal-actions .btn-confirm-delete:hover {
  transform: scale(1.05);
  background-color: #5A002A;
  box-shadow: 0 6px 15px rgba(90, 0, 42, 0.4);
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUpModal {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* =============================================
   MODAL DE CONFIRMACIÓN - JEFES DE MANZANA
   ============================================= */
.custom-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* Estado inicial (invisible) */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-modal-overlay.is-active {
  opacity: 1;
}

.custom-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  /* Estado inicial (desplazado hacia abajo) */
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.custom-modal-overlay.is-active .custom-modal-box {
  transform: translateY(0);
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5A002A 0%, #7C0038 100%);
  padding: 20px;
  margin: 0;
}

.login-box {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-top: 6px solid #D7B985;
  text-align: center;
}
@media (min-width: 768px) {
  .login-box {
    padding: 3.5rem 3rem;
  }
}
.login-box .login-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #7C0038;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  line-height: 1.2;
}
.login-box .login-subtitle {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2.5rem;
  display: block;
}

.form-group {
  text-align: left;
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5A002A;
  margin-bottom: 8px;
}
.form-group .password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-group .password-wrapper input {
  padding-right: 50px;
}
.form-group .password-wrapper .btn-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C0038;
  transition: color 0.3s;
}
.form-group .password-wrapper .btn-toggle:hover {
  color: #D7B985;
}
.form-group .password-wrapper .btn-toggle svg {
  width: 22px;
  height: 22px;
}
.form-group .password-wrapper .btn-toggle svg.is-hidden {
  display: none;
}
.form-group input {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  font-size: 16px;
  border: 2px solid #eee;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}
.form-group input:focus {
  border-color: #D7B985;
  background-color: #fffdf9;
}

.btn-login {
  width: 100%;
  height: 60px;
  background-color: #DABD84;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(215, 185, 133, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.btn-login:hover {
  background-color: #D7B985;
}
.btn-login:active {
  transform: scale(0.98);
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.action-buttons a, .action-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.action-buttons a:hover, .action-buttons button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.action-buttons .btn-view {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
}
.action-buttons .btn-view:hover {
  background-color: #3498db;
  color: white;
}
.action-buttons .btn-edit {
  background-color: rgba(215, 185, 133, 0.1);
  color: #D7B985;
}
.action-buttons .btn-edit:hover {
  background-color: #D7B985;
  color: white;
}
.action-buttons .btn-delete {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.action-buttons .btn-delete:hover {
  background-color: #e74c3c;
  color: white;
}

.admin-page {
  background-color: #f8f9fa;
  min-height: 100vh;
}

.admin-container {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.admin-welcome {
  text-align: center;
  margin-bottom: 40px;
}
.admin-welcome .admin-title {
  font-family: "Montserrat", sans-serif;
  color: #7C0038;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.admin-welcome .admin-subtitle {
  color: #666;
  font-size: 0.95rem;
}

.dashboard-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .dashboard-options {
    flex-direction: row;
    gap: 30px;
  }
}

.option-card {
  background: #ffffff;
  padding: 3rem 2rem;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 0, 56, 0.1);
}
.option-card:hover .option-btn {
  background-color: #D7B985;
}
.option-card .option-icon {
  color: #7C0038;
  margin-bottom: 20px;
}
.option-card .option-title {
  font-family: "Montserrat", sans-serif;
  color: #7C0038;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.option-card .option-description {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.5;
}
.option-card .option-btn {
  background-color: #DABD84;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.option-promotores {
  border-bottom: 6px solid #D7B985;
}

.option-jefes {
  border-bottom: 6px solid #7C0038;
}

.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.section-header .section-title {
  font-family: "Montserrat", sans-serif;
  color: #7C0038;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.btn-add {
  background-color: #D7B985;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(215, 185, 133, 0.3);
  transition: all 0.3s ease;
}
.btn-add:hover {
  background-color: #DABD84;
  transform: translateY(-2px);
}
.btn-add:active {
  transform: scale(0.95);
}
.btn-add svg {
  stroke-width: 3px;
}

.search-bar {
  margin-bottom: 30px;
}
.search-bar .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 0 15px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.search-bar .search-input-wrapper:focus-within {
  border-color: #7C0038;
  box-shadow: 0 5px 15px rgba(124, 0, 56, 0.1);
}
.search-bar .search-input-wrapper svg {
  color: #aaa;
}
.search-bar .search-input-wrapper input {
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 1rem;
  color: #333333;
  background: transparent;
}
.search-bar .search-input-wrapper input::placeholder {
  color: #bbb;
}

.table-container {
  background: transparent;
}
@media (min-width: 768px) {
  .table-container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    overflow: hidden;
  }
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .data-table thead {
    display: none;
  }
  .data-table tbody tr {
    display: block;
    background: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #D7B985;
  }
  .data-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border: none;
    text-align: right;
  }
  .data-table tbody td:not(:last-child) {
    border-bottom: 1px solid #f8f8f8;
  }
  .data-table tbody td:before {
    content: attr(data-label);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    text-align: left;
    padding-right: 10px;
  }
  .data-table tbody td.no-data {
    display: block;
    text-align: center;
    padding: 40px 0;
    color: #888;
  }
  .data-table tbody td.no-data:before {
    display: none;
  }
}
@media (min-width: 768px) {
  .data-table thead {
    background-color: #fafafa;
  }
  .data-table thead th {
    padding: 20px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
  }
  .data-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
  }
  .data-table tbody td:before {
    display: none;
  }
  .data-table tbody tr:hover td {
    background-color: #fffcf5;
  }
  .data-table .col-nombre {
    width: 35%;
  }
  .data-table .col-user {
    width: 25%;
  }
  .data-table .col-jefes {
    width: 15%;
    text-align: center;
  }
  .data-table .col-btns {
    width: 25%;
    text-align: right;
  }
}

.td-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.td-user .user-initials {
  width: 38px;
  height: 38px;
  background-color: #7C0038;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 3px 6px rgba(124, 0, 56, 0.2);
}
.td-user span {
  font-weight: 600;
  color: #5A002A;
  font-size: 0.95rem;
}

.user-tag {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 6px;
  color: #555;
  font-family: monospace;
  font-size: 0.85rem;
}

.count-bubble {
  background-color: #fef8e6;
  color: #b08d3e;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid #f3e5c2;
}

.action-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.action-buttons .btn-edit, .action-buttons .btn-delete {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.action-buttons .btn-edit:active, .action-buttons .btn-delete:active {
  transform: scale(0.9);
}
.action-buttons .btn-edit {
  background: #eef2ff;
  color: #4338ca;
}
.action-buttons .btn-edit:hover {
  background: #4338ca;
  color: white;
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.3);
}
.action-buttons .btn-delete {
  background: #fef2f2;
  color: #b91c1c;
}
.action-buttons .btn-delete:hover {
  background: #b91c1c;
  color: white;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

.admin-logo-link {
  text-decoration: none;
  display: block;
}
.admin-logo-link:hover .admin-logo {
  color: #D7B985;
}

.title-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #7C0038;
  border-radius: 50%;
  border: 2px solid #eee;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-back:hover {
  background-color: #7C0038;
  color: #ffffff;
  border-color: #7C0038;
  transform: translateX(-3px);
}
.btn-back svg {
  width: 20px;
  height: 20px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.form-actions {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.btn-save {
  background-color: #D7B985;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(215, 185, 133, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-save svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}
.btn-save:hover {
  background-color: #DABD84;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 185, 133, 0.4);
}
.btn-save:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(215, 185, 133, 0.2);
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.action-buttons .btn-edit, .action-buttons .btn-delete {
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.action-buttons .btn-edit svg, .action-buttons .btn-delete svg {
  stroke-width: 2px;
}
.action-buttons .btn-edit {
  background-color: rgba(215, 185, 133, 0.1);
  color: #D7B985;
}
.action-buttons .btn-edit:hover {
  background-color: #D7B985;
  color: white;
  transform: translateY(-2px);
}
.action-buttons .btn-delete {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}
.action-buttons .btn-delete:hover {
  background-color: #e74c3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.promotor-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 20px;
}

.promotor-dashboard__wrapper {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.promotor-dashboard__header {
  margin-bottom: 40px;
}

.promotor-dashboard__title {
  font-family: "Montserrat", sans-serif;
  color: #7C0038;
  font-size: 2.8rem;
  margin: 0 0 8px;
}

.promotor-dashboard__subtitle {
  color: #888;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

.promotor-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 30px;
  border-bottom: 6px solid #7C0038;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promotor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.promotor-card:hover .promotor-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.promotor-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(124, 0, 56, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(124, 0, 56, 0.2);
}
.promotor-card__icon svg {
  stroke: #7C0038;
}

.promotor-card__body {
  flex: 1;
}

.promotor-card__name {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-size: 1.25rem;
  margin: 0 0 6px;
}

.promotor-card__desc {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.promotor-card__arrow {
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.promotor-card__arrow svg {
  stroke: #7C0038;
}

.promotor-dashboard__footer {
  margin-top: 28px;
  font-size: 0.8rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}