* {
    padding: 0rem;
    margin: 0rem;
    box-sizing: border-box;
    color: #ffffff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
}

body {
    background-color: #101010;

}

html {
    scroll-behavior: smooth;
}

/*Se quito  max-width: 400px;*/
.contenedor-selector {
    position: relative;
    display: inline-block;
    width: 100% !important;
}

.contenedor-selector select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #1A1A1A;
    /* Fondo oscuro */
    color: #FFFFFF;
    padding: 10px;
    padding-right: 30px;
    border: 1px solid #4d4d4d;
    /* Borde gris claro */
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.contenedor-selector select option {
    color: white;
}

.contenedor-selector::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #CCCCCC;
    /* Color de la flecha */
}

.contenedor-canal-directo::after {

    top: 40%;
    /
}

/* Opcional: Estilo del contenedor cuando se enfoca el select */
.custom-select select:focus {
    border-color: #ec1c23;
    border-width: 0.00001rem;
    /* Cambiar el color del borde al enfocar */
}

:root {
    --alto-cabecera: 5rem;
    --relleno-vertical-cebecera: .75rem;
    --fuente-navegacion: 'Zizou Slab', Arial, Helvetica;
}

@font-face {
    font-family: 'Zizou Slab';
    src: url('../fuentes/Zizou-Slab-Regular.otf');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'Zizou Slab-ligero';
    src: url('../fuentes/Zizou Slab-Light.otf');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'Solano Gothic';
    src: url('../fuentes/SolanoGothicMVBProBd.otf');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'Zizou Slab-Medium';
    src: url('../fuentes/Zizou Slab-Medium.otf');
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: 'Zizou Slab-Bold';
    src: url('../fuentes/Zizou Slab-Bold.otf');
    font-style: normal;
    font-weight: 300;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h1,
.h1 {
    font-size: 1.85rem;
}

h2,
.h2 {
    font-size: 1.65rem;
}

h3,
.h3 {
    font-size: 1.25rem;
}

h4,
.h4 {
    font-size: 1.2rem;
}

.imagen,
.icono {
    display: block;
}

body {
    width: 100%;
    height: 100vh;
}

header {
    min-height: calc(var(--alto-cabecera));
    padding: var(--relleno-vertical-cebecera) 0;
    max-width: 100%;
}

nav {
    padding-left: 1rem;
    font-size: 1.05rem;
}

nav ul li {

    cursor: pointer;
}

nav ul li a {
    display: block;
    padding: .4rem;
    font-family: var(--fuente-navegacion);
}

body.grilla {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.grilla .fila {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    height: auto;
}

.grilla .fila .columna-auto {
    width: auto;
}

.grilla .fila .columna-resto {
    flex: 1;
}

.grilla .fila .columna-1 {
    width: calc((100% / 12) * 1);
}

.grilla .fila .columna-2 {
    width: calc((100% / 12) * 2);
}

.grilla .fila .columna-3 {
    width: calc((100% / 12) * 3);
}

.grilla .fila .columna-4 {
    width: calc((100% / 12) * 4);
}

.grilla .fila .columna-5 {
    width: calc((100% / 12) * 5);
}

.grilla .fila .columna-6 {
    width: calc((100% / 12) * 6);
}

.grilla .fila .columna-7 {
    width: calc((100% / 12) * 7);
}

.grilla .fila .columna-8 {
    width: calc((100% / 12) * 8);
}

.grilla .fila .columna-9 {
    width: calc((100% / 12) * 9);
}

.grilla .fila .columna-10 {
    width: calc((100% / 12) * 10);
}

.grilla .fila .columna-11 {
    width: calc((100% / 12) * 11);
}

.grilla .fila .columna-12 {
    width: 100%;
}

.display-none {
    display: none !important;
}

.display-bloque {
    display: block;
}

.display-inline {
    display: inline;
}

.display-inline-bloque {
    display: inline-block;
}

/*Flexible Incio*/
.flexible {
    display: flex;
    flex-flow: row wrap;

}

.columna {
    flex-direction: column;
}

.espacio-contenido {
    justify-content: space-between;
}

.espacio-alrrededor {
    justify-content: space-around;
}

.espacio-contenido-uniforme {
    justify-content: space-evenly;
}

.justificar-contenido-inicio {
    justify-content: flex-start;
}

.justificar-contenido-fin {
    justify-content: flex-end;
}

.alinear-elementos-inicio {
    justify-content: baseline !important;
}

.justificar-contenido-centro {
    justify-content: center;
}



.alinear-elementos-final {
    align-items: flex-end;
}

.centrar-elementos {
    align-items: center;
}

.envoltura {
    flex-wrap: wrap !important;
}

.direccion {
    flex-direction: column;
}

.orden-1 {
    order: 1;
}

.orden-2 {
    order: 2;
}

.orden-3 {
    order: 3;
}

.centrar-vertical {
    align-items: center;
}

.separacion {
    gap: .5rem;
}

.separacion-1 {
    gap: 1rem;
}

.separacion-2 {
    gap: 1.5rem;
}

/*Flexible Fin*/
/*Posición Incio*/
.posicion-absoluta {
    position: absolute;
}

.posicion-relativa {
    position: relative;
}

/*Posición Fin*/
/*Cursor Incio*/
.cursor-puntero {
    cursor: pointer;
}

/*Cursor Fin*/
.fondo-imagen {
    background-image: url('../imagenes/graduados.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    min-height: 24rem;
    max-height: 24rem;
    border: thin solid rgba(255, 255, 255, 0.2);
    animation: borderGlow 3s infinite alternate;
    border-radius: .75rem;
}

@keyframes borderGlow {
    from {
        border-color: rgba(255, 255, 255, .15);
    }

    to {
        border-color: rgba(255, 255, 255, .35);
    }
}

.logo {
    height: calc(var(--alto-cabecera) - (var(--relleno-vertical-cebecera) * 2.5));
    width: auto;
}

/*Navegación Interruptor Inicio*/
.interruptor .icono {
    height: 2.9rem;
    width: auto;
}

.interruptor+nav {
    right: 0;
    top: 3.35rem;
    border-radius: .75rem;
    overflow: hidden;
    z-index: 1;
    border: thin solid white;
    background-color: rgba(0, 0, 0, 0.338);
    pointer-events: none;
    opacity: 0;
    transition: opacity .42s linear;
}

.interruptor+nav.visible {
    pointer-events: auto;
    opacity: 1;
}

.interruptor+nav ul {}

.interruptor+nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0em;
    height: 3rem;
    width: 12rem;
    cursor: pointer;
}

.interruptor+nav ul li:hover {
    background-color: rgba(255, 0, 0, 0.333);
}

.interruptor+nav ul li a {
    width: 100%;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Navegación Interruptor Fin*/

/*Estilo texto Incio*/
.texto-blanco {
    color: white;
}

.texto-negro {
    color: black;
}

.texto-rojo-suave {
    color: #e02c32;
    ;
}

.texto-rojo {
    color: rgba(224, 44, 50, 0.85)
}

.texto-amarillo {
    color: #ffffca !important;
}

.texto-small {
    font-size: .7rem;
}

.texto-radio {
    font-size: 1.1rem !important;
}

.negrita-2 {
    font-weight: 200 !important;
}

.negrita-4 {
    font-weight: 400 !important;
}

.negrita-6 {
    font-weight: 600 !important;
}

.negrita-9 {
    font-weight: 900 !important;
}

.fuente-size-micro {
    font-size: .89rem !important;
}

.fuente-size-micro-1 {
    font-size: .95rem !important;
}

.fuente-size-1 {
    font-size: 1.1rem;
}

.fuente-size {
    font-size: 2.25rem;
}

.espacio-letra {
    letter-spacing: 0.09rem;
}

/*Estilo texto Fin*/
/*Alinear texto inicio*/
.texto-centro {
    text-align: center !important;
}

/*Alinear texto fin*/
/*Color relleno Incio*/
.relleno-blanco {
    fill: white;
}

/*Color relleno Fin*/
/*Linea*/

.linea-delgada {
    border: 0;
    height: 1px;
    background-color: rgba(204, 204, 204, 0.2);
    /* Color con opacidad baja */

}

/*sombreado texto*/
.texto-sombreado-rojo {
    background-color: rgba(216, 14, 14, 0.15);
    /* Color con opacidad baja */

}

.resaltado-rojo {

    background-color: rgba(216, 14, 14, 0.15);
    display: inline;
    padding: 0 2px;


}

.resaltado-amarillo {

    background-color: rgba(255, 255, 0, 0.02);
    display: inline;
    padding: 2px 0px;


}

/*Relleno Inicio*/
.quitar-relleno {
    padding: 0rem;

    .relleno {
        padding: .5rem;
    }
}

.relleno-arriba {
    padding-top: .5rem;
}

.relleno {
    padding: .5rem;
}

.relleno-1 {
    padding: 1rem;
}

.relleno-2 {
    padding: 1.5rem;
}

.relleno-arriba-1 {
    padding-top: 1rem;
}

.relleno-arriba-2 {
    padding-top: 1.5rem;
}

.relleno-arriba-3 {
    padding-top: 2rem;
}

.relleno-abajo {
    padding-bottom: .5rem;
}

.relleno-abajo-2 {
    padding-bottom: 1.5rem;
}

.relleno-abajo-3 {
    padding-bottom: 2rem;
}

.relleno-horizontal {
    padding-left: .5rem;
    padding-right: .5rem;
}

.relleno-vertical {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.relleno-vertical-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.relleno-observaciones {
    padding-top: .3rem;
    padding-bottom: .3rem;
}

/*Relleno Fin*/

/*Margen Incio*/
.margen-arriba {
    margin-top: .5rem;
}

.margen-arriba-1 {
    margin-top: 1rem;
}

.margen-arriba-2 {
    margin-top: 1.5rem;
}

.margen-arriba-3 {
    margin-top: 1.5rem;
}

.margen-abajo {
    margin-bottom: .5rem;
}

.margen-abajo-1 {
    margin-bottom: 1rem;
}

.margen-abajo-2 {
    margin-bottom: 1.5rem;
}

.margen-abajo-3 {
    margin-bottom: 2rem;
}

.margen-abajo-4 {
    margin-bottom: 2.5rem;
}

.margen-abajo-5 {
    margin-bottom: 3rem;
}

.margen-derecho {
    margin-right: .5rem;
}

.margen-derecho-1 {
    margin-right: 1rem;
}

.margen-derecho-2 {
    margin-right: 1.5rem;
}

.margen-izquierdo-1 {
    margin-left: 1rem;
}

/*Margen Fin*/
/*Borde inicio*/

.borde {
    border: 0.01rem solid #8f8f8f;
}

.borde-redondo {
    border-radius: .25rem;
}

.borde-redondo-1 {
    border-radius: 1rem;
}

.border-abajo-delgado {
    border-bottom: thin solid #8f8f8f;
}

.borde-observaciones {
    border: 0.15rem solid #8f8f8f;
}

/*Borde Fin

 border-bottom: thin solid #ffc5c7;*/

/*Color borde inicio*/
.borde-negro {
    border-color: black;
}

.borde-blanco {
    border-color: white;
}

.borde-rojo {
    border-color: rgba(236, 28, 35, .6) !important;
}

.borde-rojo-suave {

    border-color: rgba(224, 44, 50, .45);
}

/*Color borde Fin*/
/**/
/*Fondo Color Inicio*/
.fondo-rosado {
    background-color: pink;
}

.fondo-morado {
    background-color: #ff00ff;
}

.fondo-azul {
    background-color: #3333ff;
}

.fondo-rojo-suave {
    background-color: rgba(224, 44, 50, 0.85) !important;
}

.fondo-blanco {
    background-color: white;
}

.fondo-negro {
    background-color: black;
}

.fondo-negro-5 {
    background-color: rgba(0, 0, 0, 0.55);
}

.fondo-blanco-5 {
    background-color: rgba(255, 255, 255, 0.55);
}

/*Fondo Color Fin*/

/*Ancho Inicio*/
.ancho-100w {
    width: 100% !important;
}

.ancho-8r {
    width: 8rem;
}

/*Ancho Fin*/
/*Altura Inicio*/
.altura {
    height: .25rem;
}

.altura-3r {
    height: 3rem;
}

/*Altura Fin*/
/*funte*/
.fuente-zizou-slab {
    font-family: 'Zizou Slab';
}

.fuente-zizou-slab-ligero {
    font-family: 'Zizou Slab-ligero';
}

.fuente-solano-gothic {
    font-family: 'Solano Gothic';
}

.fuente-zizou-slab-medium {
    font-family: 'Zizou Slab-Medium';
}

.fuente-zizou-slab-bold {
    font-family: 'Zizou Slab-Bold';
}

/*contenido-MIC Inicio
.contenido-MIC button {

    border: none;
    background-color: #ec1c23;
    border-top: .2rem solid #ec1c23;
    border-bottom: .2rem solid #ec1c23;
    border-radius: .3rem;
    padding: .45rem .55rem;
    cursor: pointer;

}

.contenido-MIC button .flecha {
    z-index: 3;
    right: calc(50% - 1rem);
    top: 2.472rem;

}

.contenido-MIC button.seleccionado {
    border-top: .31rem solid transparent;
    background-color: transparent;
}*/

.contenido-MIC .carreras {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
}

.contenido-MIC .contenido {
    padding-top: 1rem;
    padding: 1.35rem 1rem;
}

.contenido-MIC .contenido .contenido-tabla {

    overflow-x: auto;
}

.contenido-MIC .contenido table {
    width: 100%;

}



.contenido-MIC .contenido table tr th,
.contenido-MIC .contenido table tr td {
    padding: 1rem 0rem;
    min-width: 9rem;
    text-align: start;
    padding-right: .75rem;
}

.contenido-MIC .contenido table tr td {
    padding: .73rem 0rem;
}

.contenido-MIC .contenido table tr.contenido {
    cursor: default;
}

.contenido-MIC .contenido table tr.contenido:hover {
    background-color: #1A1A1A;
}

.contenido-MIC .contenido table tr th hr {
    margin-top: .35rem;
}

.contenido-MIC .contenido table tr th {
    padding-left: 0rem;
    padding-bottom: .5rem;
}

.contenido-MIC .contenido table tr th:last-child,
.contenido-MIC .contenido table tr td:last-child {

    padding-right: 0rem;
}

.tipo-menciones {
    border: 1px solid #333;
    background-color: #1A1A1A;
}

/*contenido-MIC Final*/
/*selector carrera*/
.selector-carrera {
    width: 20.5rem;
    padding: .65rem .5rem;
    border-radius: .5rem;
}

.selector-carrera option {
    color: black;
}

/*Triangulo inicio*/

.triangulo {
    top: -1.352rem;
    left: 8rem;
}

/*Triangulo Fin*/
/*Clic Inicio*/
.efecto-clic {
    transform: scale(.9);
}

/*Clic Fin*/

/*Enlace Inicio*/
.enlace-decoracion-linea {
    text-decoration: underline !important;

}

.enlace:hover {
    text-decoration: underline !important;
}

/*Enlace Fin*/
/*Inicio Opacidad*/
.opacidad {
    opacity: 0.6;
}

/*Fin Opacidad*/
/*Selector carrera Fin*/
@media (min-width:350px) {
    .contenido-MIC button {
        padding: .55rem .65rem;
    }

    .contenido-MIC button .flecha {
        top: 3.72rem;
    }
}

@media (min-width:400px) {
    .contenido-MIC button {
        padding: .75rem .85rem;
    }

    .contenido-MIC button .flecha {
        top: 4.21rem;
    }
}

@media (min-width: 660px) {
    * {
        font-size: 14.5px;
    }

    .grilla>.fila {
        width: 660px;
    }

    .fondo-imagen {
        width: 660px;
    }

    .display-s-none {
        display: none !important;
    }

    .display-s-bloque {
        display: block !important;
    }

    .grilla .fila .columna-s-auto {
        width: auto;
    }

    .grilla .fila .columna-s-resto {
        flex: 1;
    }

    .grilla .fila .columna-s-1 {
        width: calc((100% / 12) * 1);
    }

    .grilla .fila .columna-s-2 {
        width: calc((100% / 12) * 2);
    }

    .grilla .fila .columna-s-3 {
        width: calc((100% / 12) * 3);
    }

    .grilla .fila .columna-s-4 {
        width: calc((100% / 12) * 4);
    }

    .grilla .fila .columna-s-5 {
        width: calc((100% / 12) * 5);
    }

    .grilla .fila .columna-s-6 {
        width: calc((100% / 12) * 6);
    }

    .grilla .fila .columna-s-7 {
        width: calc((100% / 12) * 7);
    }

    .grilla .fila .columna-s-8 {
        width: calc((100% / 12) * 8);
    }

    .grilla .fila .columna-s-9 {
        width: calc((100% / 12) * 9);
    }

    .grilla .fila .columna-s-10 {
        width: calc((100% / 12) * 10);
    }

    .grilla .fila .columna-s-11 {
        width: calc((100% / 12) * 11);
    }

    .grilla .fila .columna-s-12 {
        width: 100%;
    }

    .relleno-s-horizontal-0 {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .relleno-s-derecha-3 {
        padding-right: 2rem;
    }

    .margen-s-arriba-0 {
        margin-top: 0rem;
    }

    .contenido-MIC button {
        padding: .9rem 1rem;
    }

    .contenido-MIC button .flecha {
        top: 4.55rem;
    }
}

@media (min-width: 880px) {
    * {
        font-size: 15px;
    }

    .grilla>.fila {
        width: 880px;
    }

    .fondo-imagen {
        width: 880px;
    }

    .display-m-none {
        display: none !important;
    }

    .display-m-bloque {
        display: block !important;
    }

    .display-m-flexible {
        display: flex !important;
    }

    .grilla .fila .columna-m-auto {
        width: auto;
    }

    .grilla .fila .columna-m-resto {
        flex: 1;
    }

    .grilla .fila .columna-m-1 {
        width: calc((100% / 12) * 1);
    }

    .grilla .fila .columna-m-2 {
        width: calc((100% / 12) * 2);
    }

    .grilla .fila .columna-m-3 {
        width: calc((100% / 12) * 3);
    }

    .grilla .fila .columna-m-4 {
        width: calc((100% / 12) * 4);
    }

    .grilla .fila .columna-m-5 {
        width: calc((100% / 12) * 5);
    }

    .grilla .fila .columna-m-6 {
        width: calc((100% / 12) * 6);
    }

    .grilla .fila .columna-m-7 {
        width: calc((100% / 12) * 7);
    }

    .grilla .fila .columna-m-8 {
        width: calc((100% / 12) * 8);
    }

    .grilla .fila .columna-m-9 {
        width: calc((100% / 12) * 9);
    }

    .grilla .fila .columna-m-10 {
        width: calc((100% / 12) * 10);
    }

    .grilla .fila .columna-m-11 {
        width: calc((100% / 12) * 11);
    }

    .grilla .fila .columna-m-12 {
        width: 100%;
    }

    .relleno-m-derecha-3 {
        padding-right: 2rem;
    }

    .relleno-m-drecho {
        padding-right: .5rem;
    }

    .relleno-m-izquierdo {
        padding-left: .5rem;
    }

    .margen-m-arriba-0 {
        margin-top: 0rem;
    }

    .margen-m-abajo-0 {
        margin-bottom: 0rem;
    }

    .contenido-MIC button .flecha {
        top: 4.65rem;
    }
}

.contenido-deshabilitado {
    opacity: .85;
    pointer-events: none;
}

@media (min-width: 980px) {
    * {
        font-size: 15.5px;
    }

    .grilla>.fila {
        width: 980px;
    }

    .fondo-imagen {
        width: 980px;
    }

    .display-l-none {
        display: none !important;
    }

    .display-l-bloque {
        display: block !important;
    }

    .contenido-MIC button .flecha {
        top: 4.5rem;
    }
}

@media (min-width: 1180px) {
    * {
        font-size: 16px;
    }

    .grilla>.fila {
        width: 1180px;
    }

    .fondo-imagen {
        width: 1180px;
    }

    .display-xl-none {
        display: none !important;
    }

    .display-xl-bloque {
        display: block !important;
    }

    .contenido-MIC button .flecha {
        top: 4.7rem;
    }
}

.btn {
    width: calc(100% / 3);
    border: none;
    background-color: #191919;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.93s ease;
}

.btn:first-child {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.btn:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.btn:hover {

    background-color: #1A1A1A;

    box-shadow: 25rem 0 0rem 0rem rgba(224, 44, 50, 0.85) inset;
}

.btn.seleccionado {

    background-color: #1A1A1A;

    box-shadow: 25rem 0 0rem 0rem rgba(224, 44, 50, 0.85) inset;
}


.acordeon {
    width: 100%;
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    background-color: #1A1A1A;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.elemento-acordeon {
    border: 1px solid #333;
}

.boton-acordeon {
    width: 100%;
    padding: 15px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.boton-acordeon:hover,
.boton-acordeon.activo {
    background-color: #333333;
}

.contenido-acordeon {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
    background-color: #202020;
}

.contenido-acordeon p {
    margin: .95rem 0 .7rem 0;
    color: #ffffff;
}

.elemento-acordeon .contenido-acordeon {
    border-top: none;
}

.boton-acordeon::after {
    content: '\25bc';
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.boton-acordeon.activo::after {
    transform: rotate(180deg);
}

.seccion-botones-investigacion {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.seccion-botones-investigacion button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: .5rem .65rem;
    border: 1px solid #333;
    border-radius: 5px;
    cursor: pointer;

    background-color: #333;
    color: #fff;
    transition: background-color 0.3s, opacity 0.3s;
}

.seccion-botones-investigacion button.boton-pdf {
    background-color: #444;
}

.seccion-botones-investigacion button.boton-web {
    background-color: #555;
}

.seccion-botones-investigacion button.activo {
    background-color: rgba(224, 44, 50, 0.85) !important;
    /* Rojo más suave */
}

.seccion-botones-investigacion button:hover {
    opacity: 0.8;
}

.seccion-contenido {
    display: none;
}

.seccion-contenido.activo {
    display: block;
}

.seccion-relacion {
    margin-bottom: 10px;
    /* Menor margen inferior */
    border: 1px solid #333;
    background-color: #1A1A1A;
    padding: 10px;
    border-radius: 5px;
}



.icono {
    width: 18px;
    height: 18px;
}


.selector-contacto {

    background-color: rgba(255, 255, 255, 0.95) !important;
    color: rgb(18, 18, 18) !important;
    border: 1px solid #00f863;
    border-color: #ec1c23;
}

.selector-contacto option {

    color: rgb(18, 18, 18) !important;

}

.contenedor-selector.ancho-maximo::after {

    color: rgb(18, 18, 18) !important;
}

.ancho-maximo {
    max-width: 100% !important;
}

/* nuevo radio */
.contenedor-radio {
    padding: .35rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.opcion-radio {
    display: flex;
    align-items: center;
}

.opcion-radio input[type="radio"] {
    appearance: none;
     width: .9rem;
    height: .9em;
    border: 2px solid #666;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.opcion-radio input[type="radio"]:checked {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
}

.opcion-radio label {
    font-size: 1rem;
    cursor: pointer;
    color: #ccc;
}

.opcion-radio input[type="radio"]:checked+label {
    color: #e5e5e5;
}