 /* Estilos generales */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
}

/* Estilos del menú lateral */
.omp-custom-menu {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #a6192e;
    transform: translateX(3px);
}

.menu-item:hover a {
    color: #ffffff;
}

.menu-item a {
    display: block;
    padding: 14px 18px;
    color: #a6192e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-header {
    width: 100%;
    margin: 0 auto 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.logos-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 0;
    overflow: hidden;
}

.section-title {
    color: #a6192e;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-custom {
    display: inline-block;
    background: #a6192e;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #8b1526;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.custom-header {
    width: 100%;
    margin: 0 auto 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.header-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
}

.slide {
    width: 800px;
    height: 362px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideFade 10s infinite;
    background: #fff;
}

/* Estilos del header personalizado */
.custom-header {
    width: 100%;
    margin: 0 auto 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.header-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideFade 10s infinite;
    background: #fff;
}

.header-slider {
    position: relative;
    width: 100%;
    height: 362px;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideFade 10s infinite;
    background: #fff;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }

@keyframes slideFade {
    0%, 45% { opacity: 0; }
    50%, 95% { opacity: 1; }
    100% { opacity: 0; }
}

.logos-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 0;
    overflow: hidden;
}

.logos-scroll-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-logos 25s linear infinite;
}

.logo {
    height: 50px;
    width: auto;
    margin: 0 25px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.welcome-section {
    margin: 30px 0;
}

.welcome-content {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 5px solid #007bff;
}

.section-title {
    color: #007bff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}