==============================================
PORTALDOC.CSS - VERSIÓN ULTRA SIMPLIFICADA
Solo lo esencial para https://portaldoc.com/global
==============================================
/
/ ===================================
   ANIMACIÓN BANNER
=================================== /
@keyframes bannerZoom {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.05); }
}
.banner-container { 
    overflow: hidden; 
    position: relative; 
}
.banner-animated {
    animation: bannerZoom 10s ease-in-out infinite;
    width: 110%;
    height: 100%;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}
/ ===================================
   LAYOUT
=================================== /
.main-wrapper {
    min-height: 100vh;
    background: var(--white);
}
.content-wrapper {
    padding-top: 70px;
    min-height: 100vh;
    transition: all 0.3s;
}
/ ===================================
   TOPBAR
=================================== /
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    left: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.topbar-logo img { height: 35px; }
.topbar-menu {
    color: var(--dark);
    padding: 0 1rem;
    transition: color 0.3s;
}
.topbar-menu:hover,
.topbar-menu.active {
    color: var(--primary);
}
/ ===================================
   SIDEBAR
=================================== /
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    height: 100vh;
    width: 280px;
    background: 
#120873;
    z-index: 1001;
    transition: left 0.3s;
    overflow-y: auto;
}
.sidebar.open { left: 0; }
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar-logo { padding: 20px 25px; }
.sidebar-logo img { height: 35px; }
.sidebar-nav {
    padding: 15px 0;
    list-style: none;
    margin: 0;
}
.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: 
#cfd4e6;
    font-weight: 500;
    transition: all 0.3s;
}
.sidebar-link:hover,
.sidebar-link.active {
    color: var(--white);
    background: 
#3a3f50;
}
.sidebar-icon {
    margin-right: 10px;
    color: 
#7a7c9e;
}
/ ===================================
   RESPONSIVE
=================================== */
@media (max-width: 768px) {
    .content-wrapper { padding-top: 60px; }
}
@media (min-width: 1200px) {
    .content-wrapper { padding-left: 280px; }
    .topbar { left: 280px; width: calc(100% - 280px); }
    .sidebar { left: 0; }

    .sidebar-closed .content-wrapper { padding-left: 0; }
    .sidebar-closed .topbar { left: 0; width: 100%; }
    .sidebar-closed .sidebar { left: -280px; }
}
@media (max-width: 991px) {
    .sidebar-overlay.active { opacity: 1; visibility: visible; }
    .sidebar.open { left: 0; }
}{{--@include('frontend/inc/partials/inc_styles.blade.php')--}}
<style>
.search-container {
    position: relative;
    height: auto;
}
.search-input-rounded {
    border-radius: 25px !important;
    border: 1px solid 
#e3e6f0 !important;
    padding-left: 1.25rem !important;
    padding-right: 3.5rem !important;
    height: auto !important;
    font-size: 0.875rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    background-color: #fff !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.search-input-rounded:focus {
    border-color: 
#80bdff !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}
.search-input-rounded::placeholder {
    color: 
#6c757d !important;
    opacity: 1 !important;
}
.search-btn-rounded {
    position: absolute !important;
    right: 4px !important;
    top: 2px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: 
#007bff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 0.875rem !important;
    transition: all 0.15s ease-in-out !important;
    cursor: pointer !important;
}
.search-btn-rounded:hover {
    background-color: 
#0056b3 !important;
    transform: scale(1.05) !important;
}
.search-btn-rounded:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5) !important;
}
.search-btn-rounded:active {
    background-color: 
#004085 !important;
    transform: scale(0.98) !important;
}
.user-initials-avatar {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.user-initials-avatar:hover {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.15);
    transform: scale(1.1);
}
