/* System Design & Global Variables */
:root {
    /* Color Palette */
    --primary: #FF6B00; /* Naranja corporativo */
    --primary-hover: #E05E00;
    --primary-glow: rgba(255, 107, 0, 0.15);
    
    --bg-dark: #F8FAFC; /* Fondo principal claro (slate-50) */
    --bg-card-dark: #FFFFFF; /* Fondo de tarjetas blanco */
    --bg-card-glass: rgba(255, 255, 255, 0.75); /* Vidrio esmerilado claro */
    
    --text-white: #0F172A; /* Texto principal oscuro (slate-900) */
    --text-gray: #1E293B; /* Texto secundario gris oscuro (slate-800) */
    --text-muted: #57657A; /* Texto deshabilitado/pequeño (slate-600) */
    
    --border-dark: #E2E8F0; /* Bordes suaves claros (slate-200) */
    --border-glow: rgba(255, 107, 0, 0.1);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><path d='M0,0 L16,10 L9,11.5 L15,22 L11,24 L5.5,13.5 L2,15.5 Z' fill='%230F172A' stroke='%23FFFFFF' stroke-width='1.5'/><circle cx='18' cy='12' r='3.5' fill='%23FF6B00'/><circle cx='18' cy='12' r='6' fill='none' stroke='%23FF6B00' stroke-width='1' stroke-dasharray='2 1'/></svg>") 0 0, auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

body, p, li, td, th, .glass-panel, .form-group label {
    text-align: justify;
}
.text-center, .text-center *, .center-text, .center-text *, p.text-center, p.center-text, .glass-panel[style*="text-align: center"] *, .glass-panel[style*="text-align:center"] * {
    text-align: center !important;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Glassmorphism Styles */
.glass-panel {
    background: var(--bg-card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-glow);
}

/* Layout Containers */
#app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#app {
    flex: 1;
    width: 100%;
    margin-top: 80px; /* Space for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }

/* Buttons & CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Grids & Cards */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-3, .grid-4, .grid-2 {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 48px 0;
    }
}

/* Badge tags */
.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-glow);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Forms Input styles */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-gray);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background-color: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Utilities */
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

.gradient-text {
    background: linear-gradient(135deg, var(--text-white) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


