:root {
    --rcv-primary: #df4b13;     /* Naranja intenso */
    --rcv-secondary: #9d0848;   /* Borgoña */
    --rcv-dark: #341a70;        /* Azul oscuro */
    --rcv-light: #f8f9fa;       /* Fondo claro */
    --rcv-accent: #ff6b00;      /* Naranja brillante (para destacar) */
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar */
.bg-rcv {
    background-color: var(--rcv-dark);
}

.navbar-brand img {
    height: 50px;
}

.sidebar {
    background-color: var(--rcv-dark);
    min-height: 100vh;
}

.sidebar .nav-link {
    color: white;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    background-color: var(--rcv-secondary);
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    background-color: var(--rcv-primary);
    font-weight: bold;
}

/* Mejoras para el logo */
/* Estilos para el logo más grande */
.sidebar .p-4 {
    padding: 1.5rem .4rem !important;
    background: linear-gradient(135deg, var(--rcv-primary) 0%, var(--rcv-secondary) 100%);
}

.sidebar .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px; /* Aumenté la altura para el logo más grande */
}

.sidebar img {
    max-width: 100%;
    height: auto;
    max-height: 80px; /* Aumenté la altura máxima del logo */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-bottom: 10px; /* Espacio entre logo y texto */
}

/* Estilos para el texto de bienvenida */
.welcome-text {
    color: white !important;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    padding: 8px 5px;
    border-radius: 5px;
}

/* Asegurar que el texto dentro del nav tenga los estilos correctos */
.sidebar .nav {
    color: white;
}

.sidebar .nav-link {
    color: white;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    background-color: var(--rcv-secondary);
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    background-color: var(--rcv-primary);
    font-weight: bold;
}

.sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

/* Separador para el logout */
.sidebar .nav-link.text-danger {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px !important;
    padding-top: 15px;
}

.sidebar .nav-link.text-danger:hover {
    background-color: #dc3545;
    color: white !important;
}

/* Botones */
.btn-rcv {
    background-color: var(--rcv-primary);
    color: white;
    border: none;
}

.btn-rcv:hover {
    background-color: #c53d0f;
}

.btn-rcv-login {
    background-color: var(--rcv-secondary);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
}

.btn-rcv-login:hover {
    background-color: #7d0638;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(52, 26, 112, 0.9), rgba(52, 26, 112, 0.9)), 
                url('assets/img/hero-vehiculos.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
}

/* Textos y utilidades */
.text-rcv-primary {
    color: var(--rcv-primary);
}

.text-rcv-secondary {
    color: var(--rcv-secondary);
}

.text-rcv-accent {
    color: var(--rcv-accent);
}

.bg-light {
    background-color: var(--rcv-light) !important;
}

.bg-rcv-dark {
    background-color: var(--rcv-dark);
}

/* Estilos específicos para login */
.login-section {
    background-color: var(--rcv-light);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

/* Efecto hover para el card */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Input focus */
.form-control:focus {
    border-color: var(--rcv-primary);
    box-shadow: 0 0 0 0.25rem rgba(223, 75, 19, 0.25);
}
