:root {
    --primary: #1a2a44;
    --accent: #d4af37;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    border: 3px solid var(--primary);
}

::-webkit-scrollbar-thumb:hover {
    background: #e5c14e;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--primary);
}

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

html, body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    padding-top: 40px; /* Space for fixed header */
}

body * {
    scroll-margin-top: 80px;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.max-width-md {
    max-width: 800px;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.max-width-md.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.position-relative { position: relative !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.flex-column { flex-direction: column !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.w-100 { width: 100% !important; }

/* Header & Nav */
.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text strong {
    font-weight: 700;
}

.logo-text span {
    font-weight: 300;
    color: var(--text-muted);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-footer-img {
    height: 48px;
    width: auto;
    display: block;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}


.legal-text {
    line-height: 1.8;
    color: var(--text-dark);
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav a i {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a.active i {
    opacity: 1;
}

.main-nav a:hover i {
    opacity: 1;
}

.lang-switcher {
    font-size: 0.875rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--text-muted);
}

.lang-switcher a.active {
    color: var(--primary);
    font-weight: 700;
}

/* Hero */
.hero {
    color: var(--white);
    padding: 10rem 0;
    text-align: left;
    background-color: var(--primary);
}

.hero .badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 800px;
}

.hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Page Header */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: #e5c14e;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* About Section */
.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image, .about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary);
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.feature-mini i {
    color: var(--accent);
    width: 24px;
    height: 24px;
}

.feature-mini span {
    font-weight: 600;
    color: var(--primary);
}

/* Services Grids */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 2.5rem;
    position: relative;
}

.service-icon-card {
    position: absolute;
    top: -30px;
    right: 2.5rem;
    background: var(--accent);
    color: var(--primary);
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

/* Values Page Enhanced Styles */
.values-grid-enhanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.value-item {
    flex: 1 1 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.value-card-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

.value-item .value-card-premium {
    flex: 1;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: none;
    margin-top: 0;
}

.value-card-premium {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--white);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 42, 68, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.value-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(26, 42, 68, 0.15);
    border-color: var(--accent);
}

.value-card-premium:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    width: 85px;
    height: 85px;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin: 0 auto 2.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.value-card-premium:hover .value-icon-wrapper {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(10deg);
}

.value-icon-wrapper i,
.value-icon-wrapper svg {
    width: 48px;
    height: 48px;
}

.value-card-premium h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card-premium p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.relative-overflow {
    position: relative;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.decor-1 {
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.decor-2 {
    bottom: -150px;
    left: -200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.glass-panel-accent {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
}

.glass-panel-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.values-footer-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
}

/* Footer */
.main-footer {
    background: #0a111f;
    color: var(--white);
    padding: 8rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.logo-footer {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.25rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    vertical-align: middle;
    margin-right: 0.75rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-bottom-links a {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.8;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.footer-kit {
    padding-top: 1rem;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-kit-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* Responsive */
.mobile-menu-toggle {
    display: none;
}
/* Contact Page Grid & Map */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    z-index: 1;
}

.contact-card-enhanced {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-methods-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    background: var(--bg-light);
    color: var(--accent);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.method-icon i {
    width: 24px;
    height: 24px;
}

.method-text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.method-text p {
    color: var(--text-muted);
    margin: 0;
}

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

.method-text p a:hover {
    color: var(--accent);
}

.mb-4 { margin-bottom: 1.5rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 400px;
    }
}

.service-card.landscape {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 450px;
    width: 100%;
    margin-bottom: 0;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
    overflow: visible; /* Allow icons to pop out */
    background: var(--white);
    border-radius: 12px;
}

.service-card.landscape:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card.landscape .card-img {
    width: 50%;
    height: auto;
    min-height: 300px;
    border-radius: 12px 0 0 12px;
}

.service-card.landscape:nth-child(even) .card-img {
    border-radius: 0 12px 12px 0;
}

.service-card.landscape .card-body {
    width: 50%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* Context for icon */
}

.service-card.landscape:nth-child(even) .card-body {
    text-align: right;
    align-items: flex-end;
}

.service-card.landscape:nth-child(even) .service-icon-card {
    left: 3rem;
    right: auto;
}

.service-card.landscape:nth-child(even) .service-features {
    justify-content: flex-end;
}

.service-card.landscape:nth-child(even) .service-features li {
    flex-direction: row-reverse;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-features li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* How We Work Section */
.work-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.work-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-num {
    background: var(--accent);
    color: var(--primary);
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.work-step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.rounded { border-radius: 12px; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

@media (max-width: 992px) {
    .glass-panel, .glass-panel-accent {
        padding: 1.5rem !important;
    }

    .hero h1 { font-size: 3rem; }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-card.landscape {
        flex-direction: column !important;
    }

    .service-card.landscape .card-img,
    .service-card.landscape .card-body {
        width: 100%;
    }

    .service-card.landscape .card-body {
        padding: 2.5rem;
    }

    .service-card.landscape .card-img {
        border-radius: 0 !important;
        height: 250px;
    }

    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image img {
        height: 350px;
    }
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .btn {
        padding: 0.8rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        padding: 80px 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        display: block; /* Overriding previous display: none; */
        transform: translateX(100%);
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 1.25rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--bg-light);
        width: 100%;
    }

    .main-nav .lang-switcher {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid var(--bg-light);
        justify-content: flex-start;
        display: flex;
        gap: 1.5rem;
    }

    .main-nav .lang-switcher a {
        font-size: 1.1rem;
        border-bottom: none;
        width: auto;
        padding: 0.5rem 1rem;
        background: var(--bg-light);
        border-radius: 6px;
    }

    .main-nav .lang-switcher a.active {
        background: var(--primary);
        color: var(--white);
    }

    .main-nav .lang-switcher .separator {
        display: none;
    }

    .hero, .page-header {
        text-align: center;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-grid .footer-contact p {
        justify-content: center;
    }

    .footer-grid .logo-footer,
    .footer-grid .logo-footer-img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

/* Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 42, 68, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ==========================================================================
   ADMIN PANEL SHARED STYLES
   ========================================================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    padding: 3rem 5rem; /* Separación sustancial de los bordes laterales y superior */
    gap: 3rem;       /* Separación clara entre el menú y el contenido */
    background: #f1f5f9;
    align-items: flex-start;
    justify-content: center; /* Centrar todo el panel en pantallas anchas */
    margin: 0 auto;
}

.admin-sidebar {
    width: 320px; /* Un poco más ancho para legibilidad */
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    position: sticky;
    top: 120px;
    z-index: 10;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    background: #fcfcfc;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.admin-main {
    flex: 1;
    max-width: 1400px; /* Límite para que no se estire demasiado en pantallas gigantes */
    background: #f8fafc;
    min-width: 0;
    border-radius: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    padding-bottom: 3rem;
}

.container-admin {
    padding: 3rem 4rem; /* Padding interno para el contenido principal */
}

.stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-width: 300px;
}

.stat-item {
    min-width: 0; /* Allow shrinking in grid */
}

/* ... styles ... */

.admin-nav-side .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.admin-nav-side .nav-link:hover, .admin-nav-side .nav-link.active {
    color: var(--primary);
}

.admin-nav-side .nav-link i {
    width: 18px;
    height: 18px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {
    .admin-wrapper { padding: 1rem; flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; }
    .container-admin { padding: 0 1rem; }
}

.lang-indicators {
    margin: 0 5px 0 0;
}