:root {
    --red-one: #e11e00;       
    --gray-txt: #323639;       
}

/* ----------------------------------------- */
.lista-acceso {
    list-style-type: decimal;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.6;
}

.lista-acceso li {
    margin-bottom: 0;
    text-align: justify;
}

.lista-acceso li::marker {
    font-weight: bold;
    color: var(--gray-txt);
    font-size: 16px;
}

.btn-simula {
    display: inline-block;
    background-color: #ffffff;
    color: var(--red-one, #e11e00);
    border: 2px solid var(--red-one, #e11e00);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: normal;
    border-radius: 30px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-simula:hover,
.btn-simula:focus {
    background-color: var(--red-one, #e11e00);
    color: #ffffff;
    border-color: var(--red-one, #e11e00);
    text-decoration: none !important;
    outline: none;
}

.btn-simula:focus-visible {
    outline: 2px solid var(--red-one, #e11e00);
    outline-offset: 2px;
}

/* ----------------------------------------- */
.btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #ffffff;
    color: var(--gray-txt, #323639);        
    border: 1px solid var(--red-one, #e11e00);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.4;
    text-decoration: none;
    vertical-align: middle;
    margin: 0 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-inline svg,
.btn-inline svg path {
    color: var(--red-one, #e11e00);         
    fill: var(--red-one, #e11e00);
    transition: inherit !important;          
    width: 1.3em;                             
}

/* En hover: todo (texto y SVG) se vuelve blanco */
.btn-inline:hover,
.btn-inline:focus {
    background-color: var(--red-one, #e11e00);
    color: #ffffff;
    border-color: var(--red-one, #e11e00);
    outline: none;
    text-decoration: auto;
}

.btn-inline:hover svg,
.btn-inline:focus svg,
.btn-inline:hover svg path,
.btn-inline:focus svg path {
    color: #ffffff;
    fill: #ffffff;
}

.btn-inline:focus-visible {
    outline: 2px solid var(--red-one, #e11e00);
    outline-offset: 2px;
}

/* ----------------------------------------- */
/* Lista con viñetas (disc) */
.lista-viñetas {
    list-style-type: disc;
    margin-left: 1.5rem;
    padding-left: 0.5rem;
    font-family: inherit;
}

.lista-viñetas li {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 24px;
}

.lista-viñetas li::marker {
    color: var(--gray-txt, #323639);
}

.lista-viñetas .lista-viñetas {
    margin-left: 1rem;
}

/* ----------------------------------------- */
.link {
    font-weight: bold;
    color: var(--gray-txt, #323639) !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link:hover,
.link:focus {
    color: var(--red-one) !important;   
    text-decoration: underline;
}