@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
	padding: 0;
	margin: 0;
}
body{
    font-family: "Kanit", sans-serif;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
header {
    background-color: #183262;
}
.nav-hover {
    position: relative;
    transition: color 0.3s ease;
}

/* Línea decorativa */
.nav-hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: red;
    transition: width 0.3s ease;
}

/* Efecto al pasar el mouse */
.nav-hover:hover::after {
    width: 100%;
}

/* Enlace activo con línea visible permanentemente */
.nav-hover.active::after {
    width: 100%;
}

/* Cambiar también el color del texto al activo o hover */
.nav-hover:hover,
.nav-hover.active {
    color: white !important;
}
.carousel-item img {
    filter: brightness(70%);
}
.custom-hr {
    border: none;
    border-top: 5px solid #BC2132;
    width: 120px;       /* puedes ajustar el ancho */
    margin: 10px auto;  /* centra horizontalmente */
    opacity: 1;         /* asegura que el color no se atenúe en Bootstrap 5 */
}
/* Div centrado */
.evento-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    width: 80%;
    max-width: 500px;
}

.evento-info h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.evento-info p {
    margin: 5px 0;
    font-size: 16px;
}

.evento-info i {
    color: #ffffff;
    margin-right: 8px;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}
.image-card {
    cursor: pointer;
    height: 450px; /* altura uniforme */
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.image-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card:hover .overlay {
    opacity: 1;
}
section h4 {
    letter-spacing: 2px;
}

.list-unstyled i {
    color: #fff;
}

.list-unstyled li:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}
.hotel-card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%; /* que todas tengan misma altura */
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-img {
    height: 180px;
    object-fit: cover;
}

.card-body {
    flex-grow: 1; /* el cuerpo se expande para igualar altura */
}

.card-title {
    min-height: 50px; /* asegura espacio uniforme para nombres */
    color: #bc2132;
    font-weight: 700;
}
.restaurant-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.restaurant-card:hover {
    transform: translateY(-6px);
}

.restaurant-img {
    height: 200px;
    object-fit: cover;
}
.sede-section {
    position: relative;
    width: 100%;
    background-image: url('../images/sede-expo.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.sede-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* oscurece la imagen para resaltar el texto */
}

.sede-content {
    position: relative;
    z-index: 2;
}

.sede-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sede-address {
    font-size: 1.25rem;
    font-weight: 500;
}
.video-wrapper {
    width: 100%;
    overflow: hidden;
}

.video-fluid {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .sede-title {
        font-size: 1.8rem;
    }
    .sede-address {
        font-size: 1rem;
    }
}
footer{
    background-color: #E30613;
}
.carousel-caption-custom {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    padding: 10px 15px;
    background: rgba(0,0,0,0.45);
    border-radius: 15px;
}

.carousel-logo {
    max-width: 150px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px #000);
}
.bg-cover-section {
    background-image: url('../images/fondo-video.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 35px;
    align-items: center;
    justify-content: center;
    color: white;
}

