/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #374151 0%, #1a1a1a 100%);
    min-height: 100vh;
    color: #333;
}

.sistema-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.sistema-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 95px;
    width: auto;
}

.header-content h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

/* Main Content */
.sistema-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stores-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.stores-container h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stores Grid */
.stores-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.store-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    width: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.store-card:hover::before {
    left: 100%;
}

.store-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.store-icon {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.store-card:hover .store-icon {
    transform: rotate(360deg);
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.store-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.store-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.store-arrow {
    color: #2c3e50;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.store-card:hover .store-arrow {
    transform: translateX(10px);
    color: #34495e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .stores-container h2 {
        font-size: 2rem;
    }
    
    .stores-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .store-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .sistema-main {
        padding: 1rem;
    }
    
    .stores-container h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .store-card {
        padding: 1.5rem;
    }
    
    .store-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .store-info h3 {
        font-size: 1.3rem;
    }
}

.sistema-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../src/assets/logo_jorle.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1200px auto;
    opacity: 0.20;
    filter: brightness(0) invert(1);
    transform: rotate(-15deg);
    z-index: -1;
}

@media (max-width: 768px) {
    .sistema-background {
        background-size: 400px auto;
    }
}

@media (max-width: 480px) {
    .sistema-background {
        background-size: 300px auto;
    }
}