:root {
    --primary-color: #3ba89f;      /* Keeping the teal/turquoise */
    --primary-light: #4fd1c7;      /* Lighter version of primary */
    --primary-dark: #2a7671;      /* Darker version of primary */
    --primary-color-rgb: 59, 168, 159;  /* RGB values of primary color */
    
    --secondary-color: #03251e;    /* Keeping the dark green */
    --secondary-light: #0a3d32;    /* Slightly lighter version of secondary */
    --secondary-dark: #021912;     /* Darker version of secondary */
    
    --white: #ffffff;

    /* Status colors - más suaves y armoniosos con la paleta principal */
    --status-success: #2a9d8f; /* Verde azulado */
    --status-warning: #e9c46a; /* Amarillo suave */
    --status-danger: #e76f51;  /* Rojo terroso */
}

/* Login styles */
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #f5f5f5; 
    overflow: hidden;
    height: 100vh;
    margin: 0;
    min-height: 100vh;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.login-logo {
    width: 180px;
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.login-form .form-control {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 168, 159, 0.1);
}

.login-form .form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.btn-login {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem;
    font-weight: 500;
    width: 100%;
    margin-top: 1rem;
    color: white;
}

.btn-login:hover {
    background-color: var(--primary-dark);
    color: white;
}

.error-message {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.login-form .form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

a {
    color: var(--primary-color);
    text-decoration: none; /* Opcional: quita el subrayado */
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark); /* O el color que quieras en hover */
    text-decoration: underline; /* Opcional */
}


.sidebar { 
    width: 250px; 
    background-color: var(--secondary-color); 
    height: 100vh; 
    position: fixed; 
    padding-top: 20px; 
    transition: all 0.3s; 
    z-index: 1001; 
}

.sidebar a { 
    color: white; 
    padding: 15px; 
    display: block; 
    text-decoration: none; 
    font-size: 1.1em; 
    transition: 0.3s; 
}

.sidebar a:hover { 
    background-color: var(--secondary-light); 
    transform: scale(1.05); 
}

.topbar {
    width: 100%;
}

/* Estilos para los enlaces de navegación en la topbar */
.nav-links {
    display: flex;
    margin-left: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #eef0f2;
}

.nav-link:last-child {
    border-right: none;
}

.nav-link:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    text-decoration: none;
    color: var(--primary-color);
}

.nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-link i {
    font-size: 1rem;
}

/* Eliminar el efecto de brillado anterior */
.nav-link::before {
    display: none;
}

