.navbar-custom {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}
.navbar-custom img {
    height: 60px;
    width: auto;
}

:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --dark-color: #000000;
    --light-color: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}

.navbar-custom {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #000000);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.edicion-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.edicion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.edicion-card .card-body {
    padding: 30px;
}

.edicion-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.btn-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.mision-vision {
    background-color: var(--light-color);
    padding: 80px 0;
}

.highlight-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}


.UniversalContainer {
    font-family: 'Times New Roman', Times, serif;
}

#carouselExampleDark {
    max-width: 100%; 
    margin: 0 auto;  
}

.carousel-inner img {
    width: 100%;
    height: 500px;
    object-position: center;
}

.edicion-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    height: 100%;
    margin: 10px;
}

.carousel-indicators button {
    background-color: #6c757d;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 15px;
}

.card-title {
    background-color: white;
    color: white;
}

#searchResults {
    position: absolute;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    font-family: 'Times New Roman', Times, serif;
}

#searchResults a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
}

#searchResults a:hover {
    background-color: #f5f5f5;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #333;
    transform: translateY(-3px);
}


