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

body,
html {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #e9ecef;
}

#header,
#footer {
    color: #ffffff;
    text-align: center;
    width: 100%;
}

#form-container {
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

form {
    width: 100%;
    max-width: 700px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #495057;
}

.search-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.search-btn:hover {
    background-color: #218838;
}

.search-btn i {
    font-size: 18px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.button-group button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.next-btn {
    background-color: #48b2e7;
    color: #fff;
}

.prev-btn {
    background-color: #0b3b60;
    color: #fff;
    
}

.prev-btn button{
    background-color: #0b3b60;
    color: #fff;
    
}

.success-btn {
    background-color: #28a745;
    color: #fff;
}

.table {
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.table td,
.table th {
    vertical-align: middle;
    text-align: center;
    padding: 8px;
    border: 1px solid #dee2e6;
}

.autocomplete-items {
    position: absolute;
    width: 100%;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    background-color: #fff;
    max-height: 150px;
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.requirement {
    color: #999;
}

.requirement.valid {
    color: green;
}

.strength-message {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.strength-message.secure {
    color: green;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Contenedor del icono de información */
.info-icon-container {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

/* Tooltip */
#tooltip {
    position: absolute;
    top: 50%;
    /* Centra verticalmente respecto al ícono */
    left: 130%;
    /* Mueve el tooltip más a la derecha */
    transform: translateY(-50%);
    /* Ajusta el centrado vertical */
    z-index: 1100;
    background-color: #333;
    /* Fondo oscuro */
    color: #fff;
    /* Texto blanco */
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    /* Oculto por defecto */
    max-width: 300px;
    /* Ajusta el máximo ancho */
    white-space: normal;
    /* Permite que el texto se envuelva */
}

/* Triángulo del tooltip */
#tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    /* Alinea el triángulo con el centro vertical del tooltip */
    left: -16px;
    /* Coloca el triángulo al borde izquierdo del tooltip */
    transform: translateY(-50%) rotate(180deg);
    /* Gira el triángulo 180 grados */
    border-width: 8px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
    /* Ajusta el color del triángulo */
}

/* Mostrar tooltip */
#tooltip.visible {
    display: block;
}

label {

    flex-direction: column;
    font-size: 14px;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.password-container {
    position: relative;
    margin-top: 20px;
}

.password-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-wrapper .toggle-password-organizacion {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

#strength-indicator {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#strength-bar {
    height: 5px;
    width: 100px;
    background-color: #e9ecef;
    /* Barra vacía */
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}


#password-strength-text {
    font-size: 14px;
    font-weight: bold;
}

.strength-meter {
    width: 100%;
    height: 5px;
    margin-top: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.strength-text {
    margin-top: 5px;
    font-size: 14px;
    color: #999;
    font-weight: bold;
    text-align: left;
}

.strength-text.weak {
    color: red;
}

.strength-text.medium {
    color: orange;
}

.strength-text.strong {
    color: green;
}


#strength-indicator-organizacion {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#strength-bar-organizacion {
    height: 8px;
    width: 100px;
    background-color: #e9ecef;
    /* Barra vacía */
    border-radius: 3px;
    transition: width 0.3s ease, background-color 0.3s ease;
}


#password-strength-text-organizacion {
    font-size: 14px;
    font-weight: bold;
}

.strength-meter-organizacion {
    width: 100%;
    height: 5px;
    margin-top: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.strength-text-organizacion {
    margin-top: 5px;
    font-size: 14px;
    color: #999;
    font-weight: bold;
    text-align: left;
}

.strength-text-organizacion.weak {
    color: red;
}

.strength-text-organizacion.medium {
    color: orange;
}

.strength-text-organizacion.strong {
    color: green;
}

.curp-link {
    font-size: 12px;
    margin-top: 5px;
    color: #007bff;
    text-decoration: none;
}

.curp-link:hover {
    text-decoration: underline;
}

#password-requirements {
    font-size: 12px;
    margin-top: 10px;
}

.requirement {
    color: #6c757d;
}

.requirement.success {
    color: #28a745;
}

.strength-message {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: #28a745;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}


.next-btn {
    background-color: #28a745;
    color: white;
}

#strength-bar {
    height: 8px;
    background-color: #e9ecef;
    /* Color de fondo para el estado vacío */
    border-radius: 4px;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#modalPreview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

#modalContent {
    background: white;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#modalContent iframe {
    width: 100%;
    height: 500px;
    border: none;
}

#modalContent button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#modalContent button:hover {
    background: #cc0000;
}

#content {
    flex: 1;
}

/* Estilo para la seccion de documentos*/
.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
    justify-content: center;
    /* Centramos las tarjetas */
}

