@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #e75f8a;
    --primary-soft: #fff0f5;
    --secondary-color: #6c757d;
    --bg-light: #f8f9fa;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 15px 35px rgba(231, 95, 138, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fbfbfd;
    color: var(--text-dark);
}

/* Utilities */
.bg-soft-primary { background-color: var(--primary-soft) !important; color: var(--primary-color) !important;}
.text-primary { color: var(--primary-color) !important;}
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 95, 138, 0.25);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #d04c76;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 95, 138, 0.3);
}

/* Unit Cards Home */
.card-unit {
    border: none;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.card-unit .unit-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    position: relative;
}

.badge-service {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Layout */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Subbar Categorias Horizontal Scroll */
.category-slider {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 0;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.category-slider::-webkit-scrollbar { display: none; }

.category-item {
    background: white;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: var(--shadow-soft);
    margin-right: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.category-item:hover, .category-item.active {
    background: var(--primary-color);
    color: white;
}

/* Inputs modernizados */
.form-control {
    border-radius: var(--radius-md);
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.form-control:focus {
    box-shadow: 0 0 0 4px rgba(231, 95, 138, 0.1);
    border-color: var(--primary-color);
}
