body {
    -webkit-font-smoothing: antialiased;
    color: #333;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    }

/* Contenedor de la navegación */
.navbar-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Contenedor de las opciones del menú */
.navbar-left, .navbar-right {
    display: flex;
    justify-content: center;  /* Centra las opciones */
    align-items: center;
    gap: 15px;  /* Ajusta este valor para reducir o aumentar el espacio entre las opciones */
}

/* Opciones individuales del menú */
.navbar-left li, .navbar-right li {
    list-style: none;
    padding: 0;  /* Elimina el padding de las opciones */
}

/* Estilo de los enlaces */
.navbar-left a, .navbar-right a {
    text-decoration: none;
    color: #000;
    padding: 10px 15px;  /* Ajusta el padding de los enlaces para dar espacio entre el texto y el borde */
}

/* Para pantallas pequeñas */
@media screen and (max-width: 991px) {
    .navbar-left, .navbar-right {
        flex-direction: column;
        align-items: center;
    }
}

.section-content {
    margin-top: 40px;
}

.section-content-home {
    margin-top: 70px;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px; /* Esto sigue afectando el espaciado alrededor del texto */
    text-decoration: none; /* Elimina el subrayado predeterminado */
}

.nav > li > a .underline {
    position: relative;
    display: inline-block; /* El span se ajusta al tamaño del texto */
}

.nav > li > a:hover {
    background-color:transparent;
}

/* Subrayado bajo el texto */
.underline::after {
    content: '';
    position: absolute;
    width: 50%; /* El subrayado será la mitad del ancho del texto */
    height: 2px; /* Grosor del subrayado */
    background-color: #000; /* Color del subrayado */
    bottom: 0;
    left: 0; /* El subrayado empieza en la primera letra */
    transition: width 0.3s ease; /* Transición suave */
}

/* Expandir el subrayado al pasar el mouse */
.underline:hover::after {
    width: 100%; /* El subrayado se expande al pasar el mouse */
    height: 1px; /* Grosor del subrayado */
    transition: width 0.3s ease; /* Transición suave */
}

/* Otos */
.select {
    color:#902929;
    font-weight: 600;
    text-decoration: underline;
}

.txt-intro {
    font-size: 14px;
}

.bold-400{
    font-weight: 400;
}

.bold-600{
    font-weight: 600;
}

.color-red {
    color:#902929;
}

.feature-box .icon {
    font-size: 2rem;
    color: var(--text-heading-color);
    margin-bottom: var(--offset-y);
}

.dotted {
    border-bottom: 1px dashed #902929;
    text-decoration: none; 
}

a.link {
    color:#902929;
    font-size: 14px;
    font-weight: 600;
}
a.link:hover {
    color:#666666;
    border-bottom: 1px dashed #666666;
    text-decoration: none; 
}

.about-video-home {
    text-transform: lowercase;
}

#navigation.affix {
    /* z-index: 100 !important; */
    left: 10px;
    top: 90px;
    height: 50px;
    border: solid 1px #fff;
    background: rgba(255, 255, 255, .95);
}

.f-right {
    float: right;
}

span-light {
    font-weight: 400;
}

/* Ajustes para dispositivos con pantallas de hasta 768px (tabletas y móviles pequeños) */
@media (max-width: 768px) {
    .section-mobile {
        margin-top: 30px; /* Margen para tabletas y móviles */
    }
}





