@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";

/* src/styles.scss */
:root {
  --gold: #C8A96B;
  --gold-light: #D4BA82;
  --gold-dark: #A8894F;
  --primary: #C8A96B;
  --primary-smooth: rgba(200, 169, 107, 0.12);
  --gold-hover: #D8B97A;
  --gold-glow: rgba(200, 169, 107, 0.08);
  --success: #34d399;
  --success-bg: rgba(52, 211, 153, 0.12);
  --warning: #fbbf24;
  --warning-bg: rgba(251, 191, 36, 0.12);
  --error: #f87171;
  --error-bg: rgba(248, 113, 113, 0.12);
  --surface-bg: #0c0c0e;
  --surface-raised: #111113;
  --surface-card: #161618;
  --surface-overlay: #1c1c1f;
  --surface-hover: #222225;
  --text-primary: #f0f0f0;
  --text-secondary: #8b8b8e;
  --text-hint: #55555a;
  --border-default: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-gold: rgba(200, 169, 107, 0.25);
  --border-gold-strong: rgba(200, 169, 107, 0.5);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 24px rgba(200, 169, 107, 0.15);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: var(--surface-bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: -0.011em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}
.btn-gold {
  background: var(--gold);
  color: #0c0c0e;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-gold:active {
  transform: translateY(0);
}
.btn-gold:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-normal);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn-sm {
  font-size: 12px;
  padding: 6px 12px;
}
.card-madero {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
}
.card-madero--gold-border {
  border-color: var(--border-gold);
}
.card-madero:hover {
  border-color: rgba(255, 255, 255, 0.08);
}
.input-madero {
  width: 100%;
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 13px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all var(--transition-fast);
}
.input-madero:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.12);
}
.input-madero::placeholder {
  color: var(--text-hint);
}
select.input-madero {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b6b6b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 36px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-madero {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-madero th {
  background: var(--surface-raised);
  color: var(--text-hint);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-default);
  text-align: left;
  white-space: nowrap;
}
.table-madero td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 13px;
}
.table-madero tbody tr {
  transition: background var(--transition-fast);
}
.table-madero tbody tr:hover td {
  background: var(--surface-hover);
}
.badge-madero {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-smooth);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  letter-spacing: 0.01em;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-card {
  background: var(--surface-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 520px;
  max-width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-card h2,
.modal-card h3 {
  margin: 0 0 4px 0;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 169, 107, 0.3);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 107, 0.15);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(200, 169, 107, 0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.page-container {
  padding: 28px 32px;
  max-width: 100%;
  overflow-x: hidden;
  animation: fadeInUp 0.35s ease-out;
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.page-header h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.3px;
}
.page-header p {
  color: var(--text-secondary);
  margin-top: 4px;
  font-size: 13px;
}
.breadcrumb {
  font-size: 11px;
  color: var(--text-hint);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.card-madero {
  animation: fadeInUp 0.4s ease-out;
}
.card-madero:hover {
  border-color: rgba(200, 169, 107, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-top-color: #0c0c0e;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}
.mt-6 {
  margin-top: 6px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--text-secondary);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
