/* assets/css/style.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Colores institucionales: Azul Marino y Dorado/Gris */
:root {
    --primary-color: #0d3b66; /* Azul Marino */
    --secondary-color: #f4d35e; /* Acento cálido / Dorado suave */
    --accent-color: #faf0ca;
    --text-muted: #6c757d;
}

.bg-institucional {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #092c4d;
    border-color: #092c4d;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card-header {
    background-color: white;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    color: var(--primary-color);
}

.table th {
    background-color: #f8f9fa;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

/* Modales */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Action Cards (Dashboard) */
.action-card {
    border: none;
    border-top: 5px solid #f39c12; /* Naranja estilo imagen */
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
}
.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.action-card i {
    color: #444;
}

/* Login */
.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.login-logo {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.status-badge {
    padding: 0.4em 0.8em;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 500;
}
.status-constatado {
    background-color: #d1e7dd;
    color: #0f5132;
}
.status-noverificado {
    background-color: #f8d7da;
    color: #842029;
}

/* Landing Page Styles */
.landing-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(13, 59, 102, 0.8), rgba(13, 59, 102, 0.8)), url('../img/landing_hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.landing-section {
    padding: 80px 0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 25px;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(13, 59, 102, 0.2);
}

.feature-card {
    border: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.btn-landing {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #00a2e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

