        /* ESTILOS DEL MODAL */
		.modal {
			display: none; /* Oculto por defecto */
			position: fixed;
			z-index: 1000;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.5);
			justify-content: center;
			align-items: center;
			font-family: 'Wix Madefor Text';
		}

        .modal-content {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            width: 90%;
            min-width: 1140px;
            text-align: left;
            box-shadow: 0px 3px 6px #00000029;
            position: relative;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
        }

        .title {
            text-transform: uppercase;
            font-size: 20px;
            color: #707070;
            margin-bottom: 28px;
        }

        .branches {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .branch {
            border: 2px solid #0F4F84;
            padding: 10px;
            border-radius: 3px;
            font-size: 14px;
            color: #676767;
            transition: 0.3s ease-in-out;
        }

        .branch p {
            font-size: 11px;
            font-weight: bold;
        }

        .branch .branch-title {
            display: flex;
            gap: 5px;
            font-weight: bold;
            color: #0F4F84;
        }

		.branch .branch-title span {
			font-weight: normal;
			color: #676767;
			transition: color 0.3s ease-in-out;
		}

		.branch:hover .branch-title span, .branch.selected .branch-title span {
			color: #fff;
		}

		.branch:hover p, .branch.selected p {
			color: #fff;
			transition: color 0.3s ease-in-out;
		}

        .branch:hover, .branch.selected {
            background: linear-gradient(99deg, #F28F2A 0%, #C6331C 100%);
            cursor: pointer;
        }

        /* Asegurar la disposición de la última fila */
        .branches .branch:nth-child(7) {
            grid-column: span 1;
        }

		#btnSucursal:hover{
			cursor: pointer;
		}

        /*** MOBILE ***/
        @media (max-width: 480px) {
			.modal-content{
				padding: 20px;
 				width: 90%;
  				min-width: 380px;
				max-width: 380px;
			}
			
			.modal{
				display: flex;
			}
			
			.branches {
				display: grid !important;
				grid-template-columns: 1fr !important;
          }
}