.file-item {
    flex: 1 1 calc(100% - 20px);
    /* Por defecto, ocupa el 100% del ancho */
    max-width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Para pantallas medianas y grandes (2x2 diseño cruz) */
@media (min-width: 768px) {
    .file-item {
        flex: 1 1 calc(50% - 20px);
        /* Ocupa el 50% del ancho con espacio entre ellas */
        max-width: calc(50% - 20px);
        /* Asegura espacio uniforme */
    }
}

/* Justificación adicional para formato cruz */
@media (min-width: 1024px) {
    .file-list {
        justify-content: space-evenly;
        align-content: stretch;
    }
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Espaciado entre barra y botón */
    width: 100%;
    margin-top: 10px;
    position: relative;
    /* Para manejar bien la posición relativa del botón */
    z-index: 1;
}

.progress-bar-container {
    flex: 1;
    /* Asegura que la barra ocupe el espacio restante */
    height: 8px;
    /* Altura fija de la barra */
    background: #f0f0f0;
    /* Fondo de la barra */
    border-radius: 4px;
    overflow: hidden;
    /* Asegura que el contenido no sobresalga */
    position: relative;
    /* Contiene elementos flotantes */
    z-index: 1;
}

.progress-bar {
    height: 100%;
    /* Ajusta la altura para llenar el contenedor */
    background: linear-gradient(to right, #00b2e2, #e35293);
    /* Gradiente */
    border-radius: 4px;
    /* Bordes redondeados */
    transition: width 0.5s ease-in-out;
    /* Transición suave */
    z-index: 1;
}



#tooltip {
    position: absolute;
    top: 50%;
    left: 110%;
    /* Aparece a la derecha del ícono */
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
    /* Oculto por defecto */
    width: 250px;
}

#tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

#tooltip.visible {
    display: block;
    /* Muestra el tooltip */
}

#tooltip-organizacion {
    position: absolute;
    top: 50%;
    left: 110%;
    /* Aparece a la derecha del ícono */
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
    /* Oculto por defecto */
    width: 250px;
}

#tooltip-organizacion::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

#tooltip-organizacion.visible {
    display: block;
    /* Muestra el tooltip */
}

.info-icon-container {
    margin-left: 10px;
    cursor: pointer;
    position: relative;
}

.info-icon {
    color: #007bff;
    font-size: 16px;
}



.status-button {
    position: relative;
    /* Asegura que el botón se posicione dentro de su contenedor */
    width: 30px;
    /* Tamaño fijo */
    height: 30px;
    /* Tamaño fijo */
    border-radius: 50%;
    /* Forma circular */
    font-size: 18px;
    /* Tamaño del ícono */
    color: white;
    /* Color del ícono */
    border: none;
    background: #d3d3d3;
    /* Color inicial */
    cursor: not-allowed;
    /* Cursor no interactivo por defecto */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    /* Transiciones suaves */
    z-index: 1;
    /* Asegura que no se superponga */
    box-shadow: none;
    /* Sin sombra */
    padding: 0;
    /* Sin relleno adicional */
    margin: 0;
    /* Sin márgenes adicionales */
}

.status-button.success {
    background: #28a745;
    /* Color verde para éxito */
    color: white;
    /* Color del ícono */
    z-index: 10;
    /* Asegura que esté sobre la barra de progreso */
    width: 30px;
    /* Tamaño fijo */
    height: 30px;
    /* Tamaño fijo */
    border-radius: 50%;
    /* Mantiene la forma circular */
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
    /* Sombra suave */
    position: relative;
    /* Asegura que no se mueva fuera del contenedor */
    padding: 0;
    /* Sin relleno adicional */
    margin: 0;
    /* Sin márgenes adicionales */
}



.status-button.enabled {
    background: #e74c3c;
    cursor: pointer;
    opacity: 1;
}


@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.file-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.custom-file-upload,
.success-btn,
.preview-btn {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
}

.preview-modal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    /* La previsualización debe estar encima de todo */
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.custom-file-upload {
    background: #6c63ff;
}

.success-btn {
    background: #28a745;
}

.preview-btn {
    background: #17a2b8;
}

.custom-file-upload:hover {
    background: #5848c2;
}

.success-btn:hover {
    background: #218838;
}

.preview-btn:hover {
    background: #138496;
}

.file-info span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}


/* Ajustes para responsividad en móvil */
@media (max-width: 576px) {
    form {
        padding: 15px;
    }
}

/* Estilos para los botones de elegir archivo y ver */
input[type="file"] {
    display: none;
    /* Ocultar el input de tipo file */
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #48b2e7;
    /* Color de fondo */
    color: white;
    /* Color del texto */
    border: 1px solid #48b2e7;
    /* Borde del botón */
    transition: background-color 0.3s, border-color 0.3s;
    /* Transición suave */
}

.custom-file-upload:hover {
    background-color: #36a0d4;
    /* Color de fondo al pasar el mouse */
    border-color: #36a0d4;
    /* Borde al pasar el mouse */
}

.table td {
    position: relative;
    /* Para posicionar el botón de ver */
}

