@font-face {
    font-family: 'Gotham-Light';
    src: url('../fonts/Gotham-Light.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.otf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham\ Medium.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Gotham Medium', sans-serif !important; ; 
    font-size: 60px;    
}

p,a {
    font-family: 'Gotham-Light', sans-serif !important; 
}
.active {
    color: #f56565;
    border-bottom: 2px solid #f56565;
}
body{
    margin: 0;
    padding: 0;
    background-color: #ffffff; 
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-link.active {
    color: #d10000; /* Rojo */
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d10000; /* Línea roja */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.slider {
    position: relative;
}

.slides {
    display: flex;
}

.slide img {
    width: 100%;
    height: auto;
}

.caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}