/*
 Theme Name:   Divi - Inventario
 Theme URI:    https://www.elegantthemes.com/gallery/divi/
 Description:  Tema hijo de Divi personalizado para el Sistema de Inventario
 Author:       Inventario Team
 Author URI:   https://localhost/
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  divi-inventario
 Domain Path:  /languages
*/

/* Importar estilos del tema padre */
@import url('../Divi/style.css');

/* ============================================================================
   Estilos personalizados para el Sistema de Inventario
   ============================================================================ */

body.page-inventario-login {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

body.page-inventario {
	background: #f5f5f5;
}

/* Header personalizado para inventario */
.inventario-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 40px 20px;
	text-align: center;
}

.inventario-header h1 {
	margin: 0;
	color: white;
	font-size: 32px;
}

.inventario-header p {
	margin: 10px 0 0 0;
	opacity: 0.9;
}

/* Contenedor del sitio */
.inventario-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Botones de acción */
.btn-inventario {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-inventario:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
	color: white;
}

.btn-inventario.secondary {
	background: #f5f5f5;
	color: #333;
}

.btn-inventario.secondary:hover {
	background: #e5e5e5;
}

/* Tarjetas de información */
.info-card {
	background: white;
	border-radius: 8px;
	padding: 30px;
	margin: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-left: 4px solid #667eea;
}

.info-card h3 {
	color: #333;
	margin-top: 0;
}

.info-card ul {
	list-style: none;
	padding: 0;
}

.info-card li {
	padding: 8px 0;
	color: #666;
}

.info-card li:before {
	content: '✓ ';
	color: #667eea;
	font-weight: bold;
	margin-right: 8px;
}

/* Grid de características */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.feature-box {
	background: white;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
	color: #667eea;
	margin-top: 15px;
}

.feature-icon {
	font-size: 32px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Footer personalizado */
.inventario-footer {
	background: #333;
	color: white;
	padding: 30px 20px;
	text-align: center;
	margin-top: 40px;
}

.inventario-footer p {
	margin: 10px 0;
	opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
	.inventario-header h1 {
		font-size: 24px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.info-card {
		padding: 20px;
	}
}