.user-menu { 
    position: relative;
    padding: 8px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.user-avatar:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


.btn-inpro{
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
}

.btn-inpro:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-outline-primary-inpro {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-card {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: #f8f9fa;  /* Cambio a un gris muy sutil */
    border: 1px solid #eef0f2;  /* Borde sutil */
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
}

.profile-card:hover {
    background: #f2f4f6;  /* Gris un poco más oscuro al hover */
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user-info {
    padding-right: 8px;
}

.user-info h6 {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.user-info small {
    font-size: 0.8rem;
}

.dropdown-menu {
    margin-top: 10px !important;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 240px;
    display: none;
    z-index: 1021 !important; /* Mayor que el z-index de .topbar */
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    border-bottom: 1px solid #f1f1f1;
    background-color: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: rgba(186, 137, 243, 0.1);
    color: var(--primary-color);
}

.dropdown-item.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.dropdown-divider {
    margin: 0.3rem 0;
}

.content {
    margin-left: 0 !important;
    padding-left: 1rem;
    padding-right: 1rem;
}
.content h2 {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.card { 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(186, 137, 243, 0.1);
}

.card:hover { 
    transform: none; /* Quitar el efecto zoom de la card que contiene la tabla */
    box-shadow: 0px 4px 10px rgba(186, 137, 243, 0.1);
}

.card.mb-4 {
    margin-bottom: 1rem !important;
    flex-shrink: 0;
}

.chart-container { 
    position: relative;
    height: calc(100vh - 120px); /* Ajustado para dejar menos espacio */
    min-height: 400px;
    padding: 1.5rem;
    margin: 1rem 0;
    background: white; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(186, 137, 243, 0.1); 
    margin-top: 20px; 
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: calc(100vh - 250px);
    min-height: 300px;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 20px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-width: 800px; /* Aumentado de 500px */
    margin: 0 auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sidebarToggle { 
    display: none; 
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding: 0.5rem;
}

.logo-sidebar {
    max-width: 180px;
    height: auto;
}

.logo-topbar {
    height: 40px;
    width: auto;
}

.stats-card {
    border: none;
    background-color: white;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 20px;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon i {
    font-size: 1.5rem;
}

.stats-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

.stats-card p {
    font-size: 0.9rem;
    font-weight: 500;
}

.search-bar {
    width: 300px;
}

.search-bar .input-group {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.search-bar input,
.search-bar .input-group-text {
    background-color: transparent;
}

.search-bar input:focus {
    box-shadow: none;
    background-color: transparent;
}

.clock-display {
    color: var(--secondary-color);
    font-size: 0.9rem;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.notifications-bell .btn {
    color: var(--secondary-color);
    padding: 8px;
    border-radius: 8px;
}

.notifications-bell .btn:hover {
    background-color: #f8f9fa;
}

.notifications-dropdown {
    width: 300px;
    padding: 0;
}

.notifications-dropdown .dropdown-header {
    padding: 12px 16px;
    font-weight: 600;
}

.notifications-dropdown .dropdown-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f1f1;
}

.notifications-dropdown .dropdown-item:last-child {
    text-align: center;
    font-weight: 500;
}

.catalog-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
}

.catalog-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 168, 159, 0.2);
}

.catalog-btn i {
    font-size: 1.1rem;
}

/* Estilos para la tabla de técnicos */
.table-responsive {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
    flex: 1;
    overflow-y: auto;
    margin: 0;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.sticky-top {
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.action-btn {
    color: var(--secondary-color);
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.table-hover tbody tr:hover {
    background-color: rgba(59, 168, 159, 0.05); /* Sutil highlight con el color primario */
    transition: background-color 0.2s ease;
}

/* Estilos para las cabeceras ordenables */
.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.sortable:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.sortable i {
    opacity: 0.3;
    transition: all 0.2s ease;
}

.sortable:hover i {
    opacity: 1;
}

.fa-sort-asc,
.fa-sort-desc {
    opacity: 1 !important;
    color: var(--primary-color);
}

/* Estilos para los filtros */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.form-select {
    cursor: pointer;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

/* Estilos para el modal */
.modal-header {
    border-bottom: 1px solid #eee;
    background-color: white;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 500;
}

.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.input-group .btn-outline-secondary {
    border-color: #ddd;
    color: #666;
}

.input-group .btn-outline-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.modal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 168, 159, 0.25);
}

/* Estilos para el modal de detalles */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-header,
.modal-footer {
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
    word-wrap: break-word;
}

.modal .user-avatar {
    background-color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal .tecnico-estado {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.modal .form-label {
    margin-bottom: 0.3rem;
}

.modal .tecnico-email {
    word-break: break-word;
    max-width: 100%;
}

.modal-backdrop.show {
    opacity: 0.7;
}

.fw-medium {
    font-weight: 500;
}

/* Estilos adicionales para modales */
.modal .list-group-item {
    transition: all 0.2s ease;
    border-left: none;
    border-right: none;
}

.modal .list-group-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.modal .list-group-item:first-child {
    border-top: none;
}

.modal .list-group-item:last-child {
    border-bottom: none;
}

.modal .list-group-item .fa-download {
    opacity: 0.5;
    transition: all 0.2s ease;
}

.modal .list-group-item:hover .fa-download {
    opacity: 1;
    transform: translateY(-2px);
}

/* Ajustar efecto fade de los modales */
.fade-light {
    transition: opacity 0.15s linear;
}

.fade-light.show {
    opacity: 1;
}

.modal-backdrop {
    opacity: 0.3 !important; /* Reducir opacidad del fondo */
    transition: opacity 0.15s linear;
}

.modal-backdrop.show {
    opacity: 0.3 !important;
}

/* Asegurar que solo haya un backdrop visible */
.modal-backdrop ~ .modal-backdrop {
    display: none;
}

/* Estilos para el modal de documentos */
.documentos-container {
    min-height: 200px;
    position: relative;
}

.documentos-list .list-group-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.documentos-list .list-group-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    transform: translateX(5px);
}

.documentos-list .list-group-item .doc-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.documentos-list .doc-info {
    flex: 1;
}

.documentos-list .doc-actions {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.documentos-list .list-group-item:hover .doc-actions {
    opacity: 1;
}

.no-documents {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #6c757d;
}

.documentos-cae-list {
    max-height: 60vh;
    overflow-y: auto;
}

/* Estilo para el scrollbar */
.documentos-cae-list::-webkit-scrollbar {
    width: 6px;
}

.documentos-cae-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.documentos-cae-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.documentos-cae-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.documentos-cae-list .doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.documentos-cae-list .badge {
    font-size: 0.8rem;
    padding: 0.35em 0.65em;
}

/* Estilos para el contenedor de contraseñas */
.password-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilos para los botones de contraseña */
.password-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-container .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.password-container .btn-outline-secondary,
.password-container .btn-outline-primary-inpro {
    border: 1px solid #ddd;
    background-color: transparent;
}

.password-container .btn-outline-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.password-container .btn-outline-primary-inpro {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.password-container .btn-outline-primary-inpro:hover {
    background-color: var(--primary-color);
    color: white;
}

.password-text, 
.password-mask {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    min-width: 100px;
}

/* Estilos para el modal de nueva contraseña */
#newPasswordModal .input-group {
    position: relative;
}

#newPasswordModal .toggle-password,
#newPasswordModal .generate-password {
    border-color: #ddd;
}

#newPasswordModal .toggle-password:hover,
#newPasswordModal .generate-password:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

#newPasswordModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

#newPasswordModal .modal-content {
    border-radius: 15px;
}


#newPasswordModal .modal-footer {
    border-top: 1px solid #eee;
}

/* Estilos para el tooltip */
.password-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    pointer-events: none;
    animation: fadeInOut 1.5s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

/* Flecha del tooltip */
.password-tooltip::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}

/* Estilos para validación de formularios */
.form-control.is-invalid {
    border-color: var(--status-danger);
    background-image: none;
}

.form-control.is-invalid:focus {
    border-color: var(--status-danger);
    box-shadow: 0 0 0 0.2rem rgba(231, 111, 81, 0.25);
}

/* Ajustar el tooltip para mensajes de validación */
.password-tooltip.validation-error {
    background-color: var(--status-danger);
}

/* Estilos para validación de campos */
.form-control:not(:required) {
    background-image: none !important;
}

.form-control:not(:required):focus {
    border-color: #ced4da;
    box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.25);
}

.form-control.is-invalid:not(:required) {
    border-color: #dc3545;
    background-image: none !important;
}

.form-control.is-valid:not(:required) {
    border-color: #198754;
    background-image: none !important;
}

/* Estilos para DataTables */
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_length select {
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5em;
    padding: 0.375rem 0.75rem;
}

.dataTables_wrapper .dataTables_info {
    padding-top: 1rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: white !important;
}

/* Ajustes DataTables */
.dataTables_wrapper {
    padding: 0;
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 1rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_length select {
    min-width: 80px;
}

/* Ajustes DataTables Scrolleable */
.dataTables_scrollBody {
    min-height: 200px;
    max-height: 50vh !important;
    overflow-y: auto !important;
}

.dataTables_scrollHead {
    position: sticky !important;
    top: 0;
    z-index: 2;
    background-color: white;
}

.dataTables_scrollHead table {
    margin-bottom: 0 !important;
}

/* Estilo para el scrollbar */
.dataTables_scrollBody::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.dataTables_scrollBody::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Asegurar que la tabla ocupa todo el ancho */
.dataTables_wrapper .table {
    width: 100% !important;
}

/* Ajustes DataTables Scrolleable */
.dataTables_wrapper .dataTables_scrollBody {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.dataTables_wrapper .dataTables_scrollHead {
    background: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.dataTables_wrapper .dataTables_scrollHead table {
    margin-bottom: 0;
    background: white;
}

/* Estilo para el scrollbar */
.dataTables_scrollBody::-webkit-scrollbar {
    width: 8px;
}

.dataTables_scrollBody::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Ajuste del contenedor principal */
.card-body {
    padding-bottom: 2rem;
}

/* Estilos para los encabezados de sección */
.section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.section-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 8px 8px;
}

.section-header h2 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.section-header p {
    font-size: 0.95rem;
    opacity: 0.8;
}
