/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/*
 * DEPRECATED - Deep Ocean Palette (Migration in Progress)
 * These CSS variables are being phased out in favor of Tailwind utilities
 * (bg-neutral-*, text-neutral-*, bg-action-green-*).
 * Kept for backward compatibility during migration.
 *
 * Referenced in Documentation/ADMIN_DESIGN_GUIDELINES.md
 */
:root {
  /* Primary */
  --primary: #1E3A8A;
  --primary-hover: #1E40AF;
  --primary-subtle: #1E3A8A20;

  /* Secondary */
  --secondary: #0EA5E9;
  --secondary-hover: #0284C7;
  --secondary-subtle: #0EA5E920;

  /* Surfaces */
  --background: #0F172A;
  --surface: #1E293B;
  --surface-raised: #273449;
  --border: #334155;

  /* Text */
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #38BDF8;

  --primary-green: #70A34C;
}

.max-width-content {
  max-width: fit-content;
}


.bg-planes {
 background-image: url("/assets/fondo_2-90f8da0c.jpeg");
  background-size: cover;

}

.bg-action-green {
  background-color: #70A34C;
  color: white !important;
}

.bg-action-green-600 {
  background-color: #70A34C;
  color: white !important;
}


.bg-action-green-500 {
  background-color: #70A34C;
  color: white !important;
}


.bg-special-purple {
  background-color: #9C4CA3;
}

.special-purple {
  color: #9C4CA3;
}

.border-purple {
  border-color: #9c4ca3;
}



.main-bg {
 /*  background-image: url("/assets/fondo_1-e6937135.png"); */
  background-size: 100vw auto;
  background-color: #fafafa;
}

.default-header {
 background-image: url("/assets/bg-header-a265c904.png");
  background-color: transparent;
  background-size: cover;
  width: 100vw;
  height: 100px;
}


/*
 * DEPRECATED - Legacy Admin Classes
 * These classes are being phased out in favor of Tailwind utilities and shared components:
 * - .admin-button-primary → .btn .btn-primary
 * - .admin-card → render "shared/card" or "shared/admin_table"
 * - .admin-status → render "shared/badge"
 * Kept for backward compatibility during migration.
 */

.admin-shell {
  background-color: var(--background);
  color: var(--text-primary);
  min-height: 100vh;
}

.admin-header {
  background-color: #000000;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}

.admin-panel {
  background-color: var(--surface);
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
  padding: 2.5rem;
}

.admin-card {
  background-color: transparent;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  color: var(--text-primary);
}

.admin-card-raised {
  background-color: rgba(30, 41, 59, 0.9);
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 200ms ease;
  border: none;
  cursor: pointer;
}

.admin-button-primary {
  background-color: var(--primary-green);
  color: var(--text-primary);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.45);
}

.admin-button-primary:hover {
  background-color: var(--primary-hover);
}

.admin-button-secondary {
  background-color: var(--secondary);
  color: var(--text-primary);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.45);
}

.admin-button-secondary:hover {
  background-color: var(--secondary-hover);
}

.admin-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.admin-link:hover {
  color: var(--secondary-hover);
}

.admin-status {
  display: inline-flex;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.admin-status.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.admin-status.warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.admin-status.error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
}

.admin-status.info {
  background: rgba(56, 189, 248, 0.15);
  color: var(--info);
}

.admin-logo-badge {
  padding: 0.4rem 0.8rem;
  display: inline-flex;
  align-items: center;
}

.admin-dropdown {
  position: relative;
}

.admin-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.admin-dropdown summary::-webkit-details-marker {
  display: none;
}

.admin-dropdown-menu {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  width: 220px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
  display: none;
  position: absolute;
  right: 0;
  z-index: 40;
}

.admin-dropdown[open] .admin-dropdown-menu {
  display: block;
}

.bg-primary {
  background-color: #FAFAFA;
  color: black !important;
}


.contact-color {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: -0.04em;

  color: #FFFFFF;
}