.table button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #6c757d;
    /* Color de fondo */
    color: white;
    /* Color del texto */
    cursor: pointer;
    transition: background-color 0.3s;
    /* Transición suave */
}

.toast {
    background-color: #f8d7da;
    /* Color de fondo */
    color: #721c24;
    /* Color del texto */
    border: 1px solid #f5c6cb;
    /* Borde */
}

.table button:hover {
    background-color: #5a6268;
    /* Color de fondo al pasar el mouse */
}

#map {
    height: 400px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
}

#progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

#circle-progress {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(#28a745 20%, #e9ecef 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    color: #495057;
    position: relative;
}

#progress-text {
    position: absolute;
    text-align: center;
    font-size: 14px;
    color: #212529;
}

#progress-info h4 {
    margin: 0;
    font-size: 18px;
    color: #212529;
}

#progress-info p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

/* From Uiverse.io by PaolaMarai */
.error,
.success {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    width: calc(100% - 20px);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
    z-index: 9999;
}

.error {
    background: linear-gradient(to right, #f45c43, #eb3349);
    box-shadow: 0 0px 10px #de1c3280;
}

.success {
    background: linear-gradient(to right, #43f4a0, #34eb77);
    box-shadow: 0 0px 10px #1cde55;
}

.error__icon,
.success__icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.error__icon path,
.success__icon path {
    fill: #fff;
}

.error__title,
.success__title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    flex: 1;
}

.error__close,
.success__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.error__close path {
    fill: #fff;
}

#alert-container {
    position: relative;
    /* Ajusta la posición relativa al contenedor */
    margin-top: 10px;
    /* Separa del input de Verificar CURP */
    z-index: 9999;
    /* Asegura que esté encima de otros elementos */
    background: linear-gradient(to right, #f45c43, #eb3349);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    /* Oculto por defecto */
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    /* Evita que el texto se envuelva */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert__icon {
    margin-right: 10px;
    font-size: 16px;
}

.alert__close {
    margin-left: auto;
    cursor: pointer;
    font-size: 16px;
}

/* Ajustar texto para el switch */
.card-side::before {
    content: 'Persona Física';
    left: -90px;
    text-decoration: underline;
}

.card-side::after {
    content: 'Persona Moral';
    left: 70px;
}

/* Flip Card Ajuste */
.flip-card__inner {
    width: 300px;
    height: 400px;
    position: relative;
    perspective: 1000px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.toggle:checked~.flip-card__inner {
    transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
    backface-visibility: hidden;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    background: lightgrey;
}

.flip-card__back {
    transform: rotateY(180deg);
}

/* Estilos básicos para el modal */
#custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo semitransparente */
}

/* Contenedor del contenido del modal */
#modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Icono dentro del modal */
#modal-icon i {
    font-size: 50px;
    margin-bottom: 15px;
}

/* Estilo de mensaje */
#modal-message {
    font-size: 18px;
    font-weight: bold;
}

/* Botón de aceptar con color estático */
#modal-accept-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    background-color: #007bff;
    /* Color estático para el botón */
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#modal-accept-btn:hover {
    background-color: #0056b3;
    /* Color más oscuro al pasar el ratón */
}

.hidden {
    display: none;
}

.info-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    background: url('../img/CLAVE\ ÚNICA-02-triangulos.png') no-repeat center center;
    background-size: 100% 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.info-container img,
.info-container ul,
.info-container p {
    position: relative;
    z-index: 1;
}

.info-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#stepperForm {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: url('../img//CLAVE\ ÚNICA-02-triangulos.png') no-repeat center center;
    background-size: 100% 100%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#stepperForm>* {
    position: relative;
    z-index: 1;
    padding: 15px;
    border-radius: 8px;
}

#stepperForm h2,
#stepperForm label,
#stepperForm input,
#stepperForm select {
    color: #333;
}

#stepperForm button {
    z-index: 1;
    color: #fff;
}
/* Contenedor principal */
.container-person {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  /* Grupo de botones */
  .radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  /* Contenedor de cada botón */
  .radio-tile-group .input-container {
    position: relative;
    height: 100px;
    width: 100px;
    margin: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .radio-tile-group .input-container:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* Botón invisible */
  .radio-tile-group .input-container .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
  }
  
  /* Estilo del botón */
  .radio-tile-group .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid #0b3b60;
    border-radius: 10px;
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .radio-tile-group .input-container .icon svg {
    fill: #0b3b60;
    width: 32px;
    height: 32px;
  }
  
  .radio-tile-group .input-container .radio-tile-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b3b60;
    margin-top: 8px;
  }
  
  /* Estado seleccionado */
  .radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: #0b3b60;
    border-color: #0b3b60;
    color: white;
    transform: scale(1.05);
  }
  
  .radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg {
    fill: white;
  }
  
  .radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
    color: white !important; /* Cambiar el texto a blanco */
  }
  