/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --primary: #1d4ed8;            /* Deep Royal Blue */
    --primary-hover: #1e40af;
    --primary-light: #eff6ff;
    --secondary: #f97316;          /* Solidarity Orange */
    --secondary-hover: #ea580c;
    --secondary-light: #fff7ed;
    --accent-green: #10b981;        /* Economy Circular Green */
    --accent-green-hover: #059669;
    --accent-green-light: #ecfdf5;
    
    /* Neutrals */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --bg-dark-card: #1e293b;
    --text-dark: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
    --glass-blur: 12px;
    
    /* Layout */
    --container-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   REUSABLE UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 16px auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

/* Cards */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(239, 246, 255, 0.7) 0%, rgba(248, 250, 252, 1) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffedd5;
    color: #c2410c;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

#stat-tucuman {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(249, 115, 22, 0.05) 50%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.08));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==========================================
   PHILOSOPHY & VALORES
   ========================================== */
.philosophy {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.quote-card {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
}

.quote-icon-wrapper {
    position: absolute;
    top: 24px;
    left: 40px;
    opacity: 0.1;
}

.quote-icon {
    width: 120px;
    height: 120px;
    color: var(--primary);
}

.quote-card blockquote {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.valores {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-light);
}

.card-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.card-icon-wrapper.orange {
    background: linear-gradient(135deg, var(--secondary), #f97316);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.card-icon-wrapper.green {
    background: linear-gradient(135deg, var(--accent-green), #34d399);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.card-icon-wrapper.blue {
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
}

/* ==========================================
   COMO FUNCIONA
   ========================================== */
.como-funciona {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 56px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.feature-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.feature-row.reverse .feature-info {
    grid-column: 2;
}

.feature-row.reverse .feature-icon-box {
    grid-column: 1;
    grid-row: 1;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(29, 78, 216, 0.15);
    line-height: 1;
    margin-bottom: 8px;
}

.feature-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    background-color: var(--accent-green-light);
    border-radius: 50%;
    padding: 3px;
}

.feature-icon-box {
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
}

.feature-icon-box svg {
    width: 96px;
    height: 96px;
    color: var(--primary);
    opacity: 0.85;
}

.feature-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-normal);
}

.feature-row:hover .feature-img {
    transform: scale(1.08) translateY(-4px);
}

/* ==========================================
   REGISTRO & CONTACT FORM
   ========================================== */
.registro {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.registro-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
}

.registro-info {
    position: sticky;
    top: 120px;
}

.registro-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.registro-info .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.registro-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.925rem;
    margin-bottom: 0;
}

.registro-form-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--text-dark);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: var(--transition-fast);
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.contact-form textarea {
    padding: 14px 16px;
    min-height: 120px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-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='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

.contact-form input:focus + .input-icon,
.contact-form select:focus + .input-icon {
    color: var(--primary);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label span {
    font-size: 0.925rem;
    color: var(--text-main);
    line-height: 1.4;
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
}

.error-msg.visible {
    display: block;
}

/* Submit Button & Loader */
.btn-submit {
    position: relative;
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contact-form.submitting .btn-text {
    visibility: hidden;
    opacity: 0;
}

.contact-form.submitting .loader {
    display: inline-block;
    position: absolute;
}

/* Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--accent-green-light);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon-wrapper svg {
    width: 48px;
    height: 48px;
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    max-width: 400px;
}

.success-detail {
    font-size: 0.925rem !important;
    background-color: var(--bg-main);
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 56px;
}

.footer-brand .logo-text {
    color: var(--text-light);
    margin-bottom: 16px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 4px;
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 32px;
    }
    
    .quote-card {
        padding: 40px;
    }
    
    .quote-card blockquote {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 60px;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content p {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }
    
    .feature-row.reverse .feature-info {
        grid-column: 1;
    }
    
    .feature-row.reverse .feature-icon-box {
        grid-column: 1;
        grid-row: 2;
    }
    
    .registro-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .registro-info {
        position: static;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 48px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-normal);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .registro-form-container {
        padding: 24px;
    }
}

/* ==========================================
   FOOTER BOTTOM LAYOUT & ADMIN STYLES
   ========================================== */
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-admin-link {
    color: #64748b;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.footer-admin-link:hover {
    color: var(--text-light);
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-admin-link svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}